branch_name stringclasses 149 values | text stringlengths 23 89.3M | directory_id stringlengths 40 40 | languages listlengths 1 19 | num_files int64 1 11.8k | repo_language stringclasses 38 values | repo_name stringlengths 6 114 | revision_id stringlengths 40 40 | snapshot_id stringlengths 40 40 |
|---|---|---|---|---|---|---|---|---|
refs/heads/master | <file_sep><?php
$image_url = get_template_directory_uri() . '/src/img/';
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="robots" content="noindex">
<link rel="apple-touch-icon" sizes="57x57" href="<?= get_template_directory_uri() . '/favicon'?>/apple-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="<?= get_template_directory_uri() . '/favicon'?>/apple-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="<?= get_template_directory_uri() . '/favicon'?>/apple-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="<?= get_template_directory_uri() . '/favicon'?>/apple-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="<?= get_template_directory_uri() . '/favicon'?>/apple-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="<?= get_template_directory_uri() . '/favicon'?>/apple-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="<?= get_template_directory_uri() . '/favicon'?>/apple-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="<?= get_template_directory_uri() . '/favicon'?>/apple-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="<?= get_template_directory_uri() . '/favicon'?>/apple-icon-180x180.png">
<link rel="icon" type="image/png" sizes="192x192" href="<?= get_template_directory_uri() . '/favicon'?>/android-icon-192x192.png">
<link rel="icon" type="image/png" sizes="32x32" href="<?= get_template_directory_uri() . '/favicon'?>/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="<?= get_template_directory_uri() . '/favicon'?>/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="<?= get_template_directory_uri() . '/favicon'?>/favicon-16x16.png">
<link rel="manifest" href="<?= get_template_directory_uri() . '/favicon'?>/manifest.json">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-TileImage" content="<?= get_template_directory_uri() . '/favicon'?>/ms-icon-144x144.png">
<meta name="theme-color" content="#ffffff">
<title><?= single_cat_title(false, false) ?? get_the_title();?></title>
<?php wp_head(); ?>
</head>
<body class="<?= is_front_page() ? 'front-page' : ''; ?>">
<header id="header" class="<?= is_front_page() ? 'on-video' : '';?>">
<div class="header-main content-wrap">
<div class="header-main-first-screen">
<div class="head-mobile-btn">
<div class="head-mobile-menu"></div>
</div>
<div class="head-nav">
<div class="close-menu"></div>
<div class="menu-overlay"></div>
<div class="menu-logo">
<img src="<?= $image_url . 'charen.svg' ?>" alt="fashion">
</div>
<?php wp_nav_menu(); ?>
</div>
<div class="head-logo">
<div class="head-logo-image-wrap">
<a href="<?= home_url(); ?>">
<img src="<?= $image_url . 'charen3.svg'?>" alt="logo" class="logo">
<img src="<?= $image_url . 'logo-white.svg'?>" alt="logo" class="logo logo-white">
</a>
</div>
</div>
<div class="head-actions">
<a href="<?= wc_get_cart_url(); ?>">
<span class="cart-bag">
<img src="<?= $image_url . 'bag.png' ?>" alt="shoping bag white" class="bag-img">
<img src="<?= $image_url . 'bag-white.png' ?>" alt="shoping bag" class="bag-img bag-img-white">
<span class="cart-quantity">
<?php
$count = (int)WC()->cart->get_cart_contents_count();
echo $count > 0 ? $count : '';
?>
</span>
</span>
<span class="hide-on-mobile">Tote</span>
</a>
</div>
</div>
<div class="header-main-second-screen">
<div class="head-search">
<form action="" class="head-search-form">
<input type="text" placeholder="Search Boutique">
<div class="head-search-close"></div>
</form>
</div>
</div>
</div>
</header>
<main><file_sep><?php get_header(); ?>
<section class="cart">
<!-- <div class="single-product-breadcrumb"><?php woocommerce_breadcrumb() ?></div> -->
<!-- <div class="container"> -->
<!-- <div class="row"> -->
<?= do_shortcode('[woocommerce_cart]') ?>
<!-- </div> -->
<!-- </div> -->
</section>
<?php get_footer();<file_sep><?php
/**
* Share us class
*/
ShareUs::TWITTER_URL;
class ShareUs
{
protected $title;
protected $url;
protected $text;
const TWITTER_URL = "";
public function __get($name)
{
return urlencode($this->$data);
}
function __construct() {
$this->text = get_option('share_us') ?? null;
$this->title = get_the_title();
$this->url = "//" . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'];
}
public function getFacebookLink() {
return 'http://www.facebook.com/sharer.php?s=100' . "&p[title]={$this->title}" . '&p[summary]=' . urlencode($this->text) . '&p[url]=' . urlencode($this->url);
}
public function getTwitterLink() {
return 'http://twitter.com/share?' . 'text=' . urlencode($this->text) . '&url=' . urlencode($this->url) . '&counturl=' . urlencode($this->url);
}
}<file_sep>let mobileMenuButton = document.getElementsByClassName('head-mobile-btn')[0],
mobileMenu = document.getElementById('menu-header-menu');
let node = document.querySelectorAll('.menu-header-menu-container > ul > li');
let closeMenu = document.getElementsByClassName('close-menu')[0];
let menuOverlay = document.getElementsByClassName('menu-overlay')[0];
let subscribeOverlay = document.getElementsByClassName('subscribe-overlay')[0];
let titleLetters = document.getElementsByClassName('video-content-title-letter');
//set transition delay to each letter of title
let transitionDelay = 250;
Array.from(titleLetters).forEach((letter) => {
transitionDelay += transitionDelay;
letter.style.transitionDelay = transitionDelay;
})
//show expand sign where it's available
Array.from(node).forEach((item) => {
if(item.children.length > 1) {
item.classList.add('expandable');
}
})
const closeMenuHandler = (e) => {
document.body.classList.remove('menu-expanded');
mobileMenu.classList.remove('active');
mobileMenuButton.classList.remove('active');
Array.from(node).forEach((item) => {
if (item.children.length > 1) item.classList.remove('active');
});
}
const mobileMenuButtonHandler = (e) => {
e.target.classList.toggle('active');
if (e.target.classList.contains('active')) {
mobileMenu.classList.add('active');
document.body.classList.add('menu-expanded');
} else {
mobileMenu.classList.remove('active');
document.body.classList.remove('menu-expanded');
}
}
export {
menuOverlay,
mobileMenuButton,
mobileMenuButtonHandler,
closeMenuHandler,
closeMenu,
mobileMenu,
node,
subscribeOverlay,
titleLetters
}<file_sep><?php
function add_theme_menu_item() {
add_menu_page("Theme Options", "Theme Options", "manage_options", "theme-options", "theme_settings_page", null, 99);
}
add_action("admin_menu", "add_theme_menu_item");
function theme_settings_page(){
?>
<div class="wrap">
<h1>Theme options</h1>
<form method="post" action="options.php">
<?php
settings_fields("section");
do_settings_sections("theme-options");
submit_button();
?>
</form>
</div>
<?php
}
function display_twitter_element()
{
?>
<input type="text" name="twitter_url" id="twitter_url" value="<?= get_option('twitter_url'); ?>" />
<?php
}
function display_facebook_element()
{
?>
<input type="text" name="facebook_url" id="facebook_url" value="<?= get_option('facebook_url'); ?>" />
<?php
}
function display_share_element() {
?>
<textarea name="share_us" id="share_us" cols="50" rows="10" value="<?= get_option('share_us') ?>"><?= get_option('share_us') ?></textarea>
<?php
}
function logo_display()
{
?>
<input type="file" name="logo" />
<?php echo get_option('logo'); ?>
<?php
}
function handle_logo_upload()
{
$keys = array_keys($_FILES);
$i = 0;
foreach ($_FILES as $image) {
// if a files was upload
if ($image['size']) {
// if it is an image
if (preg_match('/(jpg|jpeg|png|gif|svg)$/', $image['type'])) {
$override = array('test_form' => false);
$file = wp_handle_upload($image, $override);
$plugin_options[$keys[$i]] = $file['url'];
} else {
$options = get_option('logo');
$plugin_options[$keys[$i]] = $options[$logo];
wp_die('No image was uploaded.');
}
}
// else, retain the image that's already on file.
else {
$options = get_option('logo');
$plugin_options[$keys[$i]] = $options[$keys[$i]];
}
$i++;
}
return $plugin_options;
}
function display_theme_panel_fields()
{
add_settings_section("section", "All Settings", null, "theme-options");
add_settings_field("logo", "Logo", "logo_display", "theme-options", "section");
add_settings_field("share_us", "Share us Message", "display_share_element", "theme-options", "section");
add_settings_field("twitter_url", "Twitter Profile Url", "display_twitter_element", "theme-options", "section");
add_settings_field("facebook_url", "Facebook Profile Url", "display_facebook_element", "theme-options", "section");
register_setting("section", "twitter_url");
register_setting("section", "facebook_url");
register_setting("section", "share_us");
register_setting("section", "logo", "handle_logo_upload");
}
add_action("admin_init", "display_theme_panel_fields");
<file_sep><?php
$image_url = get_template_directory_uri() . '/src/img/';
?>
</main>
<footer class="footer content-wrap">
<div>
<div class="footer-links">
<div class="footer-links-info footer-link-item">
<p>Information</p>
<ul class="footer-links-list">
<li><a href="#">Store locations</a></li>
<li><a href="#">Careers</a></li>
<li><a href="#">Wholesale</a></li>
<li><a href="#">Affiliate</a></li>
<li><a href="#">About Ruti</a></li>
</ul>
</div>
<div class="footer-links-customer footer-link-item">
<p>Customer service</p>
<ul class="footer-links-list">
<li><a href="#">Contact Us</a></li>
<li><a href="#">Shipping & Returns</a></li>
<li><a href="#">FAQ</a></li>
</ul>
</div>
<div class="footer-links-account footer-link-item">
<p>My account</p>
<ul class="footer-links-list">
<li><a href="#">Account Information</a></li>
<li><a href="#">Order History</a></li>
<li><a href="#">My Favorites</a></li>
</ul>
</div>
<div class="footer-email footer-link-item">
<form action="">
<p>Subscribe to our newsletter and receive 10% off</p>
<input type="email" placeholder="email adress">
<button type="submit">Subscribe</button>
</form>
</div>
</div>
</div>
<div class="footer-privacy">
<ul>
<li>@<?= date('Y');?> RUTI INC. ALL RIGHTS RESERVED</li>
<li><a href="#">Terms of use</a></li>
<li><a href="#">Privacy policy</a></li>
</ul>
</div>
</footer>
<?php wp_footer(); ?>
</body>
</html><file_sep>import './color-pick';
//single product selections
let productGalleryItem = document.getElementsByClassName('product-gallery-item'),
productImage = document.getElementsByClassName('product-image');
const productClickHandler = (e, item) => {
Array.from(productGalleryItem).forEach((foo) => {
foo.classList.remove('selected');
});
if (document.querySelector('[data-name="simple-product"]')) {
let currentProductImage = document.querySelector('[data-name="simple-product"]');
currentProductImage.src = e.target.src;
e.target.parentNode.classList.add('selected');
} else {
let currentProductImage = document.querySelectorAll(`[data-name='product-variation-${e.target.dataset.galleryColor}']`)[0];
currentProductImage.src = e.target.src;
e.target.parentNode.classList.add('selected');
}
}
export {productGalleryItem, productClickHandler, productImage}<file_sep><?php
/**
* include options page
*/
include_once(TEMPLATEPATH . '/functions/admin-menu.php');
function mytheme_add_woocommerce_support() {
add_theme_support( 'woocommerce' );
add_theme_support( 'wc-product-gallery-zoom' );
// add_theme_support( 'wc-product-gallery-lightbox' );
// add_theme_support( 'wc-product-gallery-slider' );
}
add_action( 'after_setup_theme', 'mytheme_add_woocommerce_support' );
/**
* including styles & scripts
*/
include_once(get_template_directory() . '/functions/enqueue-assets.php');
/**
* Custom header menu
*/
function header_menu() {
register_nav_menu('header-menu', __( 'Header Menu'));
}
add_action('init', 'header_menu');
/**
* Set image to the beginning of the category page
*/
add_action( 'woocommerce_before_main_content', 'woocommerce_category_image', 2 );
function woocommerce_category_image() {
if ( is_product_category() ){
global $wp_query;
$cat = $wp_query->get_queried_object();
$thumbnail_id = get_woocommerce_term_meta( $cat->term_id, 'thumbnail_id', true );
$image = wp_get_attachment_url( $thumbnail_id );
$cat_title = single_cat_title(false, false);
if ( $image ) {
echo '<div class="category-image"><div class="category-info"><p class="category-text">', $cat_title, '</p></div><img src="' . $image . '" alt="' . $cat->name . '" /></div>';
}
}
}
/**
* Change the breadcrumb separator
*/
add_filter( 'woocommerce_breadcrumb_defaults', 'wcc_change_breadcrumb_delimiter' );
function wcc_change_breadcrumb_delimiter( $defaults ) {
// Change the breadcrumb delimeter from '/' to '>'
$defaults['delimiter'] = ' | ';
return $defaults;
}
/**
* Rename "home" in breadcrumb
*/
add_filter( 'woocommerce_breadcrumb_defaults', 'wcc_change_breadcrumb_home_text' );
function wcc_change_breadcrumb_home_text( $defaults ) {
// Change the breadcrumb home text from 'Home' to 'Apartment'
$defaults['home'] = 'Home';
return $defaults;
}
/**
* Remove the sorting dropdown from woocommerce
*/
remove_action( 'woocommerce_before_shop_loop' , 'woocommerce_catalog_ordering', 30 );
/**
* Remove the result count from WooCommerce
*/
remove_action( 'woocommerce_before_shop_loop' , 'woocommerce_result_count', 20 );
/**
* remove product thumbnail
*/
remove_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_template_loop_product_thumbnail', 10 );
/**
* Remove product title & add to cart button
*/
remove_action( 'woocommerce_shop_loop_item_title', 'woocommerce_template_loop_product_title', 10 );
remove_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart', 10 );
/**
* Add proudct description
*/
add_action( 'woocommerce_before_add_to_cart_form', 'single_product_description', 5 );
function single_product_description() {
global $product;
$product_details = $product->get_data();
$product_description = $product_details['description'];
echo "<p class='product-description'> $product_description </p>";
}
/**
* Adds a custom rule type
*/
add_filter( 'acf/location/rule_types', function( $choices ){
$choices[ __("Other",'acf') ]['wc_prod_attr'] = 'WC Product Attribute';
return $choices;
} );
/**
* Adds custom rule values
*/
add_filter( 'acf/location/rule_values/wc_prod_attr', function( $choices ){
foreach ( wc_get_attribute_taxonomies() as $attr ) {
$pa_name = wc_attribute_taxonomy_name( $attr->attribute_name );
$choices[ $pa_name ] = $attr->attribute_label;
}
return $choices;
} );
/**
* Matching the custon rule.
*/
add_filter( 'acf/location/rule_match/wc_prod_attr', function( $match, $rule, $options ){
if ( isset( $options['taxonomy'] ) ) {
if ( '==' === $rule['operator'] ) {
$match = $rule['value'] === $options['taxonomy'];
} elseif ( '!=' === $rule['operator'] ) {
$match = $rule['value'] !== $options['taxonomy'];
}
}
return $match;
}, 10, 3 );
/**
* Remove default value 'choose an option' form variation dropdown
*/
add_filter( 'woocommerce_dropdown_variation_attribute_options_html', 'filter_dropdown_option_html', 12, 2 );
function filter_dropdown_option_html( $html, $args ) {
$show_option_none_text = $args['show_option_none'] ? $args['show_option_none'] : __( 'Choose an option', 'woocommerce' );
$show_option_none_html = '<option value="">' . esc_html( $show_option_none_text ) . '</option>';
$html = str_replace($show_option_none_html, '', $html);
return $html;
}
/**
* Remove default excerpt placement
*/
remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_excerpt', 20 );
add_action( 'woocommerce_after_add_to_cart_form', 'woocommerce_template_single_excerpt', 5 );
/**
* Remove product data tabs
*/
remove_action( 'woocommerce_after_single_product_summary', 'woocommerce_output_product_data_tabs', 10 );
remove_action( 'woocommerce_after_single_product_summary', 'woocommerce_upsell_display', 15 );
/**
* Change add to cart button text
*/
add_filter('single_add_to_cart_text', 'woo_custom_cart_button_text');
function woo_custom_cart_button_text() {
return __('Add to tote', 'woocommerce');
}
/**
*
* Update cart quantity button after ajax
*
* Ensure cart contents update when products are added to the cart via AJAX (place the following in functions.php)
*/
add_filter( 'woocommerce_add_to_cart_fragments', 'woocommerce_header_add_to_cart_fragment' );
function woocommerce_header_add_to_cart_fragment( $fragments ) {
ob_start();?>
<span class="cart-quantity">
<?php
$count = (int)WC()->cart->get_cart_contents_count();
echo $count > 0 ? $count : '';
?>
</span>
<?php
$fragments['span.cart-quantity'] = ob_get_clean();
return $fragments;
}
spl_autoload_register(function($className){
$filePath = get_template_directory() . '/functions/classes/' . $className . '.php';
$filePath = str_replace(['/', '\\'], DIRECTORY_SEPARATOR, $filePath);
if (file_exists($filePath)) {
require_once $filePath;
}
});
function cc_mime_types($mimes) {
$mimes['svg'] = 'image/svg+xml';
return $mimes;
}
add_filter('upload_mimes', 'cc_mime_types');<file_sep><?php
namespace Share;
class ShareFacebook extends \ShareUs
{
}<file_sep><?php
/**
* The template for displaying product content in the single-product.php template
*
* This template can be overridden by copying it to yourtheme/woocommerce/content-single-product.php.
*
* HOWEVER, on occasion WooCommerce will need to update template files and you
* (the theme developer) will need to copy the new files to your theme to
* maintain compatibility. We try to do this as little as possible, but it does
* happen. When this occurs the version of the template file will be bumped and
* the readme will list any important changes.
*
* @see https://docs.woocommerce.com/document/template-structure/
* @package WooCommerce/Templates
* @version 3.4.0
*/
defined( 'ABSPATH' ) || exit;
/**
* Hook: woocommerce_before_single_product.
*
* @hooked wc_print_notices - 10
*/
do_action( 'woocommerce_before_single_product' );
if ( post_password_required() ) {
echo get_the_password_form(); // WPCS: XSS ok.
return;
}
global $product;
$product_image_id = $product->get_image_id();
$product_image_src = wp_get_attachment_image_src($product_image_id, 'full')[0];
$product_gallery_ids = $product->get_gallery_image_ids();
foreach($product_gallery_ids as $id) {
$product_gallery[] = [
'src' => wp_get_attachment_image_src($id, 'full')[0],
];
}
@array_unshift($product_gallery, array('src' => $product_image_src));
if ($product->is_type('variable')) {
$variations = $product->get_available_variations();
}
?>
<section class="woocommerce single-product">
<div class="single-product-breadcrumb"><?php woocommerce_breadcrumb() ?></div>
<div id="product-<?php the_ID(); ?>" <?php wc_product_class("content-wrap"); ?>>
<div class="container" style="margin-bottom: 100px;">
<div class="row">
<div class="product-img col-md-7">
<?php if (!isset($variations)): ?>
<div class="product-image-wrapper <?= $selected?>">
<div class="product-image">
<img src="<?= $product_image_src; ?>" alt="product" data-name="simple-product">
</div>
<?php if(!empty($product_gallery)) : ?>
<div class="product-gallery">
<?php foreach($product_gallery as $img): ?>
<div class="product-gallery-item">
<img src="<?= $img['src']; ?>" alt="gallery">
</div>
<?php endforeach;?>
</div>
<?endif;?>
</div>
<?php else: ?>
<?php foreach($variations as $key => $variation): ?>
<?php
$selected = $key == 0 ? 'selected' : '';
$var = new WC_Product_Variation($variation['variation_id']);
$title = current($var->get_variation_attributes());
?>
<div class="product-image-wrapper <?= $selected?>" data-color="<?= $title; ?>">
<div class="product-image">
<img src="<?= $variation['image']['src']; ?>" alt="product" data-name="product-variation-<?= $title?>">
</div>
<div class="product-gallery">
<?php foreach($variation['variation_gallery_images'] as $gal_imgs): ?>
<div class="product-gallery-item">
<img src="<?= $gal_imgs['src']; ?>" alt="gallery" data-gallery-color="<?= $title ?>">
</div>
<?php endforeach;?>
</div>
</div>
<?php endforeach; ?>
<?php endif;?>
</div>
<div class="product-shop col-md-5">
<?php do_action( 'woocommerce_single_product_summary' );?>
</div>
</div>
</div>
<?php
/**
* Hook: woocommerce_before_single_product_summary.
*
* @hooked woocommerce_show_product_sale_flash - 10
* @hooked woocommerce_show_product_images - 20
*/
// do_action( 'woocommerce_before_single_product_summary' );
?>
<div class="summary entry-summary">
<?php
/**
* Hook: woocommerce_single_product_summary.
*
* @hooked woocommerce_template_single_title - 5
* @hooked woocommerce_template_single_rating - 10
* @hooked woocommerce_template_single_price - 10
* @hooked woocommerce_template_single_excerpt - 20
* @hooked woocommerce_template_single_add_to_cart - 30
* @hooked woocommerce_template_single_meta - 40
* @hooked woocommerce_template_single_sharing - 50
* @hooked WC_Structured_Data::generate_product_data() - 60
*/
// do_action( 'woocommerce_single_product_summary' );
?>
</div>
<?php
/**
* Hook: woocommerce_after_single_product_summary.
*
* @hooked woocommerce_output_product_data_tabs - 10
* @hooked woocommerce_upsell_display - 15
* @hooked woocommerce_output_related_products - 20
*/
do_action( 'woocommerce_after_single_product_summary' );
?>
</div>
</section>
<?php do_action( 'woocommerce_after_single_product' ); ?>
<file_sep><?php
$image_url = get_template_directory_uri() . '/src/img/';
$images = get_field('subscribe_images');
get_header(); ?>
<section class="first-section-slider">
<div class="video-wrapper position_relative">
<div class="video-overlay"></div>
<div class="video-content">
<h3 class="video-content-title"><?= get_bloginfo('name'); ?></h3>
<p class="video-content-slogan"><?= get_bloginfo('description'); ?></p>
</div>
<video src="<?= get_template_directory_uri() . '/src/video/video2.mp4'?>" poster="<?= get_template_directory_uri() . '/src/video/placeholder.jpg'?>" autoplay loop muted></video>
</div>
<!-- <div class="slider-wrapper">
<?php
// check if the repeater field has rows of data
if ( have_rows('images') ):
// loop through the rows of data
while ( have_rows('images') ) : the_row(); ?>
<a href="<?= get_term_link((int)get_sub_field('link')[0]); ?>"><img src="<?php the_sub_field('image'); ?>" class="slick-slider-image" alt="clothes"></a>
<?php endwhile;
else :
// no rows found
endif;?>
</div> -->
</section>
<section class="products-categories">
<?php
// check if the repeater field has rows of data
if( have_rows('category') ):
// loop through the rows of data
while ( have_rows('category') ) : the_row();
//vars
$cat_image = get_sub_field('category_image');
$cat_id = (int)get_sub_field('category_link')[0];
$cat_link = get_term_link($cat_id);
$cat_title = get_term_by('id', $cat_id, 'product_cat')->name;
?>
<div class="product-category">
<a href="<?= $cat_link?>" class="product-category-link">
<img src="<?=$cat_image?>" alt="cat">
</a>
<a href="<?=$cat_link?>" class="product-category-bottom-link"><?=$cat_title?></a>
</div>
<?endwhile;
else :
// no rows found
endif;
?>
</section>
<section class="rules-for-design">
<div class="rules-info">
<h3>Meet Cheron</h3>
<p>"I have three rules for design:</p>
<p>It must be COOL. You don't need to sacrifice the cool factor to achieve a look that is classic and sophisticated. Our clothes lend a smart end effortless touch to the woman on the go.</p>
<p>It must be FLATTERING. Our clothes are designed to flatter a woman over the age of 35 without making her look like she's trying too hard.</p>
<p>It must be PRACTICAL. 80% of my collection are clothes that i wear everyday. 20% of my collection is aspirational - it's for the woman I daydream of being."</p>
</div>
<div class="rules-img">
<img src="<?= $image_url . 'rules.jpg' ?>" alt="woman">
</div>
</section>
<section class="follow-us content-wrap">
<h3>Follow us</h3>
<p>Keep up on your <?= get_bloginfo('name');?> news and get an inside scoop of what’s new, what’s exciting, and what’s to come!</p>
<ul class="share-us">
<li><i class="fab fa-facebook"></i></li>
<li><i class="fab fa-twitter"></i></li>
<li><i class="fab fa-instagram"></i></li>
</ul>
<h3>@ <img src="<?= $image_url . 'charen2.svg' ?>" alt="fashion"></h3>
<div class="follow-us-slider">
<?php
// check if the repeater field has rows of data
if( have_rows('follow_us_slider') ):
// loop through the rows of data
while ( have_rows('follow_us_slider') ) : the_row(); ?>
<div class="follow-us-slider-item">
<img src="<?= get_sub_field('follow_us_image')?>" alt="photo">
</div>
<?php endwhile;
else :
// no rows found
endif;?>
</div>
</section>
<div class="subscribe-wrap">
<div class="subscribe-overlay"></div>
<div class="subscribe">
<div class="subscribe-img">
<img src="<?= $images[rand(0, count($images) -1)]['url']; ?>" alt="fashion">
</div>
<div class="subscribe-info">
<div class="subscribe-close"></div>
<div class="subscribe-logo">
<img src="<?= $image_url . 'charen3.svg' ?>" alt="logo">
</div>
<p class="subscribe-text">Get the latest from our editors</p>
<h4 class="subscribe-text-accent">Exclusive Style, Beauty and Culture News</h4>
<p class="subscribe-text">Directly to your inbox</p>
<form action="#" class="subscribe-form">
<input type="email" placeholder="Email Adress">
<button class="btn cta" type="submit">Sign up</button>
<button class="btn" id="no-thanks">No thanks</button>
</form>
<div class="subscribe-privacy">
<span class="subscribe-privacy-text">Will be used in accordance with our <a href="#">Privacy Policy</a></span>
</div>
</div>
</div>
</div>
<?php get_footer(); ?><file_sep><?php get_header(); ?>
<section class="checkout">
<?= do_shortcode('[woocommerce_checkout]');?>
</section>
<? get_footer();<file_sep>let closeSubscribe = document.getElementsByClassName('subscribe-close')[0];
const closeSubscribeHandler = (e) => {
e.preventDefault();
document.body.classList.remove('subscribe-opened');
}
export {closeSubscribe, closeSubscribeHandler}<file_sep><?php
function enqueue_assets() {
//slick slider
wp_enqueue_style('slick', get_template_directory_uri() . '/dist/css/slick.css', array(), '1.0.0', 'all');
wp_enqueue_style('slick-theme', get_template_directory_uri() . '/dist/css/slick-theme.css', array(), 'all');
wp_enqueue_script('slick-js', get_template_directory_uri() . '/src/js/libs/slick.min.js', array('jquery'), '', true);
//bootstrap
wp_enqueue_style('bootstrap', 'https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css', array(), '1.0.0', 'all');
//custom styles
wp_enqueue_style('fontawesome', 'https://use.fontawesome.com/releases/v5.7.2/css/all.css', array());
wp_enqueue_style('main', get_template_directory_uri() . '/dist/css/style.css', array(), '1.0.0', 'all');
wp_enqueue_script('main', get_template_directory_uri() . '/dist/js/bundle.js', array('jquery'), '1.0.0', true);
}
add_action('wp_enqueue_scripts', 'enqueue_assets'); | af0040ef605b08270a73846367f6d24a11ddf203 | [
"JavaScript",
"PHP"
] | 14 | PHP | aleksandry11/woocommerce-store | 03cfc6d77c71435b3e015b906fad5919d913e7ed | feb2f6477cbdd9ebb2d383236e6dbe3dbe8ff02c |
refs/heads/master | <repo_name>nach66/EN-hostel<file_sep>/src/hebrew/components/Activity.js
import React from 'react'
import def from '../images/def.jpg';
import PropTypes from 'prop-types';
export default function Activity({activity}) {
const {name,link,image,description} = activity;
return (
<article className="activity">
<div className="img-container-activity">
<img src={image || def} alt="act"/>
<div className="img__description">
<p>{description.content[0].content[0].value}</p>
{link && <a rel="noopener noreferrer" target={"_blank"} href={link}> לאתר >> </a> }
</div>
</div>
<p className="activity-name">{name}</p>
</article>
);
}
Activity.prototype={
activity:PropTypes.shape({
name:PropTypes.string.isRequired,
slug:PropTypes.string.isRequired,
image:PropTypes.arrayOf(PropTypes.string).isRequired
})
};<file_sep>/src/hebrew/pages/Contact.js
import React from 'react'
import ContactForm from '../components/ContactForm'
import Footer from '../components/Footer'
import Search from '../components/Search'
import LangButtons from '../LangButtons'
export default function Contact(props) {
return (
<>
<LangButtons {...props} />
<div className="sbest_price"
style={{
zIndex: '1'
}}/>
<Search/>
<div className="sep"/>
<ContactForm/>
<Footer/>
</>
);
}<file_sep>/src/english/LangButtons.js
import React, { Component } from 'react'
import en from './images/en.png'
import he from './images/he.png'
export default class LangButtons extends Component {
setLocale = (newLocale) => {
let url = '/' + newLocale + this.props.location.pathname.substring(3)
this.props.history.push(url)
this.props.setLocale(newLocale)
}
render() {
return (
<>
<div className="languegus">
<div rel="noopener noreferrer" onClick={() => this.setLocale('he')}>
<img src={he} alt="flagi"/>
</div>
<div onClick={() => this.setLocale('en')}>
<img src={en} alt="flage"/>
</div>
</div>
</>
)
}
}<file_sep>/src/english/components/About.js
import React from 'react'
import c from '../images/odot.jpg'
import Title from '../components/Title';
export default function About() {
return (
<>
<section className="empty-services">
<Title title="ABOUT US"/>
<div className="about lang">
<article className="pic">
<img
style={{
padding: '10px',
height: '330px',
width: '340px'
}}
src={c} alt="היי"/>
</article>
<article style={{paddingTop: '0.6rem'}} >
<h5
className="lang"
style={{textAlign: 'left'}}
>Tiberias Hostel was established in 2015.</h5>
<h5
className="lang"
style={{textAlign: 'left'}}
>Our location is convenient and central: 3 minutes walk from Tiberias Central Station, 3 minutes walk from the shores of the Sea of Galilee, and 30 minutes drive from a variety of attractions. There is parking available, restaurants, markets and shops.
</h5>
<h5
className="lang"
style={{textAlign: 'left'}}
>We are suitable for young families, photographers, windsurfing lovers, cyclists, and anyone who wants to refresh in cool spring water with a breathtaking view under the shade of a large and old eucalyptus.
</h5>
<h5
className="lang"
style={{textAlign: 'left'}}
>The hostel staff wants you to finish your holiday with us with a huge smile, so we will make sure to provide the perfect setting for a perfect holiday! Comfortable bed, tea or coffee in the morning, fully equipped kitchen, panoramic view of the Sea of Galilee. And you - you will take care of reserving your room for the next vacation in the Sea of Galilee.
</h5>
</article>
</div>
</section>
</>
)
}
<file_sep>/src/english/pages/Error.js
import React from 'react'
import Images from '../components/Images';
import Footer from '../components/Footer'
import ContactForm from '../components/ContactForm'
import LangButtons from '../LangButtons'
export default function Error(props) {
return (
<>
<LangButtons {...props} />
<Images title="404"
subtitle="page not found"
link="/en/"
link_text="back to hampage"
/>
<div className="sep"/>
<ContactForm/>
<Footer/>
</>
)
}<file_sep>/src/hebrew/components/NavBar.js
import React, { Component } from 'react'
import { Link } from 'react-router-dom'
import {FaWindowClose, FaAlignLeft, FaCalendarAlt} from 'react-icons/fa'
import logo from '../images/icons/logo.jpg'
import l from '../images/icons/bet.png'
export default class NavBar extends Component {
state={
isOpen: false
}
handleToggle = () => {
this.setState({
isOpen: !this.state.isOpen
});
}
onClicklogo = () => {
this.setState({
isOpen: false
});
}
render() {
return (
<>
<nav className="navbar">
<div className="nav-center" >
<div className="nav-header">
<Link to="/" >
<img src={logo} onClick={this.onClicklogo} className="nav-logo" alt="logo"/>
</Link>
<button type="button" onClick={this.handleToggle} className="nav-btn">
{this.state.isOpen?
<FaWindowClose className="nav-icon"/> :
<FaAlignLeft className="nav-icon"/>
}
</button>
</div>
<ul onClick={this.handleToggle}
className={this.state.isOpen? "nav-links" : "nav-links hide-nav" }>
<li>
<Link to="/he/about" className="nav-links" >מי אנחנו</Link>
</li>
<img src={l} className="anchor" alt="logo"/>
<li>
<Link to="/he/rooms" className="nav-links">החדרים שלנו</Link>
</li>
<img src={l} className="anchor" alt="logo"/>
<li>
<Link to="/he/activities" className="nav-links">פעילויות באזור</Link>
</li>
<img src={l} className="anchor" alt="logo"/>
<li>
<Link to="/he/location" className="nav-links">מצאו אותנו</Link>
</li>
<img src={l} className="anchor" alt="logo"/>
<li>
<Link to="/he/contact" className="nav-links">צור קשר</Link>
</li>
<br/>
<li>
<Link to="/he/bookhere"
className="nav-links"
style={{width: '140px',
color: 'var(--mainWhite)',
background : 'var(--mainGreen)'}}
>הזמן עכשיו!
<span className="calander-icon" >
<FaCalendarAlt/>
</span>
</Link>
</li>
</ul>
</div>
</nav>
</>
)
}
}<file_sep>/src/hebrew/pages/SingleRoom.js
import React, { Component } from 'react'
import {Link} from 'react-router-dom';
import {FaCalendarAlt} from 'react-icons/fa';
import ContactForm from '../components/ContactForm';
import StyledHero from "../components/StyledHero";
import Banner from '../components/Banner';
import Footer from '../components/Footer'
import def from '../images/def.jpg';
import {RoomContext} from '../contextRooms';
import LangButtons from '../LangButtons'
export default class SingleRoom extends Component {
constructor(props){
super(props);
this.state={
slug:this.props.match.params[0].substring(6),
def
};
}
static contextType = RoomContext;
render() {
const { getRoom } = this.context;
const room = getRoom(this.state.slug);
console.log(room);
if (!room){
return (
<div className="error">
<h3>לצערנו אין חדר כזה</h3>
<Link to="/rooms" className="btn-primary2">
בחזרה לחדרים
</Link>
</div>
);
}
const {name, description,
extras, images} = room;
const [mainImg,...defuldImg] = images;
return (
<>
<LangButtons {...this.props} />
<StyledHero img={mainImg || def}>
<Banner title={name}>
<Link to="/he/rooms" className="btn-primary2">
בחזרה לחדרים
</Link>
</Banner>
</StyledHero>
<div className="sep"/>
<section className="room-section">
<div className="container" style={{marginTop: '70px'}}>
{defuldImg.map((item,index)=>{
return ( <div
key={index} alt="pic"
style={{backgroundImage: `url(${item})`}}
></div>);
})}
</div>
</section>
<section className="room-section">
<h3>פרטים</h3>
<p>{description.content[0].content[0].value}</p>
</section>
<section className="room-section">
<h3>מידע ומתקנים</h3>
<ul className="extras">
{extras.map((item,index)=>{
return<li key={index}>
- {item}
</li>
})}
</ul>
</section>
<section className="empty-services">
<Link to="/he/bookhere"
className="book-now-btn"
>הזמן עכשיו!
<span className="calander-icon">
<FaCalendarAlt/>
</span>
</Link>
</section>
<div className="sep"/>
<ContactForm/>
<Footer/>
</>
);
}
}<file_sep>/src/hebrew/pages/Booking.js
import React, { Component } from 'react'
import ContactForm from '../components/ContactForm'
import Loading from '../components/Loading'
import Footer from '../components/Footer'
import LangButtons from '../LangButtons'
import { Link } from 'react-router-dom'
export default class minihotel extends Component {
constructor(props) {
super(props);
this.state = {
isloading: true
}
}
componentDidMount() {
setTimeout(function() {
this.setState({
isloading: false
});
}.bind(this), 1000);
}
render() {
console.log(this.state.idloading);
return (
<>
<LangButtons {...this.props} />
<div className="sep"/>
<div
style={{
padding: '0rem',
textAlign: 'center'
}}
>
<h6>להזמנות קבוצתיות של 10 אנשים ומעלה, אנא</h6>
<Link
style={{
fontWeight: '600',
color: 'rgb(0, 88, 139)',
fontFamily: 'Trebuchet MS, Lucida Sans Unicode, Lucida Grande, Lucida Sans, Arial, sans-serif'
}}
to="/he/contact" > פנו אלינו ישירות :)
</Link>
</div>
{this.state.isloading && <Loading/>}
<iframe id="be_iframe" frameborder="0.5" scrolling="yes" title="booking"
style={{width: '100%', height:'2850px',
padding:'30px', overflow: 'hidden'}}
src="https://minihotelpms.net/frame/reservas?hotelToken=a41ce7814d16061ac9a951e3bb1c534e||from=||to=||nAdults=1||nChilds=0||nBabies=0||start_date=||end_date=||language=HE||currency=ILS||rateCode=*ALL||roomId=||bloggerId=">
</iframe>
<div className="sep"/>
<ContactForm/>
<Footer/>
</>
)
}
}
/* <iframe title="book" width="95%" height="600px" scrolling="auto"
src="https://new-booking.frontdeskmaster.com?hostelId=AJKOwMNX%2F5UDIgGxDhqQRY6JrRNTS%2BGr"/> */<file_sep>/src/english/pages/Booking.js
import React, { Component } from 'react'
import ContactForm from '../components/ContactForm'
import Loading from '../components/Loading';
import Footer from '../components/Footer'
import LangButtons from '../LangButtons'
import { Link } from 'react-router-dom'
export default class Booking extends Component{
constructor(props) {
super(props);
this.state = {
isloading: true
}
}
componentDidMount() {
setTimeout(function() {
this.setState({
isloading: false
});
}.bind(this), 1000);
}
render() {
return (
<>
<LangButtons {...this.props} />
<div className="sep"/>
<div
style={{
padding: '0rem',
textAlign: 'center',
direction: 'ltr'
}}
>
<h6>For group reservations of 10 or more people, please</h6>
<Link
style={{
fontWeight: '600',
color: 'rgb(0, 88, 139)',
fontFamily: 'Trebuchet MS, Lucida Sans Unicode, Lucida Grande, Lucida Sans, Arial, sans-serif'
}}
to="/en/contact" > contact us :)
</Link>
</div>
{this.state.isloading && <Loading/>}
<iframe id="be_iframe" frameborder="0.5" scrolling="yes" title="booking"
style={{width: '100%', height:'2850px',
padding:'30px', overflow: 'hidden'}}
onload="window.scrollTo(0,0)"
src="https://minihotelpms.net/frame/reservas?hotelToken=a41ce7814d16061ac9a951e3bb1c534e||from=||to=||nAdults=1||nChilds=0||nBabies=0||start_date=||end_date=||language=EN||currency=ILS||rateCode=*ALL||roomId=||bloggerId=">
</iframe>
<div className="sep"/>
<ContactForm/>
<Footer/>
</>
)
}
}
/* <iframe title="book" width="95%" height="600px" scrolling="auto"
src="https://new-booking.frontdeskmaster.com?hostelId=AJKOwMNX%2F5UDIgGxDhqQRY6JrRNTS%2BGr"/> */<file_sep>/src/english/pages/Rooms.js
import React from 'react'
import RoomsList from '../components/RoomsList';
import {RoomConsumer} from '../contextRooms';
import Loading from '../components/Loading';
import Footer from '../components/Footer';
import Title from '../components/Title';
import LangButtons from '../LangButtons'
export default function Rooms(props) {
return (
<>
<RoomConsumer>
{value => {
const {loading, publicRooms, privateRooms} = value;
if (loading) {
return <Loading/>;
}
return (
<>
<LangButtons {...props} />
<div className="sep"/>
<Title title="Private Rooms"/>
<section className="empty-services">
<h6 className="lang">Our private rooms can accommodate 1-4 people. In the private rooms the toilet and shower are ensuite.</h6>
</section>
<RoomsList rooms={privateRooms}/>
<div className="sep"/>
<Title title="Shared Dormitories"/>
<section className="empty-services">
<h6 className="lang">Our shared dormitories can accommodate 8-10 people. The shared dormitories have toilets and showers shared outside the room.</h6>
</section>
<RoomsList rooms={publicRooms}/>
<div className="sep"/>
<Footer/>
</>
);
}}
</RoomConsumer>
</>
);
}<file_sep>/src/english/contextRooms.js
import React, { Component } from 'react'
//import items from './data';
import Client from './Contentful';
const RoomContext = React.createContext();
export default class RoomProvider extends Component {
state = {
rooms: [],
privateRooms: [],
publicRooms: [],
loading: true,
type: 'all'
};
getData = async () => {
try {
let response = await Client.getEntries({
content_type: "en_room",
order:"fields.capacity"
});
console.log(response);
let rooms = this.formatData(response.items);
let privateRooms = rooms.filter(room => room.type === "private");
let publicRooms = rooms.filter(room => room.type === "public");
this.setState({
rooms,
privateRooms,
publicRooms,
loading: false
});
} catch (error) {
console.log(error);
}
}
componentDidMount () {
this.getData();
}
formatData(items) {
let tempItems = items.map(item => {
let id = item.sys.id;
let images = item.fields.images.map(image => image.fields.file.url);
let room = { ...item.fields, images, id };
return room;
});
return tempItems;
};
getRoom = slug => {
let tempRooms = [...this.state.rooms];
const room = tempRooms.find(room => room.slug === slug);
return room;
};
render() {
return (
<RoomContext.Provider
value={{
...this.state,
getRoom: this.getRoom,
handleChange: this.handleChange
}}
>
{this.props.children}
</RoomContext.Provider>
);
}
}
const RoomConsumer = RoomContext.Consumer;
export {RoomConsumer, RoomProvider, RoomContext}<file_sep>/src/hebrew/pages/Home.js
import React from 'react'
import Images from '../components/Images'
import ContactForm from '../components/ContactForm'
import Footer from '../components/Footer'
import Search from '../components/Search'
import LangButtons from '../LangButtons'
import "react-responsive-modal/styles.css";
import { Modal } from "react-responsive-modal";
export default class Home extends React.Component {
state = {
open: true,
};
onCloseModal = () => {
this.setState({ open: false });
};
render () {
const open = this.state.open;
return (
<>
<LangButtons {...this.props} />
<Modal open={open} center
onClose={this.onCloseModal}
classNames={{
overlay: 'customOverlay',
modal: 'customModal',
}}
styles={{
modal: {
animation: `${
open ? 'customEnterAnimation' : 'customLeaveAnimation'
} 500ms`,
},
}}
>
<br/>
<br/>
<p>
בהתאם להנחיות משרד הבריאות אנחנו נהיה סגורים 😢
החל מיום שישי ה - 18 לספטמבר (מ- 14:00) עד ה - 11 באוקטובר.
אבל...😏
אם אתם מחפשים מקום ידידותי להעביר בו את הסגר, אנחנו משכירים חדרים פרטיים לתקופות קצרות, 14 יום ויותר.
מוזמנים לפנות אלינו ולקבל הצעת מחיר.
</p>
</Modal>
<Images title="אכסניית טבריה"
subtitle="הבית שלך בצפון"
link="/he/rooms"
link_text="לחדרים שלנו"
/>
<div className="sbest_price"
style={{
top: '328px',
left: '275px'
}}/>
<Search/>
<div className="sep"/>
<ContactForm/>
<Footer/>
</>
);
}
}<file_sep>/src/hebrew/pages/Activities.js
import React from 'react'
import Footer from '../components/Footer'
import ContactForm from '../components/ContactForm'
import ActivitiesContainer from '../components/ActivitiesContainer';
import LangButtons from '../LangButtons'
export default function Activities(props) {
return (
<>
<LangButtons {...props} />
<div className="sep"/>
<ActivitiesContainer/>
<div className="sep"/>
<ContactForm/>
<Footer/>
</>
)
}
<file_sep>/src/hebrew/components/About.js
import React from 'react'
import c from '../images/odot.jpg'
import Title from '../components/Title';
export default function About() {
return (
<>
<section className="empty-services">
<Title title="מי אנחנו?"/>
<div className="about">
<article className="pic">
<img src={c} alt="היי"/>
</article>
<article>
<h5>אכסניית טבריה הוקמה בשנת 2015.</h5>
<h5>המיקום שלנו נוח ומרכזי: 3 דקות הליכה מתחנה מרכזית טבריה, 3 דקות הליכה מחופי הכנרת, ו-30 דקות נסיעה ממגוון אטרקציות. יש חניה זמינה, מסעדות, שווקים וחנויות.</h5>
<h5>אנחנו מתאימים למשפחות צעירות, צלמים, אוהבי גלישת רוח בכנרת, רוכבי אופניים, וכל אחד שחפצה נפשו לשכשך במי מעיין קרירים עם נוף עוצר נשימה תחת צל אקליפטוס גדול וותיק.</h5>
<h5>צוות האכסנייה רוצה שתסיימו את החופשה אצלנו עם חיוך ענק, ולכן אנחנו נדאג לספק את התפאורה המושלמת לחופשה מושלמת! מיטה נוחה, תה או קפה בבוקר, מטבח מאובזר, נוף פנורמי לכנרת. ואתם - אתם תדאגו כבר עכשיו לשריין את החדר שלכם לחופשה הבאה בכנרת.</h5>
</article>
</div>
</section>
</>
)
}
<file_sep>/src/english/components/OLMap.js
import React, { Component } from 'react'
import {Link} from 'react-router-dom'
import Title from './Title';
import {defaults as defaultInteractions, DragRotateAndZoom} from 'ol/interaction'
import {Tile as TileLayer, Vector as VectorLayer} from 'ol/layer'
import { ScaleLine, defaults as DefaultControls } from 'ol/control'
import Grid from '@material-ui/core/Grid'
import VectorS from 'ol/source/Vector'
import {Icon, Style} from 'ol/style'
import {fromLonLat} from 'ol/proj'
import Point from 'ol/geom/Point'
import Feature from 'ol/Feature'
import { Map, View } from 'ol'
import {OSM} from 'ol/source'
import 'ol/ol.css'
export default class OLMap extends Component {
componentDidMount() {
const map = new Map({
interactions: defaultInteractions().extend([
new DragRotateAndZoom()
]),
target: 'map',
layers: [
new TileLayer({source: new OSM()})
],
controls: DefaultControls().extend([
new ScaleLine(),
]),
view: new View({
center: fromLonLat([35.539460, 32.7885]),
zoom: 13
})
});
const layer = new VectorLayer({
source: new VectorS({
features: [
new Feature({
geometry: new Point(fromLonLat([35.53947, 32.7887]))
})
]
}),
style: new Style({
image: new Icon({
src: 'https://openlayers.org/en/latest/examples/data/icon.png'
})
})
});
map.addLayer(layer);
}
render() {
return (
<>
<section className="services">
<Title title="LOCATION & DIRECTIONS"/>
<h6 className="lang" style={{fontWeight: '600'}}>
3 Minutes from the Bus station. 3 Minutes from the Water line... </h6>
<Grid container>
<Grid item xs={12}>
<div id='map' className="map" >
</div>
</Grid>
</Grid>
<h6 className="lang">Directions to Hostel & Bus Schedules -</h6>
<div>
<Link target={"_blank"} to="/tlv" className="btn-primary2 btns-map">from Tel Aviv</Link>
<Link target={"_blank"} to="/haifa" className="btn-primary2 btns-map">from Haifa</Link>
<Link target={"_blank"} to="/jerusalem" className="btn-primary2 btns-map">from Jerusalem</Link>
<Link target={"_blank"} to="/nazeret" className="btn-primary2 btns-map">from Nazareth</Link>
</div >
</section>
</>
);
}
}<file_sep>/src/english/components/ContactForm.js
import React from 'react'
import Title from './Title'
import {FaMapMarked, FaEnvelope,FaPhone} from 'react-icons/fa';
import tripadvisor from '../images/icons/tripadvisor.png'
import instagram from '../images/icons/instagram.jpg'
import ilh from '../images/icons/ilh.png'
import face from '../images/icons/fa.png'
export default function ContactForm() {
return (
<>
<section className="services">
<Title title="GET IN TOUCH"/>
<div className="about">
<article style={{
paddingTop:'4px'
}}
>
<h6 className="lang">
Don't hesitate to contact us with any inquiry, we'll answer at reception hours 8:00-23:00.</h6>
<a href="tel:04-679-2611">
<FaPhone style={{
padding: '4px',
fontSize: '1.9rem',
borderRadius: '5px',
backgroundColor: 'var(--mainGrey)',
border: '2px groove var(--offWhite)',
color:'rgb(7, 161, 58)'}}/>
</a>
<h6>04-679-2611</h6>
<a href={"mailto:<EMAIL>"} rel="noopener noreferrer" target="_blank">
<FaEnvelope style={{
padding: '4px',
fontSize: '1.9rem',
borderRadius: '5px',
backgroundColor: 'var(--mainGrey)',
border: '2px groove var(--offWhite)',
color:'#ebe050'}}/>
</a>
<h6><EMAIL></h6>
<a href={"https://www.google.co.il/maps/place/Tiberias+Hostel/@32.7886111,35.5219349,14z/data=!4m11!1m2!2m1!1z15DXm9eh16DXmdeZ16og15jXkdeo15nXlA!3m7!1s0x151c3e48ddd195df:0x2bf279e8d24c26b4!5m2!4m1!1i2!8m2!3d32.7886111!4d35.5394444"} rel="noopener noreferrer" target="_blank">
<FaMapMarked style={{
padding: '4px',
fontSize: '1.9rem',
borderRadius: '5px',
backgroundColor: 'var(--mainGrey)',
border: '2px groove var(--offWhite)',
color:'var(--myblue)'}}/>
</a>
<h6 className="lang">
Rabin Square, Tiberias. Zip: 1411501. P.O Box 1514.</h6>
<h6 className="lang">
Entrance to the right of the Beinleumi Bank.</h6>
<div className="contact-icon">
<a rel="noopener noreferrer" target={"_blank"}
href='https://www.facebook.com/tiberiashostel/'>
<div style={{backgroundImage: `url(${face})`}}/>
</a>
<a rel="noopener noreferrer" target={"_blank"}
href='https://www.tripadvisor.co.il/Hotel_Review-g297765-d1198814-Reviews-Tiberias_Hostel-Tiberias_Galilee_Region_Northern_District.html'>
<div style={{backgroundImage: `url(${tripadvisor})`}}/>
</a>
<a rel="noopener noreferrer" target={"_blank"}
href='http://www.hostels-israel.com/'>
<div style={{backgroundImage: `url(${ilh})`}}/>
</a>
<a rel="noopener noreferrer" target={"_blank"}
href='https://www.instagram.com/tiberiashostel/'>
<div style={{backgroundImage: `url(${instagram})`}}/>
</a>
</div>
</article>
<article>
<h6 className="lang">
Talk to us:</h6>
<section>
<form className="cform" method="POST"
action="https://formspree.io/<EMAIL>"
>
{/* name */}
<div className="form-group lang">
<input
type="text"
name="firstName"
className="form-control"
placeholder="what's your name?"
/>
</div>
{/* email */}
<div className="form-group lang">
<input
type="email"
name="email"
className="form-control"
placeholder="what's your email?"
/>
</div>
{/* phone */}
<div className="form-group lang">
<input
type="phone"
name="phone"
className="form-control"
placeholder="what's your phone number?"
/>
</div>
{/* message */}
<div className="form lang">
<textarea
name="message"
className="form-control"
rows="13"
placeholder="how can we help?"
/>
</div>
{/* sumbit */}
<input
type="submit"
value="submit"
style={{
position: 'relative',
bottom:'23px',
color: 'var(--mainBlack)',
background: 'var(--primaryColor)',
padding: '0.4rem 0.9rem',
border: '3px solid var(--primaryColor)',
cursor: 'pointer'
}}
/>
</form>
</section>
</article>
</div>
</section>
</>
);
}<file_sep>/src/english/components/Services.js
import React, { Component } from 'react'
import Title from './Title';
import {FaUtensils,FaAngellist, FaMapMarked, FaRegSmileBeam}
from 'react-icons/fa';
export default class Servies extends Component {
state={
services: [
{
icon:<FaUtensils/>,
title:"Equipped and homely shared kitchen"
},
{
icon:<FaRegSmileBeam/>,
title:"Awesome team"
},
{
icon:<FaMapMarked/>,
title:"Central location"
},
{
icon:<FaAngellist/>,
title:"Rooftop with stunning views"
},
]
}
render() {
return (
<>
<section className="empty-services">
{/* <Title title="So, how does it work?"/> */}
<h6 className="lang">We at the Tiberias Hostel offer modern and pleasant accommodation units, for travelers on a limited budget. With us you can enjoy a hang-out room with pool table, board games and puzzles, a TV lounge, and free Wi-Fi. Bars, restaurants and beaches are all nearby, and our great staff will always be able to recommend the best hiking trails in the area!</h6>
<div className="services-center">
{this.state.services.map(
(item, index) => {return (
<article key={index}>
<span className="icon-services">{item.icon}</span>
<h6 className="h6-services">{item.title}</h6>
</article>
)}
)}
</div>
</section>
</>
);
}
}
<file_sep>/src/english/pages/Location.js
import React from 'react'
import ContactForm from '../components/ContactForm'
import Footer from '../components/Footer'
import OLMap from '../components/OLMap'
import LangButtons from '../LangButtons'
export default function Location(props) {
return (
<>
<LangButtons {...props} />
<div className="sep"/>
<OLMap/>
<div className="sep"/>
<ContactForm/>
<Footer/>
</>
);
}<file_sep>/src/english/components/Footer.js
import React, { Component } from 'react'
import styled from "styled-components";
export default class Footer extends Component {
/* componentDidMount() {
const s = document.createElement('script');
s.type = 'text/javascript';
s.async = true;
s.innerHTML = `
var vsid = "sa23145";
(function() {
var vsjs = document.createElement('script');
vsjs.type = 'text/javascript';
vsjs.async = true;
vsjs.setAttribute('defer', 'defer');
vsjs.src = ('https:' == document.location.protocol ? 'https://' : 'http://') + 'www.virtualspirits.com/vsa/chat-'+vsid+'.js';
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(vsjs, s);
})();
`;
this.instance.appendChild(s);
}; */
render() {
return (
<>
{/* <div ref={el => (this.instance = el)} />; */}
<FooterWrapper>
<div className="container py-3">
<p style={{
textTransform: 'capitalize',
direction:'ltr'}}>
{new Date().getFullYear()} © by <NAME>
</p>
</div>
</FooterWrapper>
</>
);
}
}
const FooterWrapper = styled.footer`
background: var(--primaryColor);
color: var(--myblue);
height: 40px;
padding: 10px;
text-align:center;
`;
| 9703d3aafccaa8e6348e8c651c5cc07262200785 | [
"JavaScript"
] | 19 | JavaScript | nach66/EN-hostel | ccbd82e855c4608dec5bbabca67c73e9187ba5d8 | 04ba2e303077c27b661a3f191d638283294d8b14 |
refs/heads/master | <file_sep>require 'nokogiri'
require 'open-uri'
require 'fileutils'
require 'yaml'
require 'terminal-notifier'
require File.expand_path("../../config/boot", __FILE__)
class BooksUpdater
def initialize(path, ids)
@path = path
@ids = ids
end
def update
@ids.each { |i| update_book(i) }
puts "updated at #{Time.now}"
end
private
def book_url(id)
"http://www.fftxt.net/book/#{id}/"
end
def chapter_url(id, href)
"#{book_url(id)}#{href}"
end
def book_file(id)
File.join @path, id.to_s
end
def later_chapter?(ch1, ch2)
return true if ch2.nil?
return false if ch1.nil?
id1 = ch1[:href][/\d+/].to_i
id2 = ch2[:href][/\d+/].to_i
id1 > id2
end
def notify_new_chapters(id, list)
return 0 unless File.exists?(book_file(id))
old_list = YAML.load_file(book_file(id))
last_chapter = old_list.last unless old_list.nil?
notify_count = 0
list.reverse_each do |l|
break unless later_chapter?(l, last_chapter)
TerminalNotifier.notify("new: #{l[:title]}", open: chapter_url(id, l[:href]))
notify_count += 1
break if notify_count > 5
end
notify_count
end
def update_book(id)
doc = Nokogiri::HTML(open(book_url(id), 'r:GBK'), nil, 'GBK')
list = doc.css('ul#chapterlist li a').map { |a| {title: a.attribute('title').to_s, href: a.attribute('href').to_s} }
if notify_new_chapters(id, list) > 0
file = open(book_file(id), 'w')
file.write(list.to_yaml)
end
end
end
if __FILE__ == $0
book_ids = [367, 2982, 21]
path = File.join(HiMyMac.logs_path, '.books')
FileUtils.mkdir_p path
BooksUpdater.new(path, book_ids).update
end
<file_sep>ZSH=$HOME/.oh-my-zsh
ZSH_THEME="wangyuhere"
DISABLE_AUTO_UPDATE="true"
plugins=(git brew vi-mode heroku rails wangyuhere)
source $ZSH/oh-my-zsh.sh
if which rbenv > /dev/null; then
eval "$(rbenv init -)"
fi
export GOPATH=$HOME/Projects/go
export PATH="$GOPATH/bin:$PATH"
export PATH="/usr/local/Cellar/go/1.1.2/bin:/usr/local/sbin:/usr/local/bin:$PATH"
export EDITOR=vim
export LANG=sv_SE.UTF-8
bindkey '^R' history-incremental-search-backward
### Added by the Heroku Toolbelt
export PATH="/usr/local/heroku/bin:$PATH"
unsetopt nomatch
<file_sep>require File.expand_path("../path", __FILE__)
<file_sep>require "spec_helper"
describe HiMyMac do
describe "path" do
it "should return correct path" do
expect(HiMyMac.logs_path).to eql(File.join HiMyMac.path, "logs")
end
it "should raise runtime exception if path not exists" do
expect { HiMyMac.not_exists_path }.to raise_error(RuntimeError)
end
end
end
<file_sep># personal oh-my-zsh plugin
unsetopt correct_all
export PATH="$(dirname $0)/bin:$PATH"
alias hi-my-mac='st ~/Projects/hi-my-mac'
alias b="bundle"
alias gi="gem install"
alias migrate="rake db:migrate db:rollback && rake db:migrate db:test:prepare"
alias s="bundle exec rspec"
alias ss="bundle exec spring rspec"
alias rpry="pry -r ./config/environment"
alias t='smart_test'
bindkey "^A" beginning-of-line
bindkey "^E" end-of-line
bindkey "^P" history-search-backward
function p {
cd ~/Projects/$1
}
function pe {
st ~/Projects/$1
}
<file_sep>require File.expand_path("../../config/boot", __FILE__)
<file_sep>local begin_prompt='%{$terminfo[bold]$fg[yellow]%}王%{$reset_color%}'
local user_host='%{$terminfo[bold]$fg[blue]%}%n@%m%{$reset_color%}'
local current_dir='%{$terminfo[bold]$fg[green]%} %~%{$reset_color%}'
local rvm_ruby=''
if which rvm-prompt &> /dev/null; then
rvm_ruby='%{$fg[yellow]%}‹$(rvm-prompt i v g)›%{$reset_color%}'
else
if which rbenv &> /dev/null; then
rvm_ruby='%{$fg[yellow]%}‹$(rbenv version | sed -e "s/ (set.*$//")›%{$reset_color%}'
fi
fi
local git_info='$(git_prompt_info)'
ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[cyan]%}<"
ZSH_THEME_GIT_PROMPT_SUFFIX=">%{$reset_color%}"
local time_info='%{$fg[white]%}[%*]'
local end_prompt='%{$terminfo[bold]$fg[yellow]%}宇 %{$reset_color%}'
PROMPT="${begin_prompt} ${user_host} ${current_dir} ${rvm_ruby} ${git_info} ${time_info}
${end_prompt}"
<file_sep>
module HiMyMac
def self.rbenv_path
"#{ENV['HOME']}/.rbenv/bin"
end
def self.path
"#{ENV['HOME']}/Projects/hi-my-mac"
end
def self.method_missing(method, *args, &block)
match = method.to_s.match(/(\w+)_path/)
if match
dir_name = match.captures[0]
File.join(path, dir_name).tap do |p|
raise "#{p} doesn't exist" unless File.exists?(p)
end
else
super(method, *args, &block)
end
end
end
<file_sep>require File.expand_path("../boot", __FILE__)
ruby_path = "ruby"
scripts_path = HiMyMac.scripts_path
logs_path = HiMyMac.logs_path
set :job_template, %Q{bash -l -c 'export PATH="$HOME/.rbenv/bin:$PATH"; eval "$(rbenv init -)"; cd #{HiMyMac.path} && :job'}
every 30.minutes do
command "#{ruby_path} #{scripts_path}/read.rb", output: "#{logs_path}/read.log"
end
every 1.hour do
command "cd /Users/yuwang/Projects/keywords && bundle exec rake keywords:all", output: "#{logs_path}/keywords_import.log"
end
<file_sep>#!/usr/bin/env zsh
set -e
echo "Installing Homebrew ..."
ruby -e "$(curl -fsSL https://raw.github.com/mxcl/homebrew/go)"
brew update
echo "Installing GUI applications ..."
brew tap phinze/homebrew-cask
brew install brew-cask
apps=('google-chrome' 'google-drive' 'iterm2' 'dropbox' 'firefox' 'skype' 'spotify' \
'virtualbox' 'github' 'flux' 'kindle' 'alfred' 'u-torrent' 'vagrant' 'unrarx' \
'mplayerx' 'cheat-sheet' 'calibre' 'ichm' 'xunlei')
for app in ${apps[@]}
do
echo "Installing $app ..."
brew cask install $app
done
brew cask alfred link
brew cask alfred status
echo "Installing tools and packages ..."
libs=('vim' 'ctags' 'imagemagick' 'qt' 'openssl' 'wget' 'readline' 'libxml2' \
'sqlite' 'nginx' 'node' 'youtube-dl')
for lib in ${libs[@]}
do
echo "Installing $lib ..."
brew install $lib
done
echo "Installing zsh and oh-my-zsh ..."
brew install zsh
if [[ -f /etc/zshenv ]]; then
sudo mv /etc/zshenv /etc/zprofile
fi
curl -L https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh | sh
echo "Installing rbenv and ruby ..."
brew install rbenv
eval "$(rbenv init -)"
brew install rbenv-gem-rehash
brew install ruby-build
rbenv install 1.9.3-p327
rbenv install 2.0.0-p247
rbenv global 2.0.0-p247
rbenv rehash
gem update --system
gem install bundler rails unicorn pry --no-document
brew install heroku-toolbelt
cd $(dirname $0) && bundle && rake install
<file_sep>hi-my-mac
=========
My mac setup and tool box
$ mkdir -p ~/Projects && cd ~/Projects && git clone --recursive <EMAIL>:wangyuhere/hi-my-mac.git
<file_sep>source 'http://rubygems.org'
gem 'nokogiri'
gem 'terminal-notifier'
gem 'whenever'
gem 'rake'
gem 'rspec'
gem 'pry'
<file_sep>require 'fileutils'
require './config/boot'
desc "install dotfiles, sublime etc on the mac"
task :install => [:link_dotfiles, :link_st3_packages] do
FileUtils.mkdir_p HiMyMac.logs_path
end
desc "link dotfiles"
task :link_dotfiles do
link_dotfiles
end
desc "link sublime text 3 packages"
task :link_st3_packages do
link_st3_packages
end
desc "show hi-my-mac path"
task :show_path do
puts HiMyMac.path
end
private
def run(cmd)
puts "[Running] #{cmd}"
`#{cmd}` unless ENV['DEBUG']
end
def ln_nfs(source, target)
target_backup = "#{target}.backup"
if File.exists?(target) && (!File.symlink?(target) || (File.symlink?(target) && File.readlink(target) != source))
run %{ rm -rf "#{target_backup}" } if File.exists? target_backup
puts "[Moving] #{target} to #{target}.backup"
run %{ mv "#{target}" "#{target}.backup" }
end
run %{ ln -nfs "#{source}" "#{target}" }
end
def link_dotfiles
files = %w(
oh-my-zsh/custom/plugins
oh-my-zsh/custom/wangyuhere.zsh-theme
gemrc
gitconfig
powconfig
pryrc
vimrc
vimrc.bundles
zshrc
)
files.each do |file|
source = File.join HiMyMac.dotfiles_path, file
target = File.join ENV['HOME'], ".#{file}"
ln_nfs source, target
end
end
def link_st3_packages
source = File.join HiMyMac.sublime_path, 'Packages'
target = '~/Library/Application\ Support/Sublime\ Text\ 3/Packages'
run %{ mv #{target} #{target}.backup }
run %{ ln -nfs #{source} #{target} }
end
| 3f0be1486bd81c5cbbec27b37736af02e7d20e2b | [
"Markdown",
"Ruby",
"Shell"
] | 13 | Ruby | wangyuhere/hi-my-mac | 7420125b7af9fe5df67c47c46ada7a1e49f2a1f1 | d59f6e78810c2a095bce2ebf6d6d449a5aa2c825 |
refs/heads/master | <repo_name>fightinggg/spring-boot-simple<file_sep>/entrypoint.sh
java --version
echo "start java application ... "
# java -jar -agentlib:jdwp=transport=dt_socket,server=n,address=192.168.0.109:5005,suspend=y -Duser.timezone=Asia/Shanghai /main.jar
java -jar -Duser.timezone=Asia/Shanghai /main.jar<file_sep>/Dockerfile
FROM openjdk:15
WORKDIR /
COPY entrypoint.sh /entrypoint.sh
COPY target/demo-0.0.1-SNAPSHOT.jar /main.jar
CMD ["sh", "/entrypoint.sh"] | 1acd665cd723d79dbfdca0b86509d7cdfeb524a4 | [
"Dockerfile",
"Shell"
] | 2 | Shell | fightinggg/spring-boot-simple | f64951be834f35aec7cab6f162ebc34582a7cf16 | 1e415870557761e7b3d611ff863d484fbf170c2f |
refs/heads/master | <file_sep>package sample;
import javafx.event.ActionEvent;
import javafx.scene.control.TextField;
import java.util.ArrayList;
public class Controller {
public TextField textGetNum;
double total;
int pos = 0;
ArrayList<Double> number = new ArrayList<>();
ArrayList<String> operation = new ArrayList<>();
public void print9(ActionEvent actionEvent) {
textGetNum.setText(textGetNum.getText()+"9");
}
public void print8(ActionEvent actionEvent) {
textGetNum.setText(textGetNum.getText()+"8");
}
public void print7(ActionEvent actionEvent) {
textGetNum.setText(textGetNum.getText()+"7");
}
public void print6(ActionEvent actionEvent) {
textGetNum.setText(textGetNum.getText()+"6");
}
public void print5(ActionEvent actionEvent) {
textGetNum.setText(textGetNum.getText()+"5");
}
public void print4(ActionEvent actionEvent) {
textGetNum.setText(textGetNum.getText()+"4");
}
public void print3(ActionEvent actionEvent) {
textGetNum.setText(textGetNum.getText()+"3");
}
public void print2(ActionEvent actionEvent) {
textGetNum.setText(textGetNum.getText()+"2");
}
public void print1(ActionEvent actionEvent) {
textGetNum.setText(textGetNum.getText()+"1");
}
public void print0(ActionEvent actionEvent) {
textGetNum.setText(textGetNum.getText()+"0");
}
public void printDot(ActionEvent actionEvent) {
if (!textGetNum.getText().contains(".")){
textGetNum.setText(textGetNum.getText()+".");
}
}
public void clear(ActionEvent actionEvent) {
clearOut();
textGetNum.setText("");
}
void clearOut(){
pos = 0;
operation.clear();
number.clear();
}
public void printTotal(ActionEvent actionEvent) {
arithmetic_operation();
}
public void arithmetic_operation(){
number.add(Double.parseDouble(textGetNum.getText()));
if (number.size()<2){
return;
}
else{
total = number.get(0);
for (int i =1; i<number.size();i++){
if (operation.get(pos).equals("plus")){
total+=number.get(i);
pos++;
}
else if (operation.get(pos).equals("minus")){
total-=number.get(i);
pos++;
}
else if (operation.get(pos).equals("multiply")){
total*=number.get(i);
pos++;
}
}
textGetNum.setText(Double.toString(total));
clearOut();
}
}
public void Add(ActionEvent actionEvent) {
operation.add("plus");
number.add(Double.parseDouble(textGetNum.getText()));
textGetNum.setText("");
}
public void Subtract(ActionEvent actionEvent) {
operation.add("minus");
number.add(Double.parseDouble(textGetNum.getText()));
textGetNum.setText("");
}
public void Multiply(ActionEvent actionEvent) {
operation.add("multiply");
number.add(Double.parseDouble(textGetNum.getText()));
textGetNum.setText("");
}
public void Divide(ActionEvent actionEvent) {
operation.add("divide");
number.add(Double.parseDouble(textGetNum.getText()));
textGetNum.setText("");
}
}
| 878fc116ffbac5f81f8f2c4a8342981393434164 | [
"Java"
] | 1 | Java | AnhVoProgramming12/Anh-Vo | d8f26c08da64edb03d86f894bc324eaf25c3332f | 221ab09aa825242ffa0e084d2c8484c10194ba1c |
refs/heads/main | <repo_name>maxspeed1976/PizzaRecyclerView<file_sep>/app/src/main/java/com/example/PizzaRecyclerview/data/PizzaListAdapter.kt
package com.example.PizzaRecyclerview.data
import android.content.Context
import android.content.Intent
import android.os.Bundle
import android.view.LayoutInflater
import android.view.View
import android.view.ViewGroup
import android.widget.ImageView
import android.widget.TextView
import android.widget.Toast
import androidx.core.content.ContextCompat.startActivity
import androidx.recyclerview.widget.RecyclerView
import com.example.PizzaRecyclerview.SecondActivity
import com.example.PizzaRecyclerview.data.PizzaListAdapter.ViewHolder
import com.example.PizzaRecyclerview.model.Pizza
import com.example.personrecyclerview.R
class PizzaListAdapter(
private val list: List<Pizza>,
private val context: Context
): RecyclerView.Adapter<ViewHolder>() {
inner class ViewHolder(itemView: View, context: Context): RecyclerView.ViewHolder(itemView) {
fun bindItem(pizza: Pizza){
var name: TextView = itemView.findViewById(R.id.name)
var price: TextView = itemView.findViewById(R.id.age)
var pizzaImage: ImageView = itemView.findViewById(R.id.picView)
name.text = pizza.name
price.text = pizza.price.toString()+" грн"
pizzaImage.setImageResource(pizza.imageUrl)
itemView.setOnClickListener(){
val intent = Intent(context, SecondActivity::class.java)
intent.putExtra("name",pizza.name)
intent.putExtra("price",pizza.price)
intent.putExtra("detail", pizza.detail)
intent.putExtra("imageURL", pizza.imageUrl)
val bundle = Bundle()
startActivity(context, intent,bundle)
}
}
}
override fun onCreateViewHolder(parent: ViewGroup, position: Int): ViewHolder {
//Create our view from xml file
val view = LayoutInflater.from(context).inflate(R.layout.list_row, parent, false)
return ViewHolder(view, context)
}
override fun onBindViewHolder(holder: ViewHolder, position: Int) {
holder?.bindItem(list[position])
}
override fun getItemCount(): Int {
return list.size
}
}<file_sep>/app/src/main/java/com/example/PizzaRecyclerview/model/SizePizza.kt
package com.example.PizzaRecyclerview.model
class SizePizza(s: String, i: Int) {
var size: String="1"
var price: Int=1
}<file_sep>/app/src/main/java/com/example/PizzaRecyclerview/MainActivity.kt
package com.example.PizzaRecyclerview
import androidx.appcompat.app.AppCompatActivity
import android.os.Bundle
import androidx.appcompat.widget.Toolbar
import androidx.recyclerview.widget.LinearLayoutManager
import androidx.recyclerview.widget.RecyclerView
import com.example.personrecyclerview.R.layout
import com.example.PizzaRecyclerview.data.PizzaListAdapter
import com.example.PizzaRecyclerview.model.Pizza
import com.example.PizzaRecyclerview.model.snacks
import kotlinx.android.synthetic.main.activity_main.*
class MainActivity : AppCompatActivity() {
private var adapter: PizzaListAdapter? = null
private var pizzaList : List<Pizza>? = null
private var layoutManager : RecyclerView.LayoutManager? = null
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(layout.activity_main)
pizzaList = snacks
layoutManager = LinearLayoutManager(this)
adapter = PizzaListAdapter(pizzaList!!, this)
// setup list RecyclerView
recyclerView.layoutManager = layoutManager
recyclerView.adapter = adapter
// load data
adapter!!.notifyDataSetChanged()
}
}<file_sep>/app/src/main/java/com/example/PizzaRecyclerview/SecondActivity.kt
package com.example.PizzaRecyclerview
import android.R
import android.os.Bundle
import android.widget.ArrayAdapter
import androidx.appcompat.app.AppCompatActivity
import com.example.PizzaRecyclerview.model.SizePizza
import com.example.personrecyclerview.R.layout
import kotlinx.android.synthetic.main.activity_second.*
class SecondActivity : AppCompatActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(layout.activity_second)
val adapter: ArrayAdapter<SizePizza> = ArrayAdapter<SizePizza>(
this,
R.layout.simple_spinner_item
)
adapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item)
this.spinner.setAdapter(adapter);
//this.spinner.onItemSelectedListener(new Adapter)
// var intent= Intent(this,SecondActivity::class.java)
// val text:String = intent.getStringExtra("detail").toString()
val intent = getIntent();
val text = intent.getStringExtra("name")
val pricePizza = intent.getIntExtra("price", 0)
val detailPizza = intent.getStringExtra("detail")
val imageURL = intent.getIntExtra("imageURL", 0)
// Toast.makeText(this, text, Toast.LENGTH_LONG).show()
name.text = text
price.text = pricePizza.toString()+" грн"
detail.text = detailPizza
imageView.setImageResource(imageURL)
}
}<file_sep>/app/src/main/java/com/example/PizzaRecyclerview/model/Pizza.kt
package com.example.PizzaRecyclerview.model
import com.example.personrecyclerview.R.drawable
data class Pizza(
var id: Int,
var name: String? = null,
var age: Int? = null,
var imageUrl: Int,
var price: Int,
var detail: String,
var size: List<SizePizza>
)
val snacks = listOf(
Pizza(
id = 1,
name = "Маргарита",
imageUrl = drawable.margarita,
price = 299,
detail = "Томатный соус, сыр моцарелла, сыр пармезан, томаты,\n" +
"маслины, базилик."
, size= listOf(SizePizza("40см",100),SizePizza("30см",200))),
Pizza(
id = 2,
name = "Карбонара",
imageUrl = drawable.carbonara,
price = 299,
detail = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud...",
size= listOf(SizePizza("40см",100),SizePizza("30см",200)))
,
Pizza(
id = 3,
name = "<NAME>",
imageUrl = drawable.fourcheese,
price = 299,
detail = "Сливочный соус, сыр дор блю, сыр чеддер, сыр пармезан, сыр моцарелла.\n",
size= listOf(SizePizza("40см",100),SizePizza("30см",200)))
,
Pizza(
id = 4,
name = "Мясная",
imageUrl = drawable.meat,
price = 299,
detail = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud...",
size= listOf(SizePizza("40см",100),SizePizza("30см",200)))
,
Pizza(
id = 5,
name = "Охотничья",
imageUrl = drawable.hunt,
price = 499,
detail = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud...",
size= listOf(SizePizza("40см",100),SizePizza("30см",200)))
,
Pizza(
id = 6,
name = "Фирменная",
imageUrl = drawable.firm,
price = 299,
detail = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud...",
size= listOf(SizePizza("40см",100),SizePizza("30см",200)))
,
Pizza(
id = 7,
name = "Пеперони",
imageUrl = drawable.peperoni,
price = 1299,
detail = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud...",
size= listOf(SizePizza("40см",100),SizePizza("30см",200)))
,
Pizza(
id = 8,
name = "Сальмоне",
imageUrl = drawable.salmone,
price = 299,
detail = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud...",
size= listOf(SizePizza("40см",100),SizePizza("30см",200)))
,
Pizza(
id = 9,
name = "Гавайская",
imageUrl = drawable.hawaian,
price = 549,
detail = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud...",
size= listOf(SizePizza("40см",100),SizePizza("30см",200)))
,
Pizza(
id = 10,
name = "Салями",
imageUrl = drawable.salami,
price = 299,
detail = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud...",
size= listOf(SizePizza("40см",100),SizePizza("30см",200)))
,
Pizza(
id = 11,
name = "Капричоза",
imageUrl = drawable.caprichiosa,
price = 299,
detail = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud...",
size= listOf(SizePizza("40см",100),SizePizza("30см",200)))
,
Pizza(
id = 12,
name = "Сицилийская",
imageUrl = drawable.sicilian,
price = 299,
detail = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud...",
size= listOf(SizePizza("40см",100),SizePizza("30см",200)))
,
Pizza(
id = 13,
name = "Цезарь",
imageUrl = drawable.caesar,
price = 299,
detail = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud...",
size= listOf(SizePizza("40см",100),SizePizza("30см",200)))
)<file_sep>/app/src/main/java/com/example/PizzaRecyclerview/CartItem.kt
package com.example.PizzaRecyclerview
import com.example.PizzaRecyclerview.model.Pizza
data class CartItem (var pizza: Pizza, var quantity: Int=0){
}<file_sep>/app/src/main/java/com/example/PizzaRecyclerview/SnackCollection.kt
package com.example.PizzaRecyclerview
class SnackCollection {
} | bbd3597a97eeaba7ec3bfdbfed1df8fc73956483 | [
"Kotlin"
] | 7 | Kotlin | maxspeed1976/PizzaRecyclerView | 875674053793bee6e393bbd151b80d15c881e9d7 | d92d26f6c0b27e8526b2441062f33f84176c4888 |
refs/heads/master | <repo_name>MatejTuray/personalmoviedb<file_sep>/src/components/MovieCardDashboard.js
import React from 'react'
import moment from "moment";
import axios from "axios";
import { Redirect } from "react-router-dom";
import { Button } from 'mdbreact'
class MovieCardDashboard extends React.Component {
constructor(props) {
super(props)
this.openModal = this.openModal.bind(this)
this.closeModal = this.closeModal.bind(this)
this.handleDeleteMovie = this.handleDeleteMovie.bind(this);
this.handleUpdateMovie = this.handleUpdateMovie.bind(this);
this.handleHover = this.handleHover.bind(this)
this.handleSetQuery = this.handleSetQuery.bind(this)
this.state = {
note: this.props.note,
modalOpen: false,
redirectDash: false,
isHover: false,
redirect: false,
}
}
componentDidMount() {
}
openModal() {
this.setState({
modalOpen: true
})
}
closeModal() {
this.setState({
modalOpen: false
})
}
handleSetQuery() {
let name = this.props.name;
this.props.handleReturn(this.props.movies.find((movie) => name === movie.name))
this.props.movies.find((movie) => {
if (name === movie.name && window.location.pathname !== "/findmovie") {
this.setState({
redirect: true,
});
}
})
}
handleDeleteMovie() {
let id = this.props.id;
axios({
method: 'DELETE', url: `https://peaceful-oasis-31467.herokuapp.com/https://guarded-chamber-92596.herokuapp.com/movies/${id}`, headers: {
"x-auth": this.props.token
},
}).then((response) => {
this.setState({
redirectDash: true
}); this.props.handleGetAllMovies()
}).catch((err) => console.log(err))
}
handleUpdateMovie() {
let id = this.props.id
let watched = !this.props.watched
this.setState({
watchedFind: watched
})
axios({
method: 'PATCH', url: `https://peaceful-oasis-31467.herokuapp.com/https://guarded-chamber-92596.herokuapp.com/movies/${id}/watched`, headers: {
"x-auth": this.props.token
}, data: {
watched: watched,
}
}).then((response) => { this.props.handleGetAllMovies() }).catch((err) => console.log(err))
}
handleHover() {
this.setState({
isHover: !this.state.isHover
})
}
render() {
return (
<div className="grid-img mt-4 mb-4">
<div onMouseOut={(e) => this.props.onMouseOut(e)
} className="container-img-test">
<img onMouseEnter={(e) => this.props.imgClickTest(e)} s className="img-fluid card-img-top" src={this.props.poster} alt="Card image cap" />
{this.props.isHovering ? <Button id="update" color="blue darken-3" className="p-1" onClick={this.handleUpdateMovie}>{this.props.watched ? <i className="fas fa-check ml-2 mr-2 "></i> : <i className="fas fa-times ml-2 mr-2 "></i>}</Button> : undefined}
{this.props.isHovering ? <Button id="delete" color="blue darken-3" className="p-1 ml-2 mr-2" onClick={this.handleDeleteMovie}> <i className="fas fa-trash-alt ml-2 mr-2"></i></Button> : undefined}
{this.props.isHovering ? <Button id="edit" color="blue darken-3" className="p-1 ml-2 mr-2" onClick={this.handleSetQuery}><i class="fas fa-edit ml-2 mr-2"></i></Button> : undefined}
</div>
{this.state.redirectDash === true && window.location.pathname === "/findmovie" ? <Redirect to="/dashboard" /> : undefined}
{(this.state.redirect === true && window.location.pathname !== `/findmovie`) ? <Redirect to={{
pathname: "/findmovie",
}} /> : undefined}
</div>
)
}
}
export default MovieCardDashboard
<file_sep>/src/components/HeaderPrivate.js
import React, { Component } from 'react'
import axios from "axios"
import { Link } from "react-router-dom";
import { Typeahead } from 'react-bootstrap-typeahead';
import 'react-bootstrap-typeahead/css/Typeahead.css'
import 'react-bootstrap-typeahead/css/Typeahead-bs4.css'
import { Redirect } from "react-router-dom";
import { FormInline, Input, Fa, Button } from "mdbreact"
import { Navbar, NavbarBrand, NavbarNav, NavbarToggler, Collapse, NavItem, NavLink, Dropdown, DropdownToggle, DropdownMenu, DropdownItem } from 'mdbreact';
const is = require("is_js");
export default class HeaderPrivate extends Component {
constructor(props) {
super(props)
this.handleLogout = this.handleLogout.bind(this);
this.handleChange = this.handleChange.bind(this);
this.handleClear = this.handleClear.bind(this);
this.handleSearch = this.handleSearch.bind(this);
this.onClick = this.onClick.bind(this);
this.state = {
user: "",
searchVal: "",
searchOptions: [],
movies: [],
redirect: false,
collapse: false,
isWideEnough: false,
}
}
componentDidMount() {
axios({
method: 'GET', url: `https://peaceful-oasis-31467.herokuapp.com/https://guarded-chamber-92596.herokuapp.com/users/me/`, headers: {
"x-auth": this.props.token
},
}).then((response) => {
this.setState({
user: response.data.email
})
}).catch((e) => console.log(e))
axios({
method: 'GET', url: 'https://peaceful-oasis-31467.herokuapp.com/https://guarded-chamber-92596.herokuapp.com/movies/', headers: {
"x-auth": this.props.token
}
}).then((response) => {
this.setState({
movies: response.data.movies,
searchOptions: response.data.movies.map((movie) => movie.name),
});
}).catch((err) => console.log(err))
}
handleLogout(e) {
axios({
method: 'DELETE', url: `https://peaceful-oasis-31467.herokuapp.com/https://guarded-chamber-92596.herokuapp.com/users/me/token`, headers: {
"x-auth": this.props.token
},
}).then((response) => {
this.props.handleDeleteToken(e)
}).catch((err) => console.log(err))
}
handleChange(value) {
this.setState({
searchVal: value,
})
}
handleClear() {
this.setState({
searchVal: "",
result: []
})
}
handleSearch(e) {
e.preventDefault()
let search = this.state.searchVal[0]
console.log(search)
this.props.handleReturn(this.state.movies.find((movie) => search === movie.name))
this.state.movies.find((movie) => {
if (search === movie.name && window.location.pathname !== "/findmovie") {
this.setState({
redirect: true,
});
}
})
}
onClick() {
this.setState({
collapse: !this.state.collapse,
});
}
render() {
return (
<div id="nav">
<Navbar className="justify-content-space-between w-100" color="mdb-color darken-3" dark expand="md" scrolling>
<div>
{!this.state.isWideEnough && <NavbarToggler onClick={this.onClick} />}
<Collapse isOpen={this.state.collapse} navbar>
{is.chrome() === false ? <NavbarNav left>
{window.location.pathname === "/dashboard" ? <NavItem active>
<br />
<Link id="dashboard" to="/dashboard">Dashboard</Link>
</NavItem> : <NavItem>
<br />
<Link id="dashboard" to="/dashboard">Dashboard</Link>
</NavItem>}
{window.location.pathname === "/add" ? <NavItem active>
<br />
<Link id="add" to="/add">Add</Link>
</NavItem> : <NavItem>
<br />
<Link id='add' to="/add">Add</Link>
</NavItem>}
<NavItem>
<Dropdown>
<DropdownToggle id="logout" nav caret>{this.props.username}</DropdownToggle>
<DropdownMenu>
<DropdownItem href="#" onClick={(e) => { this.handleLogout(e) }}>Log out</DropdownItem>
</DropdownMenu>
</Dropdown>
</NavItem>
</NavbarNav> : <NavbarNav left>
{window.location.pathname === "/dashboard" ? <NavItem active>
<br />
<NavLink to="/dashboard">Dashboard</NavLink>
</NavItem> : <NavItem>
<br />
<NavLink to="/dashboard">Dashboard</NavLink>
</NavItem>}
{window.location.pathname === "/add" ? <NavItem active>
<br />
<NavLink to="/add">Add</NavLink>
</NavItem> : <NavItem>
<br />
<NavLink to="/add">Add</NavLink>
</NavItem>}
<NavItem>
<Dropdown>
<DropdownToggle id="logout-chrome" nav caret>{this.props.username}</DropdownToggle>
<DropdownMenu>
<DropdownItem href="#" onClick={(e) => { this.handleLogout(e) }}>Log out</DropdownItem>
</DropdownMenu>
</Dropdown>
</NavItem>
</NavbarNav>}
<NavbarNav right>
<NavItem>
<FormInline className="ml-3 md-form" onSubmit={this.handleSearch}>
<button id="#searchbtn" className="btn btn-outline-primary"> <Fa className="fas fa-search"></Fa></button>
<Typeahead
id="typeahead"
className="mr-3 w-75"
onChange={(value) => {
this.handleChange(value);
}}
options={this.state.searchOptions}
selected={this.state.searchVal}
placeholder="Search your library"
/>
</FormInline>
</NavItem>
</NavbarNav>
</Collapse>
</div>
</Navbar>
{(this.state.redirect === true && window.location.pathname !== `/findmovie`) ? <Redirect to={{
pathname: "/findmovie",
state: { event: "test" }
}} /> : undefined}
</div>
)
}
}
<file_sep>/src/App.js
import React, { Component } from 'react';
import SignUp from "./components/SignUp"
import Login from "./components/Login";
import Dashboard from "./components/Dashboard";
import axios from "axios";
import "./styles/styles.css"
import { Redirect } from "react-router-dom";
import { Switch, Route } from 'react-router';
import { BrowserRouter } from "react-router-dom";
import createBrowserHistory from "history/createBrowserHistory";
import AddMovie from './components/AddMovie';
import FindMovie from "./components/FindMovie";
const history = createBrowserHistory()
class App extends Component {
constructor(props) {
super(props)
this.handleSignUp = this.handleSignUp.bind(this)
this.handleLogIn = this.handleLogIn.bind(this)
this.handleDeleteToken = this.handleDeleteToken.bind(this)
this.handleReturn = this.handleReturn.bind(this)
this.handleSignInGoogle = this.handleSignInGoogle.bind(this)
this.handleLogInGoogle = this.handleLogInGoogle.bind(this)
this.handleWindowClose = this.handleWindowClose.bind(this)
this.state = {
shouldRedirect: false,
isAuthenticated: false,
errormsg: "",
token: "",
_id: "",
username: "",
query: [],
status: "done",
}
}
componentDidMount() {
window.addEventListener('onbeforeunload', this.handleWindowClose);
setTimeout(() => {
this.setState({
isAuthenticated: false,
token: "",
_id: "",
});
alert("You have been logged out due to inactivity");
}, 6 * 10000 * 15);
}
handleLogInGoogle(email, id) {
this.setState({
status: "loading"
})
let emailG = email
let password = id
let auth
axios.post("https://peaceful-oasis-31467.herokuapp.com/https://guarded-chamber-92596.herokuapp.com/login", { email: emailG, password: <PASSWORD>, }).then((response) => {
auth = response.headers["x-auth"];
this.setState({
_id: response.data._id,
token: auth,
username: response.data.username
})
if (this.state.token !== undefined) {
this.setState({
isAuthenticated: true,
status: "done"
})
}
}).catch((e) => { console.log(e) })
}
handleLogIn(e) {
this.setState({
status: "loading"
})
e.preventDefault()
let email = e.target.elements[0].value
let password = e.target.elements[1].value
let responsestatus
let auth
axios.post("https://peaceful-oasis-31467.herokuapp.com/https://guarded-chamber-92596.herokuapp.com/login", { email: email, password: <PASSWORD>, }).then((response) => {
auth = response.headers["x-auth"];
this.setState({
_id: response.data._id,
token: auth,
username: response.data.username
})
if (this.state.token !== undefined) {
this.setState({
isAuthenticated: true,
status: "done"
})
}
responsestatus = response.status;
}).catch((e) => { console.log(e) }).then(() => {
if (responsestatus === 200) {
// TODO WELCOME BACK NAME
}
else {
this.setState({
errormsg: "Wrong email or password provided"
})
alert(this.state.errormsg)
}
})
}
handleSignUp(e) {
e.preventDefault()
let username = e.target.elements[0].value
let email = e.target.elements[1].value
let password = e.target.elements[3].value
if (email === e.target.elements[2].value && password === e.target.elements[4].value){
axios.post("https://peaceful-oasis-31467.herokuapp.com/https://guarded-chamber-92596.herokuapp.com/users/", {
email: email, password: <PASSWORD>, username:username,
}).then((response) => { alert("You have been signed up, please check your mail for further info"); this.setState({ shouldRedirect: true, }) }).catch((e) => console.log(e))
}
else{
alert("Check your email and/or password")
}
}
handleSignInGoogle(email, id, username) {
let usernameG = username
let emailG = email
let password = id
axios.post("https://peaceful-oasis-31467.herokuapp.com/https://guarded-chamber-92596.herokuapp.com/social/", {
email: emailG, password: <PASSWORD>, username: usernameG,
}).then((response) => {
console.log(response); this.setState({ shouldRedirect: true, }); if (response.data.email === emailG) { this.handleLogInGoogle(emailG, password) }
}).catch((e) => console.log(e))
}
handleDeleteToken(e) {
e.preventDefault()
this.setState({
isAuthenticated: false,
token: "",
_id: "",
username: "",
});
alert("You have been logged out")
}
handleWindowClose(){
axios({
method: 'DELETE', url: `https://peaceful-oasis-31467.herokuapp.com/https://guarded-chamber-92596.herokuapp.com/users/me/token`, headers: {
"x-auth": this.props.token
},
}).then((response) => {
}).catch((err) => console.log(err))
}
handleReturn(search) {
this.setState({
query: [search]
})
}
componentWillUnmount() {
window.removeEventListener('onbeforeunload', this.handleWindowClose);
axios({
method: 'DELETE', url: `https://peaceful-oasis-31467.herokuapp.com/https://guarded-chamber-92596.herokuapp.com/users/me/token`, headers: {
"x-auth": this.props.token
},
}).then((response) => {
}).catch((err) => console.log(err))
}
render() {
return (
<BrowserRouter >
<Switch>
<Route path="/" exact={true} render={() => <Login status={this.state.status} handleSignInGoogle={this.handleSignInGoogle} shouldRedirect={this.state.shouldRedirect} handleLogInGoogle={this.handleLogInGoogle} isAuthenticated={this.state.isAuthenticated} handleLogIn={this.handleLogIn} />} />
<Route path="/signup" render={() => <SignUp handleSignUp={this.handleSignUp} />} />
<Route path="/dashboard" render={() => { return this.state.isAuthenticated ? <Dashboard query={this.state.query} handleReturn={this.handleReturn} handleDeleteToken={this.handleDeleteToken} _id={this.state._id} token={this.state.token} username={this.state.username} /> : <Redirect to="/" /> }} />
<Route path="/add" render={() => { return this.state.isAuthenticated ? <AddMovie handleReturn={this.handleReturn} handleDeleteToken={this.handleDeleteToken} _id={this.state._id} token={this.state.token} username={this.state.username} /> : <Redirect to="/" /> }} />
<Route path="/findmovie" render={() => { return this.state.isAuthenticated ? <FindMovie handleReturn={this.handleReturn} query={this.state.query} handleDeleteToken={this.handleDeleteToken} _id={this.state._id} token={this.state.token} username={this.state.username} /> : <Redirect to="/" /> }} />
</Switch>
</BrowserRouter>
);
}
}
export default App;
<file_sep>/src/components/Textarea.js
import React from 'react'
import StarRatings from 'react-star-ratings'
import moment from "moment"
const TextArea = (props) => {
return (
<div>
<blockquote className="blockquote bq-primary">
<div>
<div className="d-flex justify-content-between">
<div>
<h1 id="textarea-title" className="bq-title">{props.name}</h1>
<p id="textarea-subtitle" className="lead">{props.director}</p>
</div>
<div>
<h3 id="year" >{props.year}</h3>
</div>
</div>
<div>{props.type === "movie" ? <i className="type fas fa-film mr-2"> <span></span> </i> : <i className="type fas fa-tv mr-2"> <span></span> </i>}</div>
<StarRatings
rating={(props.rating)}
starRatedColor="DarkGoldenRod"
starHoverColor="DarkGoldenRod"
numberOfStars={10}
name='rating'
starDimension="25px"
starSpacing="3px" />
<div className="userdata"><p className="datetowatch"><i className="user far fa-clock mr-2"></i>{moment(props.dateToWatch).format("DD/MM/YYYY")} <p className="note"> <i className="user far fa-comment-alt mr-2"></i>{props.note}</p></p>
</div>
<p id="textarea-plot">{props.plot}</p>
</div>
</blockquote>
</div>
)
}
export default TextArea<file_sep>/src/components/Login.js
import React from 'react'
import { Redirect, Link } from "react-router-dom"
import Google from "./Google"
import Facebook from "./Facebook"
import { Container, Row, Col, Input, Button, Card } from 'mdbreact';
import HeaderPublic from "./HeaderPublic"
const Login = (props) => {
return (
<div className="container-fluid">
<HeaderPublic />
<div className="mt-auto align-items-center">
<div id="login" className="row d-flex align-items-center justify-content-center">
<div id="box">
<Col lg="12" sm="12">
<h1>PersonalMovie DB</h1>
<h5>Keeping your movies & tv shows organized</h5>
</Col>
<Col lg="12" sm="12">
{props.isAuthenticated ? <Redirect to="/dashboard" /> : undefined}
<form onSubmit={(e) => { props.handleLogIn(e) }}>
<div className="grey-text">
<Input color="secondary" label="Type your email" icon="envelope" group type="email" validate error="wrong" success="right" id="email" type="email" required />
<Input color="secondary" label="Type your password" icon="lock" group type="password" validate required />
<div className="text-center">
</div>
<button className="btn btn-secondary">Log in</button>
<Link to="/signup"><Button >Sign up</Button></Link>
</div>
</form>
<Google handleSignInGoogle={props.handleSignInGoogle} shouldRedirect={props.shouldRedirect} handleLogInGoogle={props.handleLogInGoogle} />
<Facebook handleSignInFacebook={props.handleSignInGoogle} shouldRedirect={props.shouldRedirect} handleLogInFacebook={props.handleLogInGoogle} />
</Col>
{props.status === "loading" ? <div className="mt-5 d-flex align-items-center justify-content-center "><div className="nb-spinner"></div></div> : undefined}
</div>
</div>
</div>
</div>
)
}
export default Login<file_sep>/src/components/MovieCardFindMovie.js
import React, { Component } from 'react'
import DatePicker from 'react-datepicker';
import moment from 'moment';
import 'react-datepicker/dist/react-datepicker.css';
import { Link } from "react-router-dom";
import axios from "axios";
import StarRatings from 'react-star-ratings'
import { Button } from "mdbreact";
class MovieCardFindMovie extends Component {
constructor(props) {
super(props)
this.handleChange = this.handleChange.bind(this)
this.handleNoteChange = this.handleNoteChange.bind(this)
this.handleUpdate = this.handleUpdate.bind(this)
this.handleCheckChange = this.handleCheckChange.bind(this)
this.changeRating = this.changeRating.bind(this)
this.state = {
dateToWatch: moment(),
note: this.props.note,
watched: this.props.watched,
rating: this.props.rating
}
}
handleChange(date) {
this.setState({
dateToWatch: date,
});
}
handleNoteChange(event) {
let note = event.target.value
this.setState({
note: note
})
}
handleCheckChange() {
let status = !this.state.watched
this.setState({
watched: status,
})
}
handleUpdate() {
let id = this.props.id
axios({
method: 'PATCH', url: `https://peaceful-oasis-31467.herokuapp.com/https://guarded-chamber-92596.herokuapp.com/movies/${id}`, headers: {
"x-auth": this.props.token
}, data: {
dateToWatch: this.state.dateToWatch,
note: this.state.note,
watched: this.state.watched,
rating: this.state.rating,
}
}).then((response) => { ; this.props.closeModal(); this.props.handleGetAllMovies() }).catch((err) => console.log(err))
}
changeRating(newrating) {
let id = this.props.id
this.setState({
rating: newrating
})
axios({
method: 'PATCH', url: `https://peaceful-oasis-31467.herokuapp.com/https://guarded-chamber-92596.herokuapp.com/movies/${id}/rating`, headers: {
"x-auth": this.props.token
}, data: {
rating: newrating,
}
}).catch((err) => console.log(err))
}
render() {
let linkstring = `https://www.imdb.com/title/${this.props.imdbID}/`
return (
<div className="row">
<div className="col-lg-6 col-sm-7"><blockquote className="blockquote bq-primary">
<div className="d-flex justify-content-between">
<div>
<h1 id="textarea-title" className="bq-title">{this.props.name}</h1>
<p id="textarea-subtitle" className="lead">{this.props.director}</p>
</div>
<div>
<h3 id="year" >{this.props.year}</h3>
</div>
</div>
<div>{this.props.type === "movie" ? <i className="type fas fa-film ml-2 mr-2 "> <span></span> </i> : <i className="type fas fa-tv ml-2 mr-2 "> <span></span> </i>}</div>
<StarRatings
rating={parseInt(this.state.rating)}
starRatedColor="DarkGoldenRod"
starHoverColor="DarkGoldenRod"
changeRating={this.changeRating}
numberOfStars={10}
name='rating'
starDimension="25px"
starSpacing="3px" />
<p id="textarea-plot">{this.props.plot}</p>
</blockquote>
<div className="row ml-3">
<div className="col-lg-12 col-sm-12">
<small>New watchdate and note:</small>
<DatePicker selected={this.state.dateToWatch}
onChange={this.handleChange} />
<textarea className="mt-3" maxLength={70} onChange={this.handleNoteChange}>{this.state.note}</textarea>
</div>
</div>
<div className="row ml-3">
<div className="col-lg-12 col-sm-12">
<Button className="btn btn-secondary mr-2" onClick={this.handleCheckChange}>{this.state.watched ? <i className="fas fa-check ml-2 mr-2 "></i> : <i className="fas fa-times ml-2 mr-2 "></i>}</Button>
<Link to="/dashboard"><Button onClick={this.handleUpdate}>Update</Button></Link>
</div>
</div>
</div>
<div className="col-lg-6 col-sm-5 justify-content-center">
<img className="img-responsive img-add" src={this.props.poster} alt="Card image cap" />
</div>
</div>
)
}
}
export default MovieCardFindMovie<file_sep>/src/components/Dashboard.js
import ReactHoverObserver from 'react-hover-observer';
import TextArea from "./Textarea";
import React from 'react'
import axios from "axios";
import HeaderPrivate from './HeaderPrivate';
import MovieCardDashboard from './MovieCardDashboard';
import Select from 'react-select';
import makeAnimated from 'react-select/lib/animated';
import moment from "moment";
import { ButtonDropdown, DropdownToggle, DropdownMenu, DropdownItem } from 'reactstrap';
import { Animation } from "mdbreact";
let options = [
{
label: 'Type', options: [
{ value: "", label: "All", group: "type" },
{ value: 'movie', label: 'Movies', group: "type" },
{ value: 'series', label: 'Tv Shows', group: "type" },]
},
{
label: 'Watched', options: [
{ value: "", label: "All", group: "watched" },
{ value: 'true', label: 'Watched', group: "watched" },
{ value: 'false', label: 'Not watched', group: "watched" },]
},
]
let sortOptions = ['Year', 'Title', 'Rating']
class Dashboard extends React.Component {
constructor(props) {
super(props)
this.handleGetAllMovies = this.handleGetAllMovies.bind(this);
this.handleChange = this.handleChange.bind(this)
this.handleSubmit = this.handleSubmit.bind(this)
this.filterData = this.filterData.bind(this)
this.handleNumberChange = this.handleNumberChange.bind(this)
this.sortByAsc = this.sortByAsc.bind(this)
this.sortByDesc = this.sortByDesc.bind(this)
this.handleTextSelectChange = this.handleTextSelectChange.bind(this)
this.toggle = this.toggle.bind(this);
this.onSelectChange = this.onSelectChange.bind(this)
this.handleSortSubmit = this.handleSortSubmit.bind(this)
this.toggleFilters = this.toggleFilters.bind(this)
this.imgClickTest = this.imgClickTest.bind(this)
this.onMouseOut = this.onMouseOut.bind(this)
this.state = {
data: [],
updating: false,
selectedOption: undefined,
yearFilter: "",
sortBy: "Option",
dropdownOpen: false,
isActive: false,
order: "Ascending",
visible: false,
currentPick: [],
isLoading: false,
}
}
componentDidMount() {
this.handleGetAllMovies()
}
handleChange(selectedOption) {
this.setState({ selectedOption });
}
filterData(type, watched, year) {
this.setState({
isLoading: true,
})
axios({
method: 'POST', url: 'https://peaceful-oasis-31467.herokuapp.com/https://guarded-chamber-92596.herokuapp.com/movies/filter/', headers: {
"x-auth": this.props.token
}, data: {
watched: watched,
type: type,
year: year,
}
}).then((response) => {
this.setState({
data: response.data.movies,
isLoading: false,
}); this.setState({
selectedOption: null
});
}).catch((err) => console.log(err))
}
handleNumberChange(e) {
let year = e.target.value
this.setState({
yearFilter: year
})
}
handleSubmit(e) {
e.preventDefault()
let type
let watched
let year = this.state.yearFilter
if (this.state.selectedOption) {
if (this.state.selectedOption.length === 2) {
if ((this.state.selectedOption[0].value !== "" && this.state.selectedOption[1].value !== "") && (this.state.selectedOption[0].group === this.state.selectedOption[1].group)) {
type = ""
watched = ""
}
else if ((this.state.selectedOption[0].value === "" || this.state.selectedOption[1].value === "") && (this.state.selectedOption[0].group === this.state.selectedOption[1].group)) {
if ((this.state.selectedOption[0].value === "") && (this.state.selectedOption[1].value === "movie" || this.state.selectedOption[1].value === "series")) {
type = this.state.selectedOption[1].value
watched = this.state.selectedOption[0].value
}
else if ((this.state.selectedOption[0].value === "") && (this.state.selectedOption[1].value === "true" || this.state.selectedOption[1].value === "false")) {
watched = this.state.selectedOption[1].value
type = this.state.selectedOption[0].value
}
else if ((this.state.selectedOption[1].value === "") && (this.state.selectedOption[0].value === "movie" || this.state.selectedOption[0].value === "series")) {
type = this.state.selectedOption[0].value
watched = this.state.selectedOption[1].value
}
else if ((this.state.selectedOption[1].value === "") && (this.state.selectedOption[0].value === "true" || this.state.selectedOption[0].value === "false")) {
type = this.state.selectedOption[1].value
watched = this.state.selectedOption[0].value
}
}
else if (this.state.selectedOption[0].value === "" || this.state.selectedOption[0].value === "movie" || this.state.selectedOption[0].value === "series") {
type = this.state.selectedOption[0].value
watched = this.state.selectedOption[1].value
}
else if (this.state.selectedOption[1].value === "" || this.state.selectedOption[1].value === "movie" || this.state.selectedOption[1].value === "series") {
type = this.state.selectedOption[1].value
watched = this.state.selectedOption[0].value
}
this.filterData(type, watched, year)
}
else if ((this.state.selectedOption.length === 1) && (this.state.selectedOption[0].value === "" || this.state.selectedOption[0].value === "movie" || this.state.selectedOption[0].value === "series")) {
type = this.state.selectedOption[0].value
watched = ""
this.filterData(type, watched, year)
}
else if ((this.state.selectedOption.length === 1) && (this.state.selectedOption[0].value === "true" || this.state.selectedOption[0].value === "false" || this.state.selectedOption[0].value === "")) {
watched = this.state.selectedOption[0].value
type = ""
this.filterData(type, watched, year)
}
else if (this.state.selectedOption.length > 2) {
alert("Please select only two different parameters")
}
else {
type = ""
watched = ""
this.filterData(type, watched, year)
}
}
else {
type = ""
watched = ""
this.filterData(type, watched, year)
}
}
handleGetAllMovies() {
this.setState({
isLoading: true,
})
axios({
method: 'GET', url: 'https://peaceful-oasis-31467.herokuapp.com/https://guarded-chamber-92596.herokuapp.com/movies/', headers: {
"x-auth": this.props.token
}
}).then((response) => {
; this.setState({
data: response.data.movies,
isLoading: false,
});
}).catch((err) => console.log(err))
}
sortByAsc(sortBy) {
let sortpar = sortBy.toLowerCase()
if (sortpar === "year") {
this.setState({
data: this.state.data.sort((a, b) => { return a.year > b.year })
})
}
else if (sortpar === "rating") {
this.setState({
data: this.state.data.sort((a, b) => { return a.rating > b.rating })
})
}
else if (sortpar === "title") {
this.setState({
data: this.state.data.sort((a, b) => { return a.name > b.name })
})
}
}
sortByDesc(sortBy) {
let sortpar = sortBy.toLowerCase()
if (sortpar === "year") {
this.setState({
data: this.state.data.sort((a, b) => { return a.year < b.year })
})
}
else if (sortpar === "rating") {
this.setState({
data: this.state.data.sort((a, b) => { return a.rating < b.rating })
})
}
else if (sortpar === "title") {
this.setState({
data: this.state.data.sort((a, b) => { return a.name < b.name })
})
}
}
handleTextSelectChange(e) {
let sortBy = e.target.textContent
this.setState({
sortBy: sortBy,
isActive: true,
})
return sortBy
}
handleSortSubmit(e) {
this.setState({
isLoading: true,
})
e.preventDefault()
if (this.state.order === "Ascending") {
this.sortByAsc(this.state.sortBy);
this.setState({
isLoading: false,
})
}
else if (this.state.order === "Descending") {
this.sortByDesc(this.state.sortBy)
}
}
toggle() {
this.setState({
dropdownOpen: !this.state.dropdownOpen
});
}
onSelectChange(e) {
let order = e.target.value
this.setState({
order,
})
}
toggleFilters() {
this.setState({
visible: !this.state.visible
})
}
imgClickTest(e) {
let src = e.target.src
this.setState((prevState) => ({
currentPick: [].concat(this.state.data.find((movie) => src === movie.poster))
}))
}
onMouseOut(e) {
this.setState({
currentPick: []
})
}
render() {
const { selectedOption } = this.state;
let currentyear = moment().format("YYYY")
return (
<div>
<HeaderPrivate username={this.props.username} query={this.props.query} handleReturn={this.props.handleReturn} handleDeleteToken={this.props.handleDeleteToken} token={this.props.token} />
<div className="container">
<div className="d-flex justify-content-center mt-2">
<button className="btn btn-primary w-100" onClick={this.toggleFilters}>Show/hide filters <span className="ml-2"><i className="fas fa-caret-square-down"></i></span></button>
</div>
</div>
<div className="container-fluid">
{this.state.visible ? <Animation type="fadeIn">
<div className="container">
<h5 className="text-black mt-2">Filters:</h5>
<form onSubmit={(e) => this.handleSubmit(e)}>
<div className="form-row align-items-space-around mb-2">
<div className="col-lg-6 h-100 w-100 mt-2 col-sm-12">
<Select
closeMenuOnSelect={true}
components={makeAnimated()}
options={options}
value={this.state.selectedOption}
onChange={this.handleChange}
isMulti={true}
/>
</div>
<div className="col-lg-3 mt-2 col-sm-12">
<input value={this.state.yearFilter} className="w-100 p-2" id="number-filter" onChange={this.handleNumberChange} type="number" placeholder="Year" minLength={4} min={1940} maxLength={4} max={currentyear} />
</div>
<div className="col-lg-3 col-sm-12">
<button id="btn-filter" className="btn btn-primary w-100">Filter</button>
</div>
</div>
</form>
<h5 className="text-black mt-2 mb-2">Sort results by:
</h5>
<form onSubmit={(e) => this.handleSortSubmit(e)}>
<div className="form-row align-items-space-around mb-2">
<div class="col-lg-6 h-100 w-100 mt-2 col-sm-12">
<select id="select" className="form-control form-control" onChange={this.onSelectChange} value={this.state.order}>
<option>
Ascending
</option>
<option>
Descending
</option>
</select>
</div>
<div class="col-lg-3 mt-2 col-sm-12 w-100">
<ButtonDropdown isOpen={this.state.dropdownOpen} toggle={this.toggle}>
<DropdownToggle id="dropdown-button" caret>
{this.state.sortBy}
</DropdownToggle>
<DropdownMenu className="w-100">
<DropdownItem header>Sort by:</DropdownItem>
<DropdownItem active={this.state.isActive && this.state.sortBy === "Year"} onClick={this.handleTextSelectChange}>Year</DropdownItem>
<DropdownItem active={this.state.isActive && this.state.sortBy === "Title"} onClick={this.handleTextSelectChange}>Title</DropdownItem>
<DropdownItem active={this.state.isActive && this.state.sortBy === "Rating"} onClick={this.handleTextSelectChange}>Rating</DropdownItem>
<DropdownItem divider></DropdownItem>
</DropdownMenu>
</ButtonDropdown>
</div>
<div class="col-lg-3 col-sm-12">
<button id="btn-sort" className="btn w-100">Sort</button>
</div>
</div>
</form>
</div></Animation> : undefined}
{this.state.isLoading === true ? <div className="mt-5 d-flex align-items-center justify-content-center "><div className="nb-spinner"></div></div> : undefined}
<div className="mr-2 ml-2 row">
<div className="col-lg-4 col-sm-6">
{this.state.currentPick.map((movie) => <TextArea rating={movie.rating} type={movie.type} handleGetAllMovies={this.handleGetAllMovies} id={movie._id} key={movie.name} name={movie.name} year={movie.year} director={movie.director} plot={movie.plot} poster={movie.poster} dateToWatch={movie.dateToWatch} note={movie.note} watched={movie.watched} />)}
</div>
<div className="col-lg-8 col-sm-6">
<div id="scrollable" className="row align-items-center">
{this.state.data.map((movie) => <Animation type="fadeIn"> <ReactHoverObserver className="col-lg-12 col-sm-12"> <MovieCardDashboard movies={this.state.data} handleReturn={this.props.handleReturn} onMouseOut={this.onMouseOut} imgClickTest={this.imgClickTest} rating={movie.rating} type={movie.type} handleGetAllMovies={this.handleGetAllMovies} id={movie._id} key={movie.name} name={movie.name} year={movie.year} director={movie.director} plot={movie.plot} poster={movie.poster} dateToWatch={movie.dateToWatch} note={movie.note} watched={movie.watched} token={this.props.token} /> </ReactHoverObserver> </Animation>)}
</div>
</div>
</div>
</div>
</div>
)
}
}
export default Dashboard<file_sep>/src/components/SignUp.js
import React from 'react'
import { Link } from "react-router-dom"
import { Container, Row, Col, Input, Button } from 'mdbreact';
const SignUp = (props) => {
return (
<div className="container-fluid">
<div className="mt-auto align-items-center">
<div id="login" className="row d-flex align-items-center justify-content-center">
<div id="box">
<Col lg="12">
<form onSubmit={(e) => { props.handleSignUp(e) }}>
<div className="grey-text">
<Input label="Your name" icon="user" group type="text" validate error="wrong" success="right" required/>
<Input color="secondary" label="Type your email" icon="envelope" group type="email" validate error="wrong" success="right" id="email" type="email" required />
<Input label="Confirm your email" icon="exclamation-triangle" group type="email" validate error="wrong" success="right" required/>
<Input color="secondary" label="Type your password" icon="lock" group type="password" validate />
<Input label="Confirm your password" icon="exclamation-triangle" group type="password" validate error="wrong" success="right" required/>
<div className="text-center">
<button className="btn btn-secondary">Register</button>
<Link to="/"><Button>To login</Button></Link>
</div>
</div>
</form>
</Col>
</div>
</div>
</div>
</div>
)
}
export default SignUp
<file_sep>/src/components/MovieCard.js
import React from 'react'
import StarRatings from 'react-star-ratings'
const MovieCard = (props) => {
let linkstring = `https://www.imdb.com/title/${props.imdbID}/`
return (
<div className="row">
<div className="col-lg-6 col-sm-7"><blockquote className="blockquote bq-primary">
<div className="d-flex justify-content-between">
<div>
<h1 id="textarea-title" className="bq-title">{props.name}</h1>
<p id="textarea-subtitle" className="lead">{props.director}</p>
</div>
<div>
<h3 id="year" >{props.year}</h3>
</div>
</div>
<div>{props.type === "movie" ? <i className="type fas fa-film ml-2 mr-2 "> <span></span> </i> : <i className="type fas fa-tv ml-2 mr-2 "> <span></span> </i>}</div>
<StarRatings
rating={parseInt(props.rating)}
starRatedColor="DarkGoldenRod"
starHoverColor="DarkGoldenRod"
numberOfStars={10}
name='rating'
starDimension="25px"
starSpacing="3px" />
<p id="textarea-plot">{props.plot}</p>
</blockquote>
</div>
<div className="col-lg-6 col-sm-5">
<img className="img-responsive img-add" src={props.poster} alt="Card image cap" />
</div> </div>
)
}
export default MovieCard
<file_sep>/src/components/AddMovie.js
import React, { Component } from 'react'
import axios from "axios"
import HeaderPrivate from './HeaderPrivate';
import MovieCard from './MovieCard';
import { Redirect } from "react-router-dom";
import DatePicker from 'react-datepicker';
import moment from 'moment';
import { Container, Row, Col, Input, Button, Fa, Animation } from 'mdbreact';
import 'react-datepicker/dist/react-datepicker.css';
import { apiKey } from "./config"
export default class AddMovie extends Component {
constructor(props) {
super(props)
this.searchApi = this.searchApi.bind(this);
this.handleAddMovie = this.handleAddMovie.bind(this);
this.handleChange = this.handleChange.bind(this);
this.handleNoteChange = this.handleNoteChange.bind(this);
this.state = {
isLoading: false,
hasCompleted: false,
data: [
],
note: "",
dateToWatch: moment(),
watched: false,
shouldRedirect: false,
}
}
searchApi(e) {
e.preventDefault()
this.setState({
isLoading: true,
hasCompleted: false,
data: [],
})
let userQuery = e.target.elements[0].value
if (userQuery !== "") {
axios.get(`https://peaceful-oasis-31467.herokuapp.com/http://www.omdbapi.com/?t=${userQuery}&apikey=${apiKey}`).then((response) => {
console.log(response)
if(response.data.Error){
alert("Movie not found")
}
else if (response.data) {
this.setState((prevState) => ({
data: prevState.data.concat(response.data)
}))
}
}).then(() => {
this.setState({
isLoading: false,
hasCompleted: true,
});
}).catch((e) => console.log(e))
}
else {
alert("Please enter a valid movie/tv show title")
}
}
handleAddMovie() {
axios({
method: 'POST', url: 'https://peaceful-oasis-31467.herokuapp.com/https://guarded-chamber-92596.herokuapp.com/movies/', headers: {
"x-auth": this.props.token
}, data: { name: this.state.data[0].Title, year: parseInt(this.state.data[0].Year.replace(/^\–[0-9]+/gi, "")), director: this.state.data[0].Director, type: this.state.data[0].Type, rating: this.state.data[0].imdbRating, watched: this.state.watched, dateToWatch: this.state.dateToWatch, note: this.state.note, plot: this.state.data[0].Plot, poster: this.state.data[0].Poster, }
}).then((response) => {
; this.setState({
shouldRedirect: true
})
}).catch((err) => console.log(err))
}
handleChange(date) {
this.setState({
dateToWatch: date,
});
}
handleNoteChange(event) {
let note = event.target.value
this.setState({
note: note
})
}
render() {
return (
<div>
<HeaderPrivate username={this.props.username} handleReturn={this.props.handleReturn} handleDeleteToken={this.props.handleDeleteToken} token={this.props.token} />
<div className="container">
<Row>
<Col className="mt-5 mb-3" lg="12">
<form onSubmit={this.searchApi}>
<p className="h5 text-center mb-4">Find movies and tv shows to add to your collection</p>
<div className="grey-text">
<Input label="Search" icon="search" group type="text" validate error="wrong" success="right" required />
</div>
<div className="text-center">
<button className="btn btn-primary" >Find movie <Fa icon="paper-plane-o" className="ml-1" /></button>
</div>
</form>
</Col>
</Row>
</div>
<div className="container">
<div className="row mt-2">
<div className="col-lg-12">
{this.state.isLoading === true ? <div className="mt-5 d-flex align-items-center justify-content-center "><div className="nb-spinner"></div></div> : undefined}
{this.state.data.map((movie) => <Animation type="fadeIn"><MovieCard type={movie.Type} key={movie.Title} name={movie.Title} year={movie.Year} director={movie.Director} poster={movie.Poster} rating={movie.imdbRating} plot={movie.Plot} imdbID={movie.imdbID} /></Animation>)}
{this.state.data[0] !== undefined ? <Animation type="fadeIn"><div className="d-flex justify-content-space-around">
<div className="row">
<div className="col-lg-6 col-sm-6">
<p>Date to watch:</p>
<DatePicker
selected={this.state.dateToWatch}
onChange={this.handleChange}
/>
</div>
<div className="col-lg-6 col-sm-6">
<p>Your note:</p>
<textarea classname="p-1" onChange={this.handleNoteChange} maxLength={70} placeholder="Some personal note about this movie"></textarea>
</div>
</div>
<div className="row">
<div className="col-lg-12 col-sm-12 ml-2 mt-2">
<button id="add_movie" className="btn btn-danger mt-4 p-4" onClick={this.handleAddMovie}>Add Movie</button>
{this.state.shouldRedirect === true ? <Redirect to="/dashboard" /> : undefined}
</div>
</div>
</div></Animation> : undefined}
</div>
</div>
</div>
</div>
)
}
}
<file_sep>/src/components/Google.js
import React, { Component } from 'react'
import axios from "axios";
import { GoogleLoginButton } from "react-social-login-buttons";
import {google} from "./config"
class Google extends Component {
constructor(props) {
super(props)
this.handleGoogleLogin = this.handleGoogleLogin.bind(this)
this.state = {
}
}
componentDidMount() {
let hello = require('hellojs')
hello.init({
google: google,
scope: "profile"
}, {
redirect_uri: "/"
})
}
handleGoogleLogin() {
let email
let id
let username
let hello = require('hellojs')
hello("google").login({
scope: "profile, email"
}).then(() => { }, (e) => console.log(e))
let socialToken;
hello.on('auth.login', (auth) => {
socialToken = auth.authResponse.access_token;
axios.get(`https://www.googleapis.com/plus/v1/people/me`, {
headers: {
"Authorization": 'Bearer ' + socialToken
}
})
.then((response) => {
email = response.data.emails[0].value; id = response.data.id;
username = response.data.displayName
try {
this.props.handleSignInGoogle(email, id,username);
this.props.handleLogInGoogle(email, id);
}
catch (e) {
console.log(e)
}
finally {
this.props.handleLogInGoogle(email, id);
this.props.handleLogInGoogle(email, id)
}
}).catch((e) => console.log(e))
})
hello.logout("google")
}
render() {
return (
<div className="w-100">
<GoogleLoginButton onClick={this.handleGoogleLogin} />
</div >
)
}
}
export default Google | a387a8573205e28f8c2bd0b7b27dcd1fedca8e79 | [
"JavaScript"
] | 11 | JavaScript | MatejTuray/personalmoviedb | 35e0f74ac861cf80da62b84e2fef2cd5870cc05b | 45852c21f0c8edb7ccddcc6b5d6b689b92b6ee17 |
refs/heads/master | <repo_name>allyraza/gulp-static<file_sep>/src/js/modules/ControlNumber.js
/* global jQuery */
import TT from './../lib/TT';
TT.Module.ControlNumber = TT.Component({
start: function(resolve) {
var ctx = jQuery(this.ctx);
this.input = ctx.find('.control-number__input');
// register events
ctx.find('.control-number__incr').on('click', this.onIncr.bind(this));
ctx.find('.control-number__decr').on('click', this.onDecr.bind(this));
resolve();
},
onIncr: function() {
var value = parseInt(this.input.val(), 10);
this.scope.counter += 1;
this.input.val(value + 1);
},
onDecr: function() {
var value = parseInt(this.input.val(), 10);
console.log(this.scope.counter);
console.log(this.scope.activeElements);
this.input.val(value - 1);
}
});
<file_sep>/tests/app_test.js
describe("Application", function() {
it("should cast spells", function() {
expect(100 + 200).toEqual(300);
});
});<file_sep>/src/js/lib/EventEmitter.js
/* eslint-disable */
/**
* Responsible for inter-module communication.
* Classic EventEmitter Api. Heavily inspired by https://github.com/component/emitter
*/
function EventEmitter(scope) {
/**
* The listeners.
*
* @property listeners
* @type Object
*/
this.listeners = {};
/**
* The scope instance.
*
* @property scope
* @type Sandbox
*/
this.scope = scope;
/**
* Indicates whether the instance is connected to the scope.
*
* @property connected
* @type Boolean
*/
this.connected = false;
}
/**
* Adds a listener for the given event.
*
* @method on
* @param {String} event
* @param {Function} listener
* @return {EventEmitter}
*/
EventEmitter.prototype.on = EventEmitter.prototype.addListener = function(event, listener) {
this.connect();
(this.listeners['$' + event] = this.listeners['$' + event] || []).push(listener);
return this;
};
/**
* Adds a listener that will be invoked a single
* time and automatically removed afterwards.
*
* @method once
* @param {String} event
* @param {Function} listener
* @return {EventEmitter}
*/
EventEmitter.prototype.once = function(event, listener) {
this.connect();
function on() {
this.off(event, on);
listener.apply(this, arguments);
}
on.listener = listener;
this.on(event, on);
return this;
};
/**
* Remove the given listener for the given event or all
* registered listeners.
*
* @method off
* @param {String} event
* @param {Function} listener
* @return {EventEmitter}
*/
EventEmitter.prototype.off = EventEmitter.prototype.removeListener = EventEmitter.prototype.removeAllListeners = function(event, listener) {
// all
if (arguments.length === 0) {
this.listeners = {};
return this;
}
// specific event
var listeners = this.listeners['$' + event];
if (!listeners) {
return this;
}
// remove all listeners
if (arguments.length === 1) {
delete this.listeners['$' + event];
return this;
}
// remove specific listener
var cb;
for (var i = 0, len = listeners.length; i < len; i++) {
cb = listeners[i];
if (cb === listener || cb.listener === listener) {
listeners.splice(i, 1);
break;
}
}
return this;
};
/**
* Dispatches event to the scope.
*
* @method emit
* @param {Mixed} ...
* @return {EventEmitter}
*/
EventEmitter.prototype.emit = function() {
this.connect();
// dispatches event to the scope
this.scope.dispatch.apply(this.scope, arguments);
return this;
};
/**
* Handles dispatched event from scope.
*
* @method handle
* @param {String} event
* @param {Mixed} ...
* @return {EventEmitter}
*/
EventEmitter.prototype.handle = function(event) {
var args = [].slice.call(arguments, 1),
listeners = this.listeners['$' + event];
if (listeners) {
listeners = listeners.slice(0);
for (var i = 0, len = listeners.length; i < len; ++i) {
listeners[i].apply(this, args);
}
}
return this;
};
/**
* Return array of listeners for the given event.
*
* @method listeners
* @param {String} event
* @return {Array}
*/
EventEmitter.prototype.listeners = function(event) {
return this.listeners['$' + event] || [];
};
/**
* Check if this event emitter has listeners.
*
* @method hasListeners
* @param {String} event
* @return {Boolean}
*/
EventEmitter.prototype.hasListeners = function(event) {
return !!this.listeners(event).length;
};
/**
* Connect instance to the scope.
*
* @method connect
* @return {EventEmitter}
*/
EventEmitter.prototype.connect = function() {
if (!this.connected) {
this.scope.addEventEmitter(this);
this.connected = true;
}
return this;
};
/**
* Disconnect instance from the scope.
*
* @method disconnect
* @return {EventEmitter}
*/
EventEmitter.prototype.disconnect = function() {
if (this.connected) {
this.scope.removeEventEmitter(this);
this.connected = false;
}
return this;
};
export default EventEmitter;
<file_sep>/gulpfile.js
// For development => gulp
// For production => gulp -p
// Call Plugins
var env = require('minimist')(process.argv.slice(2)),
gulp = require('gulp'),
gutil = require('gulp-util'),
plumber = require('gulp-plumber'),
nunjucks = require('gulp-nunjucks-render'),
minifyHtml = require('gulp-minify-html'),
browserSync = require('browser-sync'),
uglify = require('gulp-uglify'),
concat = require('gulp-concat'),
gulpif = require('gulp-if'),
sass = require('gulp-sass'),
cache = require('gulp-cache'),
clean = require('gulp-clean'),
prefixer = require('gulp-autoprefixer'),
imagemin = require('gulp-imagemin'),
eslint = require('gulp-eslint'),
jasmine = require('gulp-jasmine'),
Reporter = require('jasmine-spec-reporter'),
rollup = require('gulp-rollup'),
path = require('path');
// Call Nunjucks for compile Templates
gulp.task('nunjucks', function(){
return gulp.src('src/templates/*.html')
.pipe(plumber())
.pipe(nunjucks({
path: path.join(__dirname, 'src/templates')
})).on('error', console.log)
.pipe(gulpif(env.p, minifyHtml()))
.pipe(gulp.dest('build/'));
});
// Call Uglify and Concat JS
gulp.task('js', function(){
return gulp.src(['src/js/**/*.js'])
.pipe(plumber())
// .pipe(concat('app.js'))
.pipe(rollup({
entry: './src/js/app.js',
}))
.pipe(gulpif(env.p, uglify()))
.pipe(gulp.dest('build/js'));
});
// Call sass
gulp.task('sass', function(){
gulp.src('src/scss/app.scss')
.pipe(plumber())
.pipe(sass({
style: 'expanded',
sourcemap: false
})).on('error', console.log)
.pipe(prefixer())
.pipe(gulp.dest('build/css'));
});
// Call Imagemin
gulp.task('imagemin', function() {
return gulp.src('src/img/**/*')
.pipe(plumber())
//.pipe(cache())
.pipe(imagemin({ optimizationLevel: 3, progressive: true, interlaced: true }))
.pipe(gulp.dest('build/img'));
});
// Call Watch
gulp.task('watch', function(){
gulp.watch('src/templates/**/*.html', ['nunjucks']);
gulp.watch('src/scss/**/*.scss', ['sass']);
gulp.watch('src/js/**/*.js', ['js', 'lint']);
gulp.watch('src/img/**/*.{jpg,png,gif}', ['imagemin']);
});
gulp.task('clean', function () {
return gulp.src('build')
.pipe(plumber())
.pipe(clean({force: true}));
});
gulp.task('lint', () => {
return gulp.src(['src/js/**/*.js', 'test/**/*.js'])
.pipe(eslint())
.pipe(eslint.format())
.pipe(eslint.failAfterError());
});
gulp.task('test', () => {
return gulp.src('tests/**/*_test.js')
.pipe(jasmine({
reporter: new Reporter(),
}));
});
gulp.task('browser-sync', function () {
var files = [
'build/**/*.html',
'build/css/**/*.css',
'build/img/**/*',
'build/js/**/*.js'
];
browserSync.init(files, {
server: {
baseDir: './build/'
}
});
});
// Default task
gulp.task('default', ['nunjucks', 'js', 'lint', 'sass', 'imagemin', 'watch', 'browser-sync']);<file_sep>/src/js/lib/TT.js
import Application from './Application';
import Scope from './Scope';
import EventEmitter from './EventEmitter';
import Module from './Module';
import Utils from './Utils';
export default {
Application: Application,
Scope: Scope,
Module: Module,
EventEmitter: EventEmitter,
Component: Utils.Component,
createDecorator: Utils.Decorator
};
<file_sep>/src/js/app.js
/* global jQuery */
import TT from './lib/TT';
import './modules/ControlNumber';
import './modules/ControlCheckbox';
var app = new TT.Application({
data: {
activeElements: {},
counter: 0
}
});
app.registerModules();
app.start();
/* jQuery stuff */
jQuery(document).ready(function() {
jQuery('#myModal').modal({ show: true });
/* Confirmation modal */
jQuery('.js-select-template').on('change', function() {
jQuery('#modal-confirm').modal('show');
});
// confirmed!
jQuery('.js-confirm').on('click', function() {});
});<file_sep>/src/js/lib/Application.js
/* eslint-disable */
import Module from './Module';
import Utils from './Utils';
import Scope from './Scope';
import EventEmitter from './EventEmitter';
/**
* Responsible for application-wide issues such as the creation of modules.
*
* @constructor
* @param {Node} ctx
* The context node
* @param {Object} config
* The configuration
*/
/* global Scope, Utils, Module */
function Application(ctx, config) {
// validate params
if (!ctx && !config) {
// both empty
ctx = document;
config = {};
} else if (Utils.isNode(config)) {
// reverse order of arguments
var tmpConfig = config;
config = ctx;
ctx = tmpConfig;
} else if (!Utils.isNode(ctx) && !config) {
// only config is given
config = ctx;
ctx = document;
} else if (Utils.isNode(ctx) && !config) {
// only ctx is given
config = {};
}
var defaults = {
namespace: Module
};
config = Utils.extend(defaults, config);
/**
* The context node.
*
* @property ctx
* @type Node
*/
this.ctx = Utils.getElement(ctx);
/**
* The configuration.
*
* @property config
* @type Object
*/
this.config = config;
/**
* The sandbox to get the resources from.
* The singleton is shared between all modules.
*
* @property scope
* @typeScope
*/
this.scope = new Scope(this);
/**
* Contains references to all modules on the page.
*
* @property modules
* @type Object
*/
this.modules = {};
/**
* The next unique module id to use.
*
* @property id
* @type Number
*/
this.id = 1;
}
/**
* Register modules within the context
* Automatically registers all modules within the context,
* as long as the modules use the naming conventions.
*
* @method registerModules
* @param {Node} ctx
* The context node
* @return {Object}
* A collection containing the registered modules
*/
Application.prototype.registerModules = function(ctx) {
var modules = {};
ctx = Utils.getElement(ctx) || this.ctx;
this.scope.dispatch('t.register.start');
// get module nodes
var nodes = Utils.getModuleNodes(ctx);
nodes.forEach(function(ctx) {
/*
* A module can have different data attributes.
* See below for possible values.
*/
/*
* @config data-module="{mod-name}"
*
* Example: data-module="foo"
* Indicates that the module Foo should be bound.
*/
/*
* @config data-namespace="{namespace}"
*
* Example: data-namespace="App.Components"
* The namespace of the module. Optional.
*/
/*
* @config data-decorator="{decorator-name}"
*
* Example: data-decorator="bar"
* Indicates that the module Foo should be decorated with the Bar decorator.
* Multiple decorators should be comma-separated. Optional.
*/
var module = this.registerModule(ctx, ctx.getAttribute('data-module'), ctx.getAttribute('data-decorator'), ctx.getAttribute('data-namespace'));
if (module) {
modules[module.ctx.getAttribute('data-module-id')] = module;
}
}.bind(this));
this.scope.dispatch('t.register.end');
return modules;
};
/**
* Unregisters the modules given by the module instances.
*
* @method unregisterModules
* @param {Object} modules
* A collection containing the modules to unregister
*/
Application.prototype.unregisterModules = function(modules) {
modules = modules || this.modules;
this.scope.dispatch('t.unregister.start');
// unregister the given modules
for (var id in modules) {
if (this.modules.hasOwnProperty(id)) {
if (Utils.isNode(this.modules[id].ctx)) {
this.modules[id].ctx.removeAttribute('data-module-id');
}
delete this.modules[id];
}
}
this.scope.dispatch('t.unregister.end');
};
/**
* Starts (intializes) the registered modules.
*
* @method start
* @param {Object} modules
* A collection of modules to start
* @return {Promise}
* The synchronize Promise
*/
Application.prototype.start = function(modules) {
modules = modules || this.modules;
var promises = [];
this.scope.dispatch('t.start');
// start the modules
for (var id in modules) {
if (modules.hasOwnProperty(id)) {
var promise = (function(id) {
return new Promise(function(resolve, reject) {
modules[id].start(resolve, reject);
});
}(id));
promises.push(promise);
}
}
// synchronize modules
var all = Promise.all(promises);
all.then(function() {
this.scope.dispatch('t.sync');
}.bind(this)).catch(function(err) {
throw err;
});
return all;
};
/**
* Stops the registered modules.
*
* @method stop
* @param {Object} modules
* A collection of modules to stop
*/
Application.prototype.stop = function(modules) {
modules = modules || this.modules;
this.scope.dispatch('t.stop');
// stop the modules
for (var id in modules) {
if (modules.hasOwnProperty(id)) {
modules[id].stop();
}
}
};
/**
* Registers a module.
*
* @method registerModule
* @param {Node} ctx
* The context node
* @param {String} mod
* The module name. It must match the class name of the module
* @param {Array} decorators
* A list of decorator names. Each entry must match a class name of a decorator
* @param {String} namespace
* The module namespace
* @return {Module}
* The reference to the registered module
*/
Application.prototype.registerModule = function(ctx, mod, decorators, namespace) {
var modules = this.modules;
// validate params
if (ctx.hasAttribute('data-module-id')) {
return null; // prevent from registering twice
}
mod = Utils.capitalize(Utils.camelize(mod));
if (Utils.isString(decorators)) {
if (window[decorators]) {
// decorators param is the namespace
namespace = window[decorators];
decorators = null;
} else {
// convert string to array
decorators = decorators.split(',');
}
} else if (!Array.isArray(decorators) && Utils.isObject(decorators)) {
// decorators is the namespace object
namespace = decorators;
decorators = null;
}
decorators = decorators || [];
decorators = decorators.map(function(decorator) {
return Utils.capitalize(Utils.camelize(decorator.trim()));
});
namespace = namespace || this.config.namespace;
if (namespace[mod]) {
// assign the module a unique id
var id = this.id++;
ctx.setAttribute('data-module-id', id);
// instantiate module
modules[id] = new namespace[mod](ctx, this.scope);
// decorate it
for (var i = 0, len = decorators.length; i < len; i++) {
var decorator = decorators[i];
if (namespace[mod][decorator]) {
namespace[mod][decorator](modules[id]);
}
}
return modules[id];
}
this.scope.dispatch('t.missing', ctx, mod, decorators, namespace);
return null;
};
/**
* Gets the appropriate module for the given ID.
*
* @method getModuleById
* @param {int} id
* The module ID
* @return {Module}
* The appropriate module
*/
Application.prototype.getModuleById = function(id) {
if (this.modules[id]) {
return this.modules[id];
} else {
throw Error('The module with the id ' + id +
' does not exist');
}
};
export default Application;
<file_sep>/README.md
# Gulp Site
### Requirements
- node >6.0.0
- npm >3.0.0
- gulp >3.0.0
1. To setup nodejs and npm follow the official guide
[NodeJS](https://nodejs.org/en/download/package-manager/#debian-and-ubuntu-based-linux-distributions)
2. To setup gulp
```sh
npm install gulp -g
```
[GulpJS](http://gulpjs.com/)
## How to Setup
- Get the source from git repo if you don't have a local copy.
```sh
$ git clone http://github.com/allyraza/gulp-site
$ cd gulp-site
```
- Install dependecies by running
```sh
npm install
```
- Run the development server by executing
```sh
gulp
```
open http://host:port in your browser to view the application
- To build the app run the following command, it will create a dist dir which contains the final set of files
```sh
gulp -p
```
To deply the html build files, you need a web server copy & paste dist dir to htdocs and apache/nginx can handle the rest.
- To run the test run
```sh
gulp test
```
- To clean the build dir
```sh
gulp clean
```
### Available Tasks
- `gulp`: initialize watch for changes and a server (localhost:3000)
- `gulp js`: execute js files
- `gulp lint`: execute js files
- `gulp test`: execute js files
- `gulp nunjucks`: compile nunjucks templates
- `gulp sass`: compile sass files
- `gulp imagemin`: compress image files
- `gulp watch`: call for watch files
- `gulp clean`: call for watch files
- `gulp -p`: minify all files for production<file_sep>/src/js/lib/Module.js
/* eslint-disable */
import EventEmitter from './EventEmitter';
/**
* Base class for the different modules.
*
* @constructor
* @param {Node} ctx
* The context node
* @param {Scope} scope
* The scope to get the resources from
*/
/* global EventEmitter */
function Module(ctx, scope) {
/**
* Contains the context node.
*
* @property ctx
* @type Node
*/
this.ctx = ctx;
/**
* The scope to get the resources from.
*
* @property scope
* @type Scope
*/
this.scope = scope;
/**
* The emitter.
*
* @property events
* @type EventEmitter
*/
this.events = new EventEmitter(scope);
}
/**
* Template method to start the module.
*
* @method start
* @param {Function} resolve
* The resolve promise function
* @param {Function} reject
* The reject promise function
*/
/*jshint unused: true */
Module.prototype.start = function(resolve) {
resolve();
};
/**
* Template method to stop the module.
*
* @method stop
*/
Module.prototype.stop = function() {
this.events.off().disconnect();
};
export default Module;
| f83850090481652eb39942cf994215a1b6592ce0 | [
"JavaScript",
"Markdown"
] | 9 | JavaScript | allyraza/gulp-static | 7da78e1c36cb28ba2cca773043c5010eccd9030d | 039d9fbd638a5a7e178286141ff718c0d056188a |
refs/heads/master | <repo_name>vanashimko/string-finder<file_sep>/main.c
#include <stdio.h>
#include <libgen.h>
#include <fcntl.h>
#include <string.h>
#include <errno.h>
#include <unistd.h>
#include <pthread.h>
#include <dirent.h>
#include <sys/stat.h>
#include <stdlib.h>
#include <syscall.h>
#define ARGS_COUNT 4
typedef enum {
ST_NULL,
ST_BUSY,
ST_FREE
} thread_status_t;
typedef struct {
thread_status_t *thread_status;
char *filename;
} thread_params_t;
typedef struct {
int entries_count;
ssize_t total_bytes;
} find_result_t;
char *MODULE_NAME;
char *BYTES_SEQUENCE;
pthread_t *THREADS;
thread_status_t *THREADS_STATUS;
int find_bytes_in_file(const char *filename, const char *bytes_sequence, find_result_t *find_result);
int wait_for_thread(int threads_count);
void print_error(const char *module_name, const char *error_msg, const char *file_name) {
fprintf(stderr, "%s: %ld: %s %s\n", module_name, syscall(SYS_gettid), error_msg, file_name ? file_name : "");
}
void print_result(const char *filename, const find_result_t find_result) {
printf("%ld %s %ld %d\n", syscall(SYS_gettid), filename, find_result.total_bytes, find_result.entries_count);
}
void *worker(void *args) {
thread_params_t *thread_params = (thread_params_t *) args;
find_result_t find_result;
if (find_bytes_in_file(thread_params->filename, BYTES_SEQUENCE, &find_result) != -1) {
if (find_result.entries_count != 0) {
print_result(thread_params->filename, find_result);
}
};
*(thread_params->thread_status) = ST_FREE;
while (*(thread_params->thread_status) != ST_NULL);
free(thread_params->filename);
free(thread_params);
return NULL;
}
int find_bytes_in_file(const char *filename, const char *bytes_sequence, find_result_t *find_result) {
int fd = open(filename, O_RDONLY);
if (fd == -1) {
print_error(MODULE_NAME, strerror(errno), filename);
return -1;
}
int i = 0;
int entries_count = 0;
ssize_t total_bytes = 0;
size_t sequence_len = strlen(bytes_sequence);
char c = 0;
ssize_t bytes_read;
while ((bytes_read = read(fd, &c, sizeof(char))) > 0) {
total_bytes++;
(bytes_sequence[i] == c) ? (i++) : (i = 0);
if (sequence_len == i) {
entries_count++;
i = 0;
}
}
if (bytes_read == -1) {
print_error(MODULE_NAME, strerror(errno), filename);
return -1;
}
if (close(fd) == -1) {
print_error(MODULE_NAME, strerror(errno), filename);
return -1;
}
find_result->entries_count = entries_count;
find_result->total_bytes = total_bytes;
return 0;
}
void file_path(char *dest, const char *const path, const char *const name) {
strcpy(dest, path);
strcat(dest, "/");
strcat(dest, name);
}
void find_bytes_in_folder(const char *path, const int threads_count) {
DIR *dir_stream;
struct dirent *dir_entry;
if (!(dir_stream = opendir(path))) {
print_error(MODULE_NAME, strerror(errno), path);
return;
}
thread_params_t *thread_params;
pthread_t thread;
errno = 0;
while ((dir_entry = readdir(dir_stream)) != NULL) {
char *entry_name = dir_entry->d_name;
if (!strcmp(".", entry_name) || !strcmp("..", entry_name))
continue;
char *full_path = malloc(strlen(entry_name) + strlen(path) + 2);
file_path(full_path, path, entry_name);
struct stat entry_info;
if (lstat(full_path, &entry_info) == -1) {
print_error(MODULE_NAME, strerror(errno), full_path);
errno = 0;
continue;
}
if (S_ISDIR(entry_info.st_mode)) {
find_bytes_in_folder(full_path, threads_count);
} else {
if (S_ISREG(entry_info.st_mode)) {
int thread_id = wait_for_thread(threads_count);
THREADS_STATUS[thread_id] = ST_NULL;
if (pthread_join(THREADS[thread_id], NULL) == -1){
print_error(MODULE_NAME, strerror(errno), NULL);
return;
};
thread_params = malloc(sizeof(thread_params_t));
thread_params->thread_status = &(THREADS_STATUS[thread_id]);
thread_params->filename = full_path;
THREADS_STATUS[thread_id] = ST_BUSY;
if (pthread_create(&thread, NULL, &worker, thread_params) == -1) {
print_error(MODULE_NAME, strerror(errno), NULL);
return;
};
THREADS[thread_id] = thread;
}
}
}
if (errno) {
print_error(MODULE_NAME, strerror(errno), path);
}
if (closedir(dir_stream) == -1) {
print_error(MODULE_NAME, strerror(errno), path);
}
}
int wait_for_thread(int threads_count) {
int i = 0;
while (THREADS_STATUS[i] == ST_BUSY) {
i++;
if (i == threads_count) {
i = 0;
}
}
return i;
}
char all_finished(int threads_count) {
int i;
for (i = 0; (i < threads_count); i++) {
if (THREADS_STATUS[i] != ST_FREE) {
return 0;
}
}
return 1;
}
int main(int argc, char *argv[]) {
int threads_count;
MODULE_NAME = basename(argv[0]);
if (argc != ARGS_COUNT) {
print_error(MODULE_NAME, "Wrong number of parameters", NULL);
return 1;
}
if ((threads_count = atoi(argv[3])) < 1) {
print_error(MODULE_NAME, "Thread number must be bigger than 1.", NULL);
return 1;
}
THREADS_STATUS = calloc(sizeof(thread_status_t), (size_t) threads_count);
for (int i = 0; i < threads_count; i++) {
THREADS_STATUS[i] = ST_NULL;
}
BYTES_SEQUENCE = argv[2];
THREADS = calloc(sizeof(pthread_t), (size_t) threads_count);
find_bytes_in_folder(argv[1], threads_count);
while (!all_finished(threads_count));
}<file_sep>/CMakeLists.txt
cmake_minimum_required(VERSION 3.5)
project(string_finder)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
set(SOURCE_FILES main.c)
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}")
add_executable(string_finder ${SOURCE_FILES})
target_link_libraries(string_finder pthread)<file_sep>/README.md
# string-finder
Написать программу поиска заданной пользователем комбинации из m байт (m <255) во всех файлах текущего каталога.
Пользователь задаёт имя каталога. Главный процесс открывает каталог и запускает для каждого файла каталога отдельный поток поиска заданной комбинации из m байт.
Каждый поток выводит на экран свой id, полный путь к файлу, общее число просмотренных байт и результаты (сколько раз найдена комбинация) поиска.
Число одновременно работающих потоков N (вводится пользователем). Проверить работу программы для каталога /etc и строки ifconfig.
| 09eee323c93c6309eb6bf3cbc6fce4aabb540327 | [
"Markdown",
"C",
"CMake"
] | 3 | C | vanashimko/string-finder | bd0125f134b0535c862ee3fd1ff3c280b9874d97 | a69a98958000a27ffbf433ccd2bae1344322b7f6 |
refs/heads/master | <file_sep>autopep8==1.5.7
certifi==2021.5.30
charset-normalizer==2.0.3
idna==3.2
investpy==1.0.7
lxml==4.6.3
numpy==1.21.1
pandas==1.3.0
pycodestyle==2.7.0
python-dateutil==2.8.2
pytz==2021.1
requests==2.26.0
six==1.16.0
toml==0.10.2
Unidecode==1.2.0
urllib3==1.26.6
<file_sep>import investpy
import pandas as pd
from datetime import datetime, timedelta
pd.options.mode.chained_assignment = None
def show_nr_4(ticker):
search_result = investpy.search_quotes(text=ticker, products=['stocks'],
countries=['united states'], n_results=1)
today_date = datetime.utcnow().date()
recent_data = search_result.retrieve_recent_data()
try:
recent_data.loc[today_date.strftime("%Y-%m-%d")]
last_day = today_date - timedelta(days=1)
five_days_data = recent_data.tail(5)
four_days_data = five_days_data.head(4)
return calculate_nr_4(four_days_data, last_day)
except:
last_day = list(recent_data.tail(1).index)[0].to_pydatetime().date()
four_days_data = recent_data.tail(4)
return calculate_nr_4(four_days_data, last_day)
def calculate_nr_4(four_days_data, last_day):
four_days_data['Narrow'] = abs(
four_days_data['High'] - four_days_data['Low'])
lowest_narrow = four_days_data.nsmallest(1, 'Narrow')
lowest_date = list(lowest_narrow.index)[0].to_pydatetime().date()
is_equal_date = last_day == lowest_date
return is_equal_date
stock_list = ["AAPL", "MSFT", "AMZN", "GOOG", "GOOGL", "FB", "TSLA"]
today_watchlist = []
for s in stock_list:
if show_nr_4(s):
today_watchlist.append(s)
print(today_watchlist)
| d0d1df95200aba3817e2a141ebc3dbce8e69d354 | [
"Python",
"Text"
] | 2 | Text | prakashdivyy/nr4-nr7-experiment | acf0b6c46e8c2ec29565e190ca2ea82c799b8461 | fca777cc39adf0c727ff3b729e71cf9cb2bba319 |
refs/heads/master | <file_sep>import os
from flask import Flask
from flask import request
from flask import redirect
from flask import session
from flask import render_template
from models import db
from flask_wtf.csrf import CSRFProtect # cross-site request forgery
from forms import RegisterForm, LoginForm
from models import Fcuser
# create an object
app = Flask(__name__)
@app.route('/logout', methods=['GET'])
def logout():
session.pop('userid', None)
return redirect('/')
@app.route('/login', methods=['GET', 'POST'])
def login():
form = LoginForm()
if form.validate_on_submit():
session['userid'] = form.data.get('userid')
return redirect('/')
return render_template('login.html', form=form)
@app.route('/register', methods=['GET', 'POST'])
def register():
form = RegisterForm()
if form.validate_on_submit():
fcuser = Fcuser()
fcuser.userid = form.data.get('userid')
fcuser.username = form.data.get('username')
fcuser.password = form.data.get('password')
db.session.add(fcuser)
# Commmit is done automatically because of 'app.config['SQLALCHEMY_COMMIT_ON_TEARDOWN'] = True'
# Nonetheless, we explicitly commit again.
db.session.commit()
return redirect('/')
return render_template('register.html', form=form)
# We don't have to do check method
# if request.method == 'POST':
# We don't have to get data
# userid = request.form.get('userid')
# username = request.form.get('username')
# password = request.form.get('password')
# re_password = request.form.get('re-password')
# if (userid and username and password and re_password) and password == re_password:
# fcuser = Fcuser()
# fcuser.userid = form.data.get('userid')
# fcuser.username = form.data.get('username')
# fcuser.password = form.data.get('password')
# db.session.add(fcuser)
# Commmit is done automatically because of 'app.config['SQLALCHEMY_COMMIT_ON_TEARDOWN'] = True'
# Nonetheless, we explicitly commit again.
# db.session.commit()
# print('Success!')
# return redirect('/')
# return render_template('register.html', form=form)
# class Test(db.Model):
# __tablename__ = 'test_table'
# id = db.Column(db.Integer, primary_key=True)
# name = db.Column(db.String(32), unique=True)
# # create a dbfile
# db.create_all()
@app.route('/')
def hello():
userid = session.get('userid', None)
return render_template('hello.html', userid=userid)
basedir = os.path.abspath(os.path.dirname(__file__))
dbfile = os.path.join(basedir, 'db.sqlite')
# setting for alchemy
# ... = 'mysql:///' + id + password + address + the location this db is running
app.config['SQLALCHEMY_DATABASE_URI'] = 'sqlite:///' + dbfile
app.config['SQLALCHEMY_COMMIT_ON_TEARDOWN'] = True
app.config['SQLALCHEMY_TRACK_MODIFICATIONS'] = False
app.config['SECRET_KEY'] = '<KEY>'
csrf = CSRFProtect()
csrf.init_app(app)
db.init_app(app)
db.app = app
db.create_all()
# To execute app.py, we can use python(python app.py)
# instead of Flask instruction(FLASK=APP=app.py flask run)
if __name__ == "__main__":
app.run(host='127.0.0.1', port=5000, debug=True)
<file_sep>from flask_sqlalchemy import SQLAlchemy
# basedir = os.path.abspath(os.path.dirname(__file__))
# dbfile = os.path.join(basedir, 'db.sqlite')
# # setting for alchemy
# # ... = 'mysql:///' + id + password + address + the location this db is running
# app.config['SQLALCHEMY_DATABASE_URI'] = 'sqlite:///' + dbfile
# app.config['SQLALCHEMY_COMMIT_ON_TEARDOWN'] = True
# app.config['SQLALCHEMY_TRACK_MODIFICATIONS'] = False
db = SQLAlchemy()
class Fcuser(db.Model):
__tablename__ = 'fcuser'
id = db.Column(db.Integer, primary_key=True)
password = db.Column(db.String(64))
userid = db.Column(db.String(32))
username = db.Column(db.String(8))
<file_sep><h1>Flask Signup</h1>
Last Update: 2020/06/07
# Features
## Sign up
## Log in
## Log out
# Flask Signup was developed using
flask, Flask-SQLAlchemy, flask WTForms, bootstrap, python
# Flask Signup was developed by
heesunlee9 in December 2019.
# How to Start
1. pip install virtualenv
2. virtualenv [your virtual environment name] <br>
e.g. virtualenv venv
3. source [your virtual environment name]/bin/activate <br>
(on Windows: [your virtual environment name]/bin/activate.bat)
4. pip install flask <br>
pip install -U Flask-SQLAlchemy <br>
pip install Flask-WTF
5. python3 app.py (temporary) <br>
http://127.0.0.1:5000/ <br>
http://127.0.0.1:5000/register <br>
http://127.0.0.1:5000/login <br>
http://1192.168.3.11:5000/logout <br>
| a1ab3f1b62463dba44ac63af9edc4c70a6d675cb | [
"Markdown",
"Python"
] | 3 | Python | joyleecs/flask_signup | ffa4e9d2e0eae3c1f8ef5ec0743981864bee6a19 | f075be6def479499f3145403debe771aa8905ecd |
refs/heads/main | <repo_name>lutfisun/prek_partnership<file_sep>/README.md
# prek_partnership
Revenue and expenses calculator tool for centers in Greater Austin
<file_sep>/funding_tool_2021/text/filler_text.md
An identified challenge of successful implementation of Pre-K Partnerships is the recruitment and retainment of a qualified teacher in partnership classrooms. UWATX understands that every CDC has varying capacity for securing a teacher, so we want to provide options that meet your specific needs. CDCs may opt to recruit and employ their own teacher OR contract with UWATX to employ a qualified teacher for your center.
<file_sep>/Funding_Tool/text/revenues_intro.md
**Purpose of This Tool:** This tool was designed to help you consider ways to make Pre-K Partnerships financially feasible for your center.
**Pre-K Partnerships**: A Success by 6 / AISD Collaboration (PKP), operated by United Way for Greater Austin (UWATX), is the authorized non-profit organization selected by Austin ISD to manage and oversee Pre-K Partnerships with high quality child development centers (CDC) in the Austin early childhood community. CDCs meeting PKP program standards are invited to sign a partnership agreement with UWATX to provide Public Pre-K eligible children in their center with a 3-hour Pre-K program. Eligible children are co-enrolled at the CDC and Austin ISD and in turn, state funding is generated for every child co-enrolled at the center. CDCs receive a portion of generated funding through this partnership to maintain program standards and center-wide quality efforts.
UWATX is working to develop a suite of supports for all PKP centers. These supports are generally not paid for with state funding and will be available as philanthropic funding is secured. Benefits may include:
* Substitute teaching pool
* Mental Health Consultation services
* On-site professional development opportunities
* Shared services (such as business discounts, bulk discounts)
* Supports for infant/toddler classrooms (such as professional development opportunities)
* College loan forgiveness for PreK teachers
* Tuition reimbursement for graduate school for PreK teachers
* Classroom materials and supplies
* UWATX volunteer program supports
<file_sep>/funding_tool_2021/text/revenues_intro.md
**Purpose of This Tool:** This tool was designed to help child care centers in the greater Austin area understand their costs and revenues for 3- and/or 4-year-old classrooms when partnering with a school district or charter school to provide public school pre-K.
**Background:** Child care/pre-K partnerships are a priority of multiple state agencies, local leaders, and early childhood stakeholders across Texas. School districts can provide public school pre-K for eligible 3- and 4-year-olds at a private child care center, rather than on an elementary campus. Children are dually enrolled in public school pre-K and child care—the public school pre-K covers educational instruction while the subsidy or tuition covers wrap-around care (before and after school), all in the same location under the same teacher.
**Resources:** For an excel version of the statewide calculator and a webinar explaining how to use it, visit https://twc.texas.gov/programs/twc-prekindergarten-partnerships.
**Acknowledgements:** <NAME> was the original developer of the Austin calculator and created the code used as the foundation for this calculator.<file_sep>/Funding_Tool/tests/mytest.R
app <- ShinyDriver$new("../")
app$snapshotInit("mytest")
app$setInputs(leadhours1 = 40)
app$setInputs(subrate1 = 24)
app$setInputs(subhours1 = 420)
app$setInputs(supplies1 = 5500)
app$setInputs(sumsubhours1 = 0)
app$setInputs(overhead1 = 40000)
app$setInputs(fringerate = 42)
app$snapshotDownload("downloadggplot")
<file_sep>/funding_tool_2021/text/disclaimer.md
**Disclaimer:** Calculations made using this tool are not guaranteed by the Texas Workforce Commission or any of its affiliates. Calculations are estimates based on information entered by the user. The child care subsidy reimbursement rates used in this calculator can be found in Attachment 1 for WD Letter 25-20: https://www.twc.texas.gov/files/policy_letters/attachments/wd-25-20-att.1-wfed.pdf. Blended rates for 4-year-olds covered by public pre-k and subsidy are calculated based on the typical school year (205 days). Your actual reimbursement rate might vary. For more information on blended rates, see WD Letter 02-20: https://twc.texas.gov/files/policy_letters/02-20-twc.pdf.<file_sep>/funding_tool_2021/app.R
#
# Title: Budget Calculator for Pre-K Centers
# Author: <NAME> and <NAME>
# Date: July 21, 2021
#
# Acknowledgment: This calculator is based on code provided by <NAME> and
# its successor https://davidmc.shinyapps.io/prek-partnership-app/
#
###--- PREP WORKSPACE -------------------------------------------------------------------
## Load Packages
library(shiny)
library(tidyverse)
library(ggthemes)
library(shinyBS)
## Load Data
#--- UI---------------------------------------------------------------------------------
# Define UI for application that draws a histogram
ui <- fluidPage(
tags$head(HTML("<title>Pre-K Partnership Budget Calculator </title>")),
navbarPage(
# Without company logo
title = tags$a(href='https://www.unitedwayaustin.org/',
tags$img(src='UWA-Logo.png', height = "75", width = "275"), color="#fff"),
# Application title
tabPanel("Partnerships Overview",
div(class = "overview",
h1("How do Pre-K Partnerships Work?")),
hr(),
fluidRow(
div(class = "explainers",
column(width = 12,
includeMarkdown("text/revenues_intro.md"))))
),
# **Style elements ---------------------------------------
## Style and header elements
tabPanel(
title = "Calculator Tool",
div(class = "overview-2",
h1("How Your Center Would Work")),
id = "nav",
theme = "navbar-dark bg-dark",
responsive = TRUE,
collapsible = TRUE,
tags$head(
# Include our custom CSS
includeCSS("www/styles.css"),
tags$link(rel="stylesheet", href="https://use.fontawesome.com/releases/v5.1.0/css/all.css",
integrity="<KEY>",
crossorigin="anonymous")
),
br(),
br(),
fluidRow(
div(class = "explainers",
column(width = 12,
includeMarkdown("text/disclaimer.md")))),
br(),
br(),
## Sidebar for user selections
sidebarLayout(
sidebarPanel(
tags$head(tags$style(
type = 'text/css',
'form.well { max-height: 800px; padding-right: 30px; overflow-y: auto; }'
)),
# USER INPUTS ------------------------------------------------------------
# PRE TAB - GENERAL INFO -------------------------------------------------
# **Center name -----------------------------
# User input (not tied to our data at all)
textInput("centername",
label = h4("Name of Center"),
placeholder = "Enter A Name..."),
tabsetPanel(
# TAB 1 - REVENUES TAB ------------------------------------------------------------
tabPanel(h4("Annual Revenues"),
br(),
h4("Classroom Enrollment Information"),
## Classroom age
## Student composition by age & status
h4("Payment Sources"),
p("Enter the number of children in each category:"),
# questions to appear for blended 3- & 4-yo class
## subsidy only, 3yo
numericInput("subsidy_only3",
"Number of subsidy-only 3-year-old children:",
value = 0),
sliderInput("subsidyrate3",
"Daily subsidy rate per 3-year-old:",
min = 30,
max = 50,
step = 0.01,
pre="$",
post="/day",
value = 43.70),
## Pre-K pass, 3yo
numericInput("prek3",
"Number of 3-year-olds with Pre-K pass:",
value = 0),
sliderInput("prek3_rate",
"3-year-old Pre-K pass rate from district:",
min = 10,
max = 30,
step = 0.01,
pre="$",
post="/day",
value = 20),
## subsidy only, 4yo
numericInput("subsidy_only4",
"Number of subsidy-only 4-year-old children:",
value = 0),
sliderInput("subsidyrate4",
"Daily subsidy rate per 4-year-old:",
min = 30,
max = 50,
step = 0.01,
pre="$",
post="/day",
value = 35.29),
## Pre-K pass, 4yo
numericInput("prek4",
"Number of 4-year-olds with Pre-K pass:",
value = 0),
sliderInput("prek4_rate",
"4-year-old Pre-K pass rate from district:",
min = 10,
max = 30,
step = 0.01,
pre="$",
post="/day",
value = 20),
# questions to appear regardless of classroom age
# pre-K only (don't pay tuition)
numericInput("prekonly",
"Number of pre-K only children:",
value = 0),
# full-pay students
numericInput("enrollfullpay",
"Number of tuition-only children:",
value = 10),
# tuition rate
sliderInput("tuitionrate",
"Monthly tuition rate per child:",
min = 400,
max = 1500,
pre="$",
post="/mo",
value = 1100),
## Pass-through amount slider
sliderInput(inputId = "extra_slider",
label = "Extra funds including full day supplements per year",
min = 0,
max = 30000,
pre="$",
value = 15000),
## Hover-over definition labels for each field
bsTooltip("extra_slider", "Any amount of funding that your public school partner is passing through to you. It may be per child, per teacher, per classroom, per month, or per year. Make the calculation on your own for what you would receive for the entire year and enter it here",
"top"),
bsTooltip("subsidy_only3", "Those who are in the child care subsidy program, but NOT eligible for public school pre-K"),
bsTooltip("prek3", "Those who are in the child care subsidy program AND are eligible for public school pre-K"),
bsTooltip("subsidy_only4", "Those who are in the child care subsidy program, but NOT eligible for public school pre-K"),
bsTooltip("prek4", "Those who are in the child care subsidy program AND are eligible for public school pre-K"),
bsTooltip("prekonly", "Those children only eligible for public school pre-K; you are not receiving other payments for their care"),
bsTooltip("enrollfullpay", "Those who are not in the subsidy program and not eligible for pre-K; you only receive payment from tuition")
),
# TAB 2 - EXPENSES TAB ------------------------------------------------------------
tabPanel(h4("Annual Expenses"),
br(),
h4("Pre-K Lead Teacher"),
## Does the district or the center pay for the lead teacher?
checkboxInput("districtpayteacher",
label = "Check this box if the school district pays for the lead teacher",
value = FALSE),
## Conditional panel: appears if center pays for lead teacher (i.e., box not checked)
conditionalPanel("!input.districtpayteacher",
# lead teacher rate
sliderInput("leadrate1",
label=NULL,
min = 7.25,
max = 25,
step = .25,
pre = "Rate: $",
post = " / hr",
value = 23.5),
# lead teacher hours/week slider
sliderInput("leadhours1",
label=NULL,
min = 20,
max = 40,
post = " hrs/wk",
value = 30),
# lead teacher weeks/year slider
sliderInput("leadweeks1",
label=NULL,
min = 44,
max = 52,
post = " wks/yr",
value = 52),
# benefits + fringe
hr(),
h4("Benefits/Fringe Costs"),
sliderInput("fringerate",
label=NULL,
min = 0,
max = 42,
step = 1,
post = "%",
value = 25)
),
## Assistant Teacher
hr(),
h4("Assistant Teacher(s)"),
# number of assistants dropdown
selectInput("assistantselect",
label = "How many Assistants are there?",
choices = c("1 Assistant" = 1 , "2 Assistants" = 2)),
# assistant hourly rate slider
h4("Assistant 1"),
sliderInput("assistrate1",
label = NULL,
min = 7.25,
max = 25,
step = .25,
pre = "$",
post = "/hr",
value = 17.5),
# assistant hours/wk slider
sliderInput("assisthours1",
label = NULL,
min = 10,
max = 40,
post = " hrs/wk",
value = 30),
# assistant weeks/year slider
sliderInput("assistweeks1",
label = NULL,
min = 1,
max = 52,
post = " wks",
value = 30),
## Conditional panel: appears if "2 Assistants" is selected
conditionalPanel("input.assistantselect == '2'",
h4("Assistant 2"),
# assistant 2 hourly rate
sliderInput("assistrate2",
label = NULL,
min = 7.25,
max = 25,
step = .25,
pre = "$",
post = "/hr",
value = 15),
# assistant 2 hours per week
sliderInput("assisthours2",
label = NULL,
min = 1,
max = 40,
post = " hrs/wk",
value = 20),
# assistant 2 weeks per year
sliderInput("assistweeks2",
label = NULL,
min = 1,
max = 52,
post = " wks",
value = 30)),
## Substitute Teacher
hr(),
h4("Substitute Teacher"),
p("This Indicates the Hours of Substitute Coverage for Teacher PD and Paid Time-Off"),
# substitute hourly rate
sliderInput("subrate1",
label = NULL,
min = 7.25,
max = 25,
step = .25,
pre="$",
post="/hr",
value = 20),
# substitute hours/yr
sliderInput("subhours1",
label = NULL,
min = 265,
max = 420,
ticks = FALSE,
post = " hrs",
value = 265),
## Summer Teacher
hr(),
h4("Summer Teacher"),
# summer teacher hourly rate
sliderInput("sumsubrate1",
label=NULL,
min = 7.25,
max = 25,
step = .25,
pre = "$",
post = "/hr",
value = 20),
# summer teacher hours/yr
sliderInput("sumsubhours1",
label=NULL,
min = 0,
max = 500,
post = " hrs",
value = 200),
## Classroom Supplies
hr(),
h4("Classroom Supplies"),
# supplies $/yr
sliderInput("supplies1",
label = NULL,
min = 2500,
max = 5500,
step = 500,
pre = "$",
value = 3500),
## Food
hr(),
h4("Food Costs"),
# food cost/child/day
# only two options: $0 or $2
sliderInput("foodcost",
label = "If your school receives CACFP support, select $0/day/child",
min = 0,
max = 4,
step = 1,
pre = "$",
post = "/day/child",
value = 2),
## Overhead
hr(),
h4("Overhead Costs"),
# overhead $/yr
sliderInput("overhead1",
label=NULL,
min = 20000,
max = 40000,
step = 100,
pre = "$",
value = 30000))),
## Hover-over definition labels for each field
bsTooltip("sumsubrate1", "If the lead pre-K teacher is off in the summer and you need a replacement lead teacher"),
bsTooltip("supplies1", "Estimate your yearly cost for classroom supplies"),
bsTooltip("overhead1", "This includes items that must be paid regardless of how your business is doing (rent, utilities, maintenance, accounting, taxes, insurance, administrative staff, etc.). Estimate your overhead costs for this pre-K classroom only")
#bsTooltip("fringerate", "Add together the annual cost of all employee benefits and payroll taxes paid, and divide by the annual wages paid. This gives you a percentage you can input here")
),
## Display plot
mainPanel(
downloadButton('downloadggplot', "Download This Model"),
br(),
hr(),
plotOutput("mod1Plot", width = "100%", height = "800px")
)
)
)))
###--- SERVER---------------------------------------------------------------------------------
server <- function(input, output, session) {
# Reset hidden fields (i.e., from conditionals) to 0
###------ FUNCTION: CALCULATE REV/EX, MAKE PLOT -------###
output$mod1Plot <- renderPlot({
# Make a local variable that is all students
enrollees <- input$subsidy_only3 + input$prek3 +
input$subsidy_only4 + input$prek4 +
input$prekonly + input$enrollfullpay
# Local variables to group "both" vs single age group classes
subsidyonly3 <- input$subsidy_only3
prek3 <- input$prek3
subsidyrate3 <- input$subsidyrate3
prek3_rate <- input$prek3_rate
subsidyonly4 <- input$subsidy_only4
prek4 <- input$prek4
subsidyrate4 <- input$subsidyrate4
prek4_rate <- input$prek4_rate
# make a local variable- if districtpayteacher is selected, will remove teacher expense from formula
districtpay <- ifelse(input$districtpayteacher == TRUE, 0, 1)
leadhours <- ifelse(input$districtpayteacher == TRUE, 0, input$leadhours1)
leadrate <- ifelse(input$districtpayteacher == TRUE, 0, input$leadrate1)
leadweeks <- ifelse(input$districtpayteacher == TRUE, 0, input$leadweeks1)
## CONDITION: 1 Assistant
if (input$assistantselect == "1" ) {
# Make a local tibble including calculated values for revenue/expenses
mod1 <- tibble(
# EXPENSES - teacher salaries + supplies + overhead + student food + fringe benefits
Expenses = c(
(input$leadrate1 * input$leadhours1 * input$leadweeks1 * districtpay) + # Teacher Annual Salary (Rate*Hours*Weeks). = 0 if district pays
(input$assistrate1 * input$assisthours1 * input$assistweeks1) + # Assistant 1 Annual Salary (Rate*Hours*Weeks)
(input$subrate1 * input$subhours1) + # Substitute Teacher Wages (Rate*Hours)
(input$sumsubrate1 * input$sumsubhours1) + # Summer Substitute Wages (Rate*Hours)
input$supplies1 + # Supplies Costs (2500-5500)
input$overhead1 + # Overhead Costs (20K-40K)
(enrollees * input$foodcost * 262) + # Food Costs (Enrollment*DailyRate*262 days/year). daily rate = 0 if CACFP support, otherwise = 2
(input$leadrate1 * input$leadhours1 * input$leadweeks1 * (input$fringerate/100) * districtpay)), # Fringe Benefits for Teacher (= 0 if district pays)
# REVENUE - student tuition (full-pay and subsidy, subsidy pay dependent on student age/enrollment status)
Revenue =
c(
input$extra_slider + # Pass Through Amount
(input$enrollfullpay * input$tuitionrate * 12) + # Full-Pay Student Revenue: NumberFullPayStudents*MonthlyTuition*12
(subsidyonly3 * subsidyrate3 * 262) + # Subsidy only 3yo: NumberSubsidyOnly * PSFT daily rate * 262 days/yr
(subsidyonly4 * subsidyrate4 * 262) # Subsidy only 4yo: NumberSubsidyOnly * PSFT daily rate * 262 days/yr
)
)
mod1 <- mod1 %>% gather(variable, value, 1:2)
# MAKE PLOT
gg_mod1 <- mod1 %>% ggplot() +
geom_bar(aes(x = variable, y = value, fill = variable), stat= "identity",alpha = 0.95) +
geom_text(aes(x=variable, y=value, label=scales::dollar(value, accuracy=1)), nudge_y = -30000, size = 8, fontface="bold") +
theme_bw(base_size = 22) +
theme(plot.subtitle = element_text(size = 12)) +
coord_flip() +
scale_y_continuous(labels=scales::dollar_format(scale=.001, suffix = "k")) +
guides(fill=FALSE,color=FALSE)+
scale_fill_manual(values = c("#ff2700", "#008fd5")) +
labs(title= paste(input$centername),
y=NULL,
x=NULL,
# Plot subtitle reactively populated with user input
subtitle = paste("Scenario: ",input$modeltype,"\n",
"\n",
"GENERAL INFO:\n",
"Name of Center: ",input$centername, "\n",
"\n",
"ANNUAL REVENUES:\n",
"Total Number of Children Enrolled: " , enrollees , "\n",
"Subsidy-only 3-yos enrolled: ",subsidyonly3, " @ $",subsidyrate3,"/child/day\n",
"Subsidy-only 4-yos enrolled: ",subsidyonly4, " @ $",subsidyrate4,"/child/day\n",
"Pre-K + subsidy eligible 3-yos enrolled: ",prek3, " @ $",prek3_rate,"/child/day\n",
"Pre-K + subsidy eligible 4-yos enrolled: ",prek4, " @ $",prek4_rate,"/child/day\n",
"Pre-K only children enrolled: ",input$prekonly, " @ $0/day\n",
"Tuition-only children enrolled: ",input$enrollfullpay, " @ $",input$tuitionrate*12, "/child/year\n",
"Additional Funds: $",input$extra_slider, "/yr\n",
"\n",
"ANNUAL EXPENSES:\n",
"Pre-K lead teacher: $",leadrate, collapse=NULL,sep="","/hr | ",leadhours,"hrs/wk | ",leadweeks,"wks/yr\n",
"Assistant teacher: $",input$assistrate1,"/hr | ",input$assisthours1,"hrs/wk | ",input$assistweeks1,"wks/yr\n",
"Substitute teacher: $",input$subrate1, "/hr @ ",input$subhours1," hrs\n",
"Summer teacher: $",input$sumsubrate1,"/hr @ ",input$sumsubhours1," hrs\n",
"Classroom supplies: $",input$supplies1,"\n",
"Food costs: $",input$foodcost,"/child/day\n",
"Overhead: $",input$overhead1, "\n",
"Benefits + fringe: ",input$fringerate, "% for 1 FTE"))
ggsave("plot.pdf", gg_mod1, device = "pdf")
gg_mod1
## CONDITION: 2 Assistants
} else if (input$assistantselect == "2") {
mod2 <- tibble(
# EXPENSES - teacher salaries + supplies + overhead + student food + fringe benefits
Expenses = c(
(input$leadrate1 * input$leadhours1 * input$leadweeks1 * districtpay) + # Teacher Annual Salary (Rate*Hours*Weeks). = 0 if district pays
(input$assistrate1 * input$assisthours1 * input$assistweeks1) + # Assistant 1 Annual Salary (Rate*Hours*Weeks)
(input$assistrate2 * input$assisthours2 * input$assistweeks2) + # Assistant 1 Annual Salary (Rate*Hours*Weeks)
(input$subrate1 * input$subhours1) + # Substitute Teacher Wages (Rate*Hours)
(input$sumsubrate1 * input$sumsubhours1) + # Summer Substitute Wages (Rate*Hours)
input$supplies1 + # Supplies Costs (2500-5500)
input$overhead1 + # Overhead Costs (20K-40K)
(enrollees * input$foodcost * 205) + # Food Costs (Enrollment*DailyRate*205 days/year). daily rate = 0 if CACFP support, otherwise = 2
(input$leadrate1 * input$leadhours1 * input$leadweeks1 * (input$fringerate/100) * districtpay)), # Fringe Benefits for Teacher (= 0 if district pays)
# REVENUE - student tuition (full-pay and subsidy, subsidy pay dependent on student age/enrollment status)
Revenue =
c(
input$extra_slider + # Pass Through Amount
(input$enrollfullpay * input$tuitionrate * 12) + # Full-Pay Student Revenue: NumberFullPayStudents*MonthlyTuition*12
(subsidyonly3 * subsidyrate3 * 205) + # Subsidy only 3yo: NumberSubsidyOnly * PSFT daily rate * 205 days/yr
(prek3 * prek3_rate * 175) + # Prek subsidy eligible 3yo: NumberPrekSubsidyEligible * PSFT daily rate * 262 days/yr
(subsidyonly4 * subsidyrate4 * 205) + # Subsidy only 4yo: NumberSubsidyOnly * PSFT daily rate * 205 days/yr
(prek4 * prek4_rate * 175) # Prek subsidy eligible 3yo: NumberPrekSubsidyEligible * PSFT daily rate * 262 days/yr
)
)
mod2 <- mod2 %>% gather(variable, value, 1:2)
# MAKE PLOT
gg_mod2 <- mod2 %>% ggplot() +
geom_bar(aes(x=variable, y = value, fill = variable), stat= "identity",alpha = 0.95) +
geom_text(aes(x=variable, y=value, label=scales::dollar(value, accuracy=1)), nudge_y = -22000, size = 8, fontface="bold") +
theme_bw(base_size = 22) +
theme(plot.subtitle = element_text(size = 12)) +
coord_flip() +
scale_y_continuous(labels=scales::dollar_format(scale=.001, suffix = "k")) +
guides(fill=FALSE,color=FALSE)+
scale_fill_manual(values = c("#ff2700", "#008fd5")) +
labs(title= paste(input$centername),
y=NULL,
x=NULL,
# Plot subtitle reactively populated with user input
subtitle = paste("Scenario: ",input$modeltype,"\n",
"\n",
"GENERAL INFO:\n",
"Name of Center: ",input$centername, "\n",
"\n",
"ANNUAL REVENUES:\n",
"Total Number of Children Enrolled: " , enrollees , "\n",
"Subsidy-only 3-yos enrolled: ",subsidyonly3, " @ $",subsidyrate3,"/child/day\n",
"Subsidy-only 4-yos enrolled: ",subsidyonly4, " @ $",subsidyrate3,"/child/day\n",
#"Pre-K + subsidy eligible 3-yos enrolled: ",subsidyprek3, " @ $",subsidyrate3,"/child/day\n",
#"Pre-K + subsidy eligible 4-yos enrolled: ",subsidyprek4, " @ $",subsidyrate4,"/child/day (school year), $",subsidyrate3,"/child/day (summer)\n",
"Pre-K only children enrolled: ",input$prekonly, " @ $0/day\n",
"Tuition-only children enrolled: ",input$enrollfullpay, " @ $",input$tuitionrate*12, "/child/year\n",
"Pre-K pass-through amount: $",input$extra_slider, "/yr\n",
"\n",
"ANNUAL EXPENSES:\n",
"Pre-K lead teacher: $",leadrate, collapse=NULL,sep="","/hr | ",leadhours,"hrs/wk | ",leadweeks,"wks/yr\n",
"Assistant teacher 1: $",input$assistrate1,"/hr | ",input$assisthours1,"hrs/wk | ",input$assistweeks1,"wks/yr\n",
"Assistant teacher 2: $",input$assistrate2,"/hr | ",input$assisthours2,"hrs/wk | ",input$assistweeks2,"wks/yr\n",
"Substitute teacher: $",input$subrate1, "/hr @ ",input$subhours1," hrs\n",
"Summer teacher: $",input$sumsubrate1,"/hr @ ",input$sumsubhours1," hrs\n",
"Classroom supplies: $",input$supplies1,"\n",
"Food costs: $",input$foodcost,"/child/day\n",
"Overhead: $",input$overhead1, "\n",
"Benefits + fringe: ",input$fringerate, "% for 1 FTE"))
ggsave("plot.pdf", gg_mod2, device = "pdf")
gg_mod2
}
})
# Make plot a pdf for download
output$downloadggplot <- downloadHandler(
filename = function() {
"plot.pdf"
},
content = function(file) {
file.copy("plot.pdf", file, overwrite=TRUE)
}
)
}
# Run the application
shinyApp(ui = ui, server = server)<file_sep>/Funding_Tool/text/option2.md
* CDC will receive 80% of state funding for co-enrolled students
* UWATX will work with CDC to determine preferences and needs (scheduling, hours per week, weeks per year, teacher philosophy)
* CDC will enter into a contract for a minimum of 1 school year (i.e. nine months) for a teacher at an agreed upon rate of pay (between $20 - $25 hour). This contract will stay in place regardless of the enrollment in the classroom.
* UWATX will manage job postings, marketing, recruitment fairs, pre-screenings, and will coordinate group and individual interviews with CDC Directors or CDC hiring managers
* UWATX will provide full medical insurance and other basic benefits for teachers scheduled for more than 30 hours/week, and will pay for a minimum of 6 holidays for all teachers.
* UWATX will contribute to the Teacher Retirement System for the PreK teacher. The CDC does not have to provide this for other classroom teachers.
* CDC Director or Manager will provide on-going supervision to the PreK teacher with constructive feedback and pro-active discipline, if needed.
* CDC Director or Manager will complete a performance evaluation at least once annually and share the results with employee. Provide UWATX with a copy of the evaluation.
* CDC Director or Manager and PreK teacher must respond to UWATX communications in a timely way with requested information and attend required meetings.
* PreK teacher will be integrated into the school culture, including all staff meetings and communications.
<file_sep>/Funding_Tool/text/option1.md
* Centers will receive 80% of the generated state funding for co-enrolled students
* Teacher must meet the PreK teacher requirements as detailed by UWATX
* Provide to UWATX documentation of a cleared background check and teacher qualifications
* Provide a competitive salary and positive work environment:]
* If the CDC provides fully paid health insurance, the minimum salary will be $18/hour
* If the CDC does NOT provide health insurance, the minimum salary will be $20/hour
* Provide 80 hours of release time for required pre-service training in August 2019 (paid for by UWATX)
* Provide at least 2.5 hours of paid planning time weekly
* Provide at least 24 hours per school year of additional paid release time for professional development in year 1 and up to 30 hours in subsequent years.
* Provide at least 4 paid holidays
* If the teacher works more than 180 days per year, provide at least 5 paid vacation days during the summer
* Contribute to the Teacher Retirement System for any employee in the partnership classroom if the employee chooses to opt in. (typically, around 10.5% of salary) This is a requirement of TEA
* Provide on-going supervision with constructive feedback and pro-active discipline, if needed.
* Complete a performance evaluation at least once annually and share the results with employee. Provide UWATX with a copy of the evaluation.
| 352764951b60cc85baab7dbe03b175eff8b282a3 | [
"Markdown",
"R"
] | 9 | Markdown | lutfisun/prek_partnership | 7f9e30b6d7ee7b2a648183071b09cf9fdda61d95 | 8bb889a58e983148dcad2eb3911ce8376bdd7fc5 |
refs/heads/master | <file_sep># MyBank
<p>Projeto MyBank para estudo da plataforma Java.</p>
<p>Pré-requesitos:</p>
<ul>
<li>Java 1.8 ou mais recente</li>
<li>Eclipse Java EE</li>
</ul>
<p>Este projeto tem como objetivo aprender sobre as boas práticas de POO (Programação Orientada a Objetos), usar o Git como sistema de controle de versão e desenvolver a lógica de programação.</p>
<p>Sobre as Tags do projeto, vale dizer que devem seguir o seguinte padrão de Tags:</p>
<ul>
<li>Primeira Seção: Versão do Sistema</li>
<li>Segunda Seção: Implementação de pequenas funcionalidades</li>
<li>Terceira Seção: Refatoração ou correção de bugs no codigo</li>
</ul>
<p>Exemplos de Tags:</p>
<ul>
<li>v1.0.0 - Sistema Desenvolvido com uma nova interface</li>
<li>v2.2.0 - Criada a função de transferência</li>
<li>v3.1.5 - Correção no código que fazia a validação de usuário</li>
</ul>
<p>Mensagens anexadas ao commit devem ser sempre curtas e objetivas, dizendo em poucas palavras o que foi feito naquele commit.</p>
<p>Ex: "Implementado nova tela de cadastro."</p>
<p>Ex: "Correção de bug na criação da conta."</p><file_sep>package br.com.mybank.tests;
import br.com.mybank.Cliente;
public class TestaCliente {
public static void main(String[] args) {
Cliente cliente = new Cliente();
cliente.cadastraCliente("<NAME>", "12345678910");
System.out.println(cliente);
}
}
<file_sep>package br.com.mybank;
public class ContaCorrente extends Conta{
Conta conta = new Conta();
@Override // Reescrevendo o metodo cliente
public double saca(double valor) {
if (conta.saca(valor) > 0){
System.out.println("Saque realizado com sucesso!");
}
return this.saldo -= (valor + 0.02);
}
}
<file_sep>package br.com.mybank.tests;
import br.com.mybank.Cliente;
import br.com.mybank.ContaInvestimento;
public class TestaContaInvestimento {
public static void main(String[] args) {
Cliente cliente = new Cliente(); // instancia objeto cliente
ContaInvestimento ci = new ContaInvestimento(); // instancia objeto ci
// cadastra cliente
cliente.cadastraCliente("Ariane", "00000000191");
System.out.println("Cliente - " + cliente);
// Deposita na conta e realiza consulta chamando o objeto CC
ci.deposita(100);
System.out.println("Deposito realizado com sucesso! Seu saldo �: " + ci.consulta(0001));
}
}
<file_sep>package br.com.mybank.tests;
import br.com.mybank.Cliente;
import br.com.mybank.ContaCorrente;
public class TestaCC{
public static void main(String[] args) {
Cliente cliente = new Cliente(); // instancia objeto cliente
ContaCorrente cc = new ContaCorrente(); // instancia objeto cc
// cadastra cliente
cliente.cadastraCliente("Ariane", "00000000191");
System.out.println("Cliente - " + cliente);
// Deposita na conta e realiza consulta chamando o objeto CC
cc.deposita(100);
System.out.println("Deposito realizado com sucesso! Seu saldo �: " + cc.consulta(0001));
// Realiza saque na CONTA CORRENTE
cc.saca(50);
System.out.println("Saque realizado com sucesso! Seu saldo �: " + cc.consulta(0001));
}
}
<file_sep>package br.com.mybank;
public class Cliente {
private String nome;
private String cpf;
private String email;
//Criar o medoto que cadastrar um clientes
//Reescrevendo
@Override
public String toString() {
return "Nome: " + nome + " CPF: " + cpf;
}
public Cliente(String nome, String cpf, String email) {
super();
this.nome = nome;
this.cpf = cpf;
this.email = email;
}
}
<file_sep>package br.com.mybank;
public class Funcionario {
protected int idFuncionario;
protected String nome;
protected double salario;
public void cadastraFuncionario(String nome, int idFuncionario, double salario) {
this.idFuncionario = idFuncionario;
this.nome = nome;
this.salario = salario;
}
@Override
public String toString() {
return "Nome: " + this.nome + " - Matricula: " + this.idFuncionario + " - Salario: " + this.salario;
}
}
| 01156f9414cab166398de643709349f21656fc54 | [
"Markdown",
"Java"
] | 7 | Markdown | ariane011/mybank | ec6b9652279955080c9b82f73321b6b62a6f7a68 | 0e1d6389452bdb452a28b143403159b9c455cd91 |
refs/heads/master | <file_sep><?php
namespace Zebooka\Resizer;
/**
* @property string $SourceFile
* @property string $FileName
* @property string $FileModifyDate
* @property string $MIMEType
* @property string $Make
* @property string $Model
* @property string $DateTimeOriginal
* @property string $CreateDate
* @property string $ModifyDate
* @property string $GPSDateTime
* @property string $CreationDate
* @property string $TrackCreateDate
* @property string $MediaCreateDate
* @property string $Software
* @property string $ImageWidth
* @property string $ImageHeight
*/
class Exif
{
public function __construct($filename)
{
if (!is_file($filename) || !is_readable($filename)) {
throw new \InvalidArgumentException('File \'' . $filename . '\' not found or is not readable.');
}
$output = array();
$code = 0;
// -d "%Y-%m-%d %H:%M:%S %z" - we no longer use this format because it will output current timezone
// if date does not have one. But we need to distinguish between local tz and no tz.
exec('exiftool -j -d "%Y-%m-%d %H:%M:%S %z" -fast ' . escapeshellarg($filename), $output, $code);
if ($code) {
throw new \RuntimeException('ExifTool failed with code #' . $code . '.');
}
// replace invalid UTF-8 symbols
$data = json_decode(
preg_replace(
'/[\x00-\x08\x10\x0B\x0C\x0E-\x19\x7F]|[\x00-\x7F][\x80-\xBF]+' .
'|([\xC0\xC1]|[\xF0-\xFF])[\x80-\xBF]*|[\xC2-\xDF]((?![\x80-\xBF])|[\x80-\xBF]{2,})' .
'|[\xE0-\xEF](([\x80-\xBF](?![\x80-\xBF]))|(?![\x80-\xBF]{2})|[\x80-\xBF]{3,})/S',
'',
implode(PHP_EOL, $output)
),
true
);
if (null === $data) {
throw new \UnexpectedValueException('Unable to decode ExifTool json output.');
}
$exif = reset($data);
foreach ($exif as $property => $value) {
$this->{$property} = $value;
}
}
/**
* Magic getter for not set properties. Always returns null.
* @param $property
* @return null
*/
public function __get($property)
{
return null;
}
}
<file_sep><?php
// setup errors handling
error_reporting(-1);
set_error_handler(
function ($errno, $errstr, $errfile, $errline) {
throw new \ErrorException($errstr, $errno, 0, $errfile, $errline);
}
);
set_exception_handler(
function (\Throwable $e) {
if (isset($GLOBALS['logger']) && $GLOBALS['logger'] instanceof \Monolog\Logger) {
$GLOBALS['logger']->addCritical($e);
} else {
error_log($e);
}
exit(1);
}
);
mb_internal_encoding('UTF-8');
// autoloader
require_once dirname(__DIR__) . '/vendor/autoload.php';
// read configure
$configure = new \Zebooka\Resizer\Configure($_SERVER['argv']);
// setup logger
$logger = \Zebooka\Resizer\LoggerFactory::logger($configure);
// get locale
$locale = 'en';
foreach ([LC_ALL, LC_COLLATE, LC_CTYPE, LC_MESSAGES] as $lc) {
if (preg_match('/^([a-z]{2})(_|$)/i', setlocale($lc, 0))) {
$locale = setlocale($lc, 0);
break;
}
}
setlocale(LC_ALL, $locale);
// translations
$translator = \Zebooka\Translator\TranslatorFactory::translator(__DIR__ . '/../res', $locale);
$version = trim(file_get_contents(__DIR__ . '/../res/VERSION'));
$logger->addInfo($translator->translate('appName', array(VERSION, $version)));
$logger->addInfo($translator->translate('copyrightInfo'));
$view = new \Zebooka\Resizer\ConfigureView($configure, $translator, \Zebooka\Utils\Cli\Size::getTerminalWidth() ? : 80);
if ($configure->help || 1 === count($_SERVER['argv'])) {
$logger->addInfo($view->render());
exit(0);
} else {
$logger->addInfo($view->renderConfiguration());
}
// processing
//$processor = new \Zebooka\PD\Processor(
// $configure,
// new \Zebooka\PD\Tokenizer($configure, new \Zebooka\PD\ExifAnalyzer($configure)),
// new \Zebooka\PD\Assembler($configure, new \Zebooka\PD\Hashinator()),
// new \Zebooka\PD\Executor(),
// $logger,
// $translator
//);
$i = 0;
//foreach (new \Zebooka\PD\ScannerIterator($configure->from, $configure->recursive) as $photoBunch) {
// $processor->process($photoBunch);
// $i++;
// if ($configure->limit && $i >= $configure->limit) {
// $logger->addInfo($translator->translate('processedPhotosLimitWasReached', array($configure->limit)));
// break;
// }
//}
$logger->addInfo($translator->translate('xFilesProcessed', array($i)));
$logger->addInfo(
$translator->translate(
'xBytesProcessed',
array(\Zebooka\Utils\Size::humanReadableSize(12345))
)
);
$logger->addInfo(
$translator->translate(
'peakMemoryUsage',
array(\Zebooka\Utils\Size::humanReadableSize(memory_get_peak_usage(true)))
)
);
<file_sep>README
======
Ultimate yet another images resizer.
Author
------
* "<NAME>" <<EMAIL>> — http://zebooka.com
Installation
------------
Run `make` to build phar package.
Add `build/resizer-s1000.phar` to directory within your executable path.
For example, add it to `/usr/local/bin/` directory.
Set executable flag — `chmod +x resizer-s1000.phar`.
Requirements
------------
You need `composer` to build images resizer tool.
You need to install `convert` (Image Magick) as well. This program is actually used to resize images.
Usage
-----
`resizer-s1000.phar -t PATH [options] FROM_PATH [ FROM_PATH ... ]`
Run `resizer-s1000.phar -h` to get full options list.
License
-------
Standard MIT License — http://opensource.org/licenses/MIT
http://zebooka.com/soft/LICENSE/
Copyright (c) 2014, <NAME>.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
<file_sep>
all: hooks imagick exiftool composer test install try
hooks:
test ! -d .git || cp .git-pre-commit .git/hooks/pre-commit && chmod +x .git/hooks/pre-commit
imagick:
convert -version
exiftool:
exiftool -ver && \
exiftool -ver | xargs php -r 'exit(intval(version_compare($$_SERVER["argv"][1], "9.33") < 0));'
composer:
composer -v install --no-dev && \
COMPOSER_VENDOR_DIR="vendor-dev" composer -v install
test:
./tests/run.sh
install:
./build-phar.php
try:
./build/resizer-s1000.phar -h
<file_sep><?php
namespace Zebooka\Resizer;
use PHPUnit\Framework\TestCase;
class ExifTest extends TestCase
{
private function resourceDirectory()
{
return __DIR__ . '/../../../res/exif';
}
public function test_not_existing_file()
{
$filename = $this->resourceDirectory() . '/not-existing.jpg';
$this->expectExceptionObject(new \InvalidArgumentException('File \'' . $filename . '\' not found or is not readable.'));
new Exif($filename);
}
public function test_failing_exiftool()
{
$filename = $this->resourceDirectory() . '/bad.jpg';
$this->expectExceptionObject(new \RuntimeException('ExifTool failed with code #1.'));
new Exif($filename);
}
public function test_exif_read()
{
$filename = $this->resourceDirectory() . '/cubie.jpg';
$exif = new Exif($filename);
$this->assertObjectHasAttribute('SourceFile', $exif);
$this->assertObjectHasAttribute('FileName', $exif);
$this->assertObjectHasAttribute('FileModifyDate', $exif);
$this->assertObjectHasAttribute('MIMEType', $exif);
$this->assertObjectHasAttribute('Make', $exif);
$this->assertObjectHasAttribute('Model', $exif);
$this->assertObjectHasAttribute('DateTimeOriginal', $exif);
$this->assertObjectHasAttribute('Software', $exif);
$this->assertEquals(date('Y-m-d H:i:s O', strtotime('2012-12-21 16:16:37')), $exif->DateTimeOriginal);
}
}
<file_sep><?php
namespace Zebooka\Resizer;
use PHPUnit\Framework\TestCase;
class ConfigureTest extends TestCase
{
public function test_has_parameters_with_required_values()
{
$this->assertEquals(
array(
Configure::P_VERBOSE_LEVEL,
Configure::P_LOG_FILE,
Configure::P_LOG_LEVEL,
Configure::P_LIMIT,
Configure::P_FROM,
Configure::P_TO,
),
Configure::parametersRequiringValues()
);
}
public function test_has_parameters_usable_multiple_times()
{
$this->assertEquals(
array(
Configure::P_FROM,
),
Configure::parametersUsableMultipleTimes()
);
}
public function test_configure()
{
$configure = new Configure($this->argv());
$this->assertEquals('/example/bin', $configure->executableName);
$this->assertTrue($configure->help);
$this->assertEquals(123, $configure->verboseLevel);
$this->assertTrue($configure->simulate);
$this->assertEquals(42, $configure->limit);
$this->assertFalse($configure->recursive);
$this->assertEquals(array('/path/1', '/path/2', '/path/3'), $configure->from);
$this->assertEquals('/path/dst', $configure->to);
$this->assertEquals('/tmp/example.log', $configure->logFile);
$this->assertEquals(321, $configure->logLevel);
}
public function test_empty_configure()
{
$configure = new Configure(array());
$this->assertNull($configure->executableName);
$this->assertFalse($configure->help);
$this->assertEquals(100, $configure->verboseLevel);
$this->assertFalse($configure->simulate);
$this->assertEquals(0, $configure->limit);
$this->assertTrue($configure->recursive);
$this->assertEquals(array(), $configure->from);
$this->assertEquals(null, $configure->to);
$this->assertNull($configure->logFile);
$this->assertEquals(250, $configure->logLevel);
}
private function argv()
{
return array(
'/example/bin',
'-h',
'-E',
'123',
'-s',
'-l',
'42',
'-R',
'-f',
'/path/1',
'-f',
'/path/2',
'/path/3',
'-t',
'/path/dst',
'-D',
'-c',
'-Z',
'-o',
'/tmp/example.log',
'-O',
'321',
);
}
}
<file_sep><?php
namespace Zebooka\Resizer;
use Zebooka\Utils\Cli\Parameters;
/**
* @property bool $help
* @property bool $verboseLevel
* @property null|string $logFile
* @property int $logLevel
* @property bool $simulate
* @property int $limit
* @property bool $recursive
* @property array $from
* @property string $to
* @property null|string $executableName
*/
class Configure
{
const PATHS_FROM_STDIN = '-';
const P_HELP = 'h';
const P_VERBOSE_LEVEL = 'E';
const P_LOG_FILE = 'o';
const P_LOG_LEVEL = 'O';
const P_SIMULATE = 's';
const P_SAVE_COMMANDS_FILE = 'S';
const P_LIMIT = 'l';
const P_NO_RECURSIVE = 'R';
const P_FROM = 'f';
const P_TO = 't';
public $help = false;
public $verboseLevel = 100;
public $logFile = null;
public $logLevel = 250;
public $simulate = false;
public $saveCommandsFile = null;
public $limit = 0;
public $recursive = true;
public $from = array();
public $to;
public $executableName;
public function __construct(array $argv)
{
$argv = $this->decodeArgv($argv);
$this->help = !empty($argv->{self::P_HELP});
$this->verboseLevel = (array_key_exists(self::P_VERBOSE_LEVEL, $argv) ? intval($argv->{self::P_VERBOSE_LEVEL}) : $this->verboseLevel);
$this->logFile = (array_key_exists(self::P_LOG_FILE, $argv) ? strval($argv->{self::P_LOG_FILE}) : $this->logFile);
$this->logLevel = (array_key_exists(self::P_LOG_LEVEL, $argv) ? intval($argv->{self::P_LOG_LEVEL}) : $this->logLevel);
$this->simulate = !empty($argv->{self::P_SIMULATE});
$this->saveCommandsFile = (array_key_exists(self::P_SAVE_COMMANDS_FILE, $argv)
? strval($argv->{self::P_SAVE_COMMANDS_FILE})
: sys_get_temp_dir() . '/resizer-s1000-' . date('Ymd-His-') . substr(base64_encode(md5(time() . rand(0, 1000000000))), 0, 7) . '.log');
$this->limit = (array_key_exists(self::P_LIMIT, $argv) ? intval($argv->{self::P_LIMIT}) : $this->limit);
$this->recursive = empty($argv->{self::P_NO_RECURSIVE});
$this->from = (array_key_exists(self::P_FROM, $argv) ? $argv->{self::P_FROM} : $this->from);
$this->to = (array_key_exists(self::P_TO, $argv) ? strval($argv->{self::P_TO}) : $this->to);
$this->from = array_unique(array_merge($this->from, array_slice($argv->positionedParameters(), 1)));
$positionedParameters = $argv->positionedParameters();
$this->executableName = (isset($positionedParameters[0]) ? $positionedParameters[0] : null);
}
private function splitSpaceSeparated(array $values)
{
$splitted = array();
foreach ($values as $value) {
$splitted = array_merge($splitted, preg_split('/[\\s,]+/', $value));
}
return array_unique($splitted);
}
private function decodeArgv(array $argv)
{
return Parameters::createFromArgv(
$argv,
self::parametersRequiringValues(),
self::parametersUsableMultipleTimes()
);
}
public function argv()
{
$parameters = new Parameters($this->encodeParameters());
return $parameters->argv(
self::parametersRequiringValues(),
self::parametersUsableMultipleTimes()
);
}
private function encodeParameters()
{
return array(
0 => $this->executableName,
self::P_HELP => $this->help,
self::P_VERBOSE_LEVEL => $this->verboseLevel,
self::P_LOG_FILE => $this->logFile,
self::P_LOG_LEVEL => $this->logLevel,
self::P_SIMULATE => $this->simulate,
self::P_LIMIT => $this->limit,
self::P_NO_RECURSIVE => !$this->recursive,
self::P_FROM => $this->from,
self::P_TO => $this->to,
);
}
public static function parametersRequiringValues()
{
return array(
self::P_VERBOSE_LEVEL,
self::P_LOG_FILE,
self::P_LOG_LEVEL,
self::P_LIMIT,
self::P_FROM,
self::P_TO,
);
}
public static function parametersUsableMultipleTimes()
{
return array(
self::P_FROM,
);
}
}
| c57d671f7fa081a3253c38cd4959463a9e343343 | [
"Markdown",
"Makefile",
"PHP"
] | 7 | PHP | zebooka/resizer-s1000 | 041e4d8bc0f25d40863f755041c95c52a9b7335f | c5c89d1e3624afed7392cbbce7b465f71ab1dffa |
refs/heads/master | <repo_name>aarontcao/c_cpp_stuff<file_sep>/C++/avlbst/CompareTrees.cpp
/**
* Performs insertions and searches, using the same data set,on a binary search
* tree and an AVL tree to compare the empirically compare the performance of
* these operations on the trees.
* @author <NAME>
* @SEE AVLTree.cpp,BSTree.cpp, WordStat.h
* Course: CS3102.01
* Programming Project #: 2
* @since 03-15-2017
*/
#include <iostream>
#include <cstdlib>
#include <stdexcept>
#include <iomanip>
#include <fstream>
#include "AVLTree.cpp"
#include "BSTree.cpp"
#include "WordStat.h"
using namespace std;
/**
* Converts the specified string to uppercase
* @param w a string
* @return the uppercase version of the specified string
*/
string toUpper(string w)
{
int i;
for (i=0; i<=w.length(); i++)
w[i] = toupper(w[i]);
return w;
}
//Define additional auxiliary/helper functions for the main, if any, here
void traversePrint(const WordStat& word)
{
cout << word.getWord() << setw(5) << word.getCount() << endl;
}
int main(int argc, char *argv[])
{
if (argc != 2)
return 0;
AVLTree<WordStat> AyyVeeEl;
BSTree<WordStat> Binary;
fstream in;
in.open(argv[1]);
if (in.fail())
{
cerr << "Error opening" << argv[1] << endl;
exit(1);
}
string line;
while(in >> line)
{
line = toUpper(line);
if(Binary.inTree(WordStat(line, 1)))
{
int count = Binary.retrieve(WordStat(line, 1)).getCount();
Binary.remove(WordStat(line, 1));
Binary.insert(WordStat(line, counter +1));
AyyVeeEl.remove(WordStat(line, 1));
AyyVeeEl.insert(WordStat(line, counter+1));
}
else
{
Binary.insert(WordStat(line, 1));
AyyVeeEl.insert(WordStat(line, 1));
}
}
in.close();
cout << "Table 1:Binary Search Tree [" << argv[1] << "]" << endl;
cout << "In-order Traversal" << endl;
cout << "===================================" << endl;
cout << "Word Frequency" << endl;
cout << "-----------------------------------" << endl;
Binary.traverse(traversePrint);
cout << "-----------------------------------" << endl << endl;
cout << "Table 2:AVL Tree [" << argv[1] << "]" << endl;
cout << "In-order Traversal" << endl;
cout << "===================================" << endl;
cout << "Word Frequency" << endl;
cout << "-----------------------------------" << endl;
AyyVeeEl.traverse(traversePrint);
cout << "-----------------------------------" << endl << endl;
cout << "Table 3:Binary Search Tree [" << argv[1] << "]" << endl;
cout << "Level-order Traversal" << endl;
cout << "===================================" << endl;
cout << "Word Frequency" << endl;
cout << "-----------------------------------" << endl;
Binary.levelTraverse(traversePrint);
cout << "-----------------------------------" << endl << endl;
cout << "Table 4:AVL Tree [" << argv[1] << "]" << endl;
cout << "Level-order Traversal" << endl;
cout << "===================================" << endl;
cout << "Word Frequency" << endl;
cout << "-----------------------------------" << endl;
AyyVeeEl.levelTraverse(traversePrint);
cout << "-----------------------------------" << endl << endl;
cout << "Table 5:Number of Nodes vs Height" << endl;
cout << "Using Data in ["<<argv[1]<<"]" << endl;
cout << "===================================" << endl;
cout << "Tree #Nodes Height" << endl;
cout << "-----------------------------------" << endl;
cout << "BST" << setw(7) << Binary.size() << setw(5) << Binary.height() << endl;
cout << "AVL" << setw(7) << AyyVeeEl.size() << setw(5) << AyyVeeEl.height() << endl;
cout << "-----------------------------------" << endl << endl;
cout << "Table 6:Total Number of Nodes Accessed" << endl;
cout << "Searching For all Words in [" << argv[1] << "]" << endl;
cout << "==============================================" << endl;
cout << "Tree # Nodes " << endl;
cout << "----------------------------------------------" << endl;
fstream myFile;
myFile.open(argv[1]);
int BinaryCount = 0;
int AyyVeeElCount = 0;
while(file >> line)
{
line = toUpper(line);
BinaryCount += Binary.depth(WordStat(line, 1)) + 1;
AyyVeeElCount += AyyVeeEl.depth(WordStat(line, 1)) + 1;
}
myFile.close();
cout << "BST"<< setw(17) << BinaryCount << endl;
cout << "AVL"<< setw(17) << AyyVeeElCount << endl;
cout << "----------------------------------------------" << endl << endl;
return 0;
}
<file_sep>/C/lab9/create.c
#include <stdio.h>
#include <stdlib.h>
int **allocMatrix(int row, int col)
{
int i;
int **array;
array=malloc(sizeof(int *) *row);
for (i=0; i<row; i++)
{
array[i]=malloc(sizeof(int) *col);
}
return array;
}
void initMatrix(int **array, int row, int col)
{
int i, j;
FILE* f = fopen("Data1", "r");
for (i=0; i<row; i++)
{
for (j=0; j<col; j++)
{
fscanf(f, "%d", &array[i][j]);
}
}
fclose(f);
return;
}
void printMatrix(int **array, int row, int col)
{
int i, j;
for (i=0; i<row; i++)
{
for (j=0; j<col; j++)
{
printf("%d ", array[i][j]);
}
printf("\n");
}
return;
}
int addMatrix(int **array, int row, int col)
{
int i, j, sum=0;
for (i=0; i<row; i++)
{
for (j=0; j<col; j++)
{
sum+=array[i][j];
}
}
return sum;
}
int main(int argc, char *argv[])
{
int **arr;
int row=atoi(argv[1]);
int col=atoi(argv[2]);
arr=allocMatrix(row, col);
initMatrix(arr, row, col);
printf("Array size = %d rows and %d columns, the sum of all the elements in the array is %d\n", row, col, addMatrix(arr, row, col));
return 0;
}<file_sep>/QuantNetCpp/Level 1/Section 1.5/Exercise 3/Print.c
/*
C code for HW1, Section 1.5, Exercise 3
*/
// Preprocessor for include files
#include <stdio.h> // C style I/O
#include "Print.h" // Print method, Main.c and Print.c must be compiled together
void print(int i)
{
i *= 2;
printf("%d\n", i);
return;
}<file_sep>/C/lab3/song.c
#include <stdio.h>
void day01(void)
{
printf("a partridge in a pear tree.\n");
return;
}
void day02(void)
{
printf("two turtle doves, and ");
day01();
return;
}
void day03(void)
{
printf("three French hens, ");
day02();
return;
}
void day04(void)
{
printf("four calling birds, ");
day03();
return;
}
void day05(void)
{
printf("FIVE GOLDEN RINGS, ");;
day04();
return;
}
void day06(void)
{
printf("six geese a-laying, ");
day05();
return;
}
void day07(void)
{
printf("seven swans a-swimming, ");
day06();
return;
}
void day08(void)
{
printf("eight maids a-milking, ");
day07();
return;
}
void day09(void)
{
printf("nine ladies dancing, ");
day08();
return;
}
void day10(void)
{
printf("ten lords a-leaping, ");
day09();
return;
}
void day11(void)
{
printf("eleven pipers piping, ");
day10();
return;
}
void day12(void)
{
printf("twelve drummers drumming, ");
day11();
return;
}
int main( ) {
printf("\nOn the first day of Christmas, my true love gave to me\n");
day01();
printf("\nOn the second day of Christmas, my true love gave to me\n");
day02();
printf("\nOn the third day of Christmas, my true love gave to me\n");
day03();
printf("\nOn the fourth day of Christmas, my true love gave to me\n");
day04();
printf("\nOn the fifth day of Christmas, my true love gave to me\n");
day05();
printf("\nOn the sixth day of Christmas, my true love gave to me\n");
day06();
printf("\nOn the seventh day of Christmas, my true love gave to me\n");
day07();
printf("\nOn the eighth day of Christmas, my true love gave to me\n");
day08();
printf("\nOn the nineth day of Christmas, my true love gave to me\n");
day09();
printf("\nOn the tenth day of Christmas, my true love gave to me\n");
day10();
printf("\nOn the eleventh day of Christmas, my true love gave to me\n");
day11();
printf("\nOn the twelfth day of Christmas, my true love gave to me\n");
day12();
return 0;
}<file_sep>/QuantNetCpp/Level 5/Section 3.6/3.6.2/OutOfBoundsException.hpp
/*
Header file for HW5, Section 3.6, Exercise 2
*/
#ifndef OutOfBoundsException_HPP
#define OutOfBoundsException_HPP
// include header and source file
#include "ArrayException.hpp"
// include for cin/cout
#include <iostream>
#include <sstream>
using namespace std;
class OutOfBoundsException : public ArrayException
{
private:
int idx;
public:
// Default constructor
OutOfBoundsException() : ArrayException()
{
}
// Constructor with index argument
OutOfBoundsException(int index) : ArrayException()
{
idx = index;
}
// Destructor
virtual ~OutOfBoundsException()
{
}
// Error message
string GetMessage()
{
stringstream messageStream;
messageStream << "Index: " << idx << " out of bounds!";
return messageStream.str();
}
};
#endif<file_sep>/QuantNetCpp/Level 5/Section 3.5/3.5.4/Line.cpp
/*
C++ code for HW5, Section 3.5, Exercise 4
*/
// include header and source file
#include "Line.hpp"
#include "Point.hpp"
// incluse for ostream
#include <sstream>
// Default constructor
Line::Line(): Shape()
{
p1 = Point(0, 0);
p2 = Point(0, 0);
cout << "Default Constructor" << endl;
}
// Constructor with start and end point
Line::Line(const Point& pt1, const Point& pt2): Shape()
{
p1 = pt1;
p2 = pt2;
cout << "Constructor" << endl;
}
// Copy constructor
Line::Line(const Line& line): Shape(line)
{
p1 = line.p1;
p2 = line.p2;
cout << "Copy Constructor" << endl;
}
// Destructor
Line::~Line()
{
cout << "Line Destructor" << endl;
}
// Overloaded getter for p1
Point Line::P1() const
{
return p1;
}
// Overloaded getter for p2
Point Line::P2() const
{
return p2;
}
// Overloaded setter for p1
void Line::P1(const Point& point1)
{
p1 = point1;
}
// Overloaded setter for p2
void Line::P2(const Point& point2)
{
p2 = point2;
}
// function returns length of the line
double Line::Length() const
{
return p1.Distance(p2);
}
// function returns line description
string Line::toString() const
{
stringstream stream;
std::string s = Shape::toString();
stream << "Line: " << p1.toString() << ", " << p2.toString() << ", " << s;
return stream.str();
}
// Assignment operator
Line& Line::operator = (const Line& line)
{
Shape::operator = (line);
p1 = line.p1;
p2 = line.p2;
return *this;
}
// Send to ostream
ostream& operator << (ostream& os, const Line& l)
{
os << l.toString() << endl;
return os;
}
// Draw
void Line::Draw() const
{
cout << "Line Draw" << endl;
}<file_sep>/C/project5/Makefile
main: main.o scanner.o ppm.o
gcc -Wall -g -o main main.o scanner.o ppm.o
scanner.o: scanner.c scanner.h
gcc -Wall -g -c scanner.c
main.o: main.c scanner.h ppm.h
gcc -Wall -g -c main.c
ppm.o: ppm.c ppm.h
gcc -Wall -g -c ppm.c
clean:
rm -f *.o main
<file_sep>/C/project5/main.c
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include "scanner.h"
#include "ppm.h"
int main(int argc, char *argv[]) {
char *filename;
char *filelame;
char *cmd;
cmd=argv[1];
filename=argv[2];
filelame=argv[3];
ppmPic *myPic;
myPic=read(filename);
if (strcmp(cmd, "copy")==0)
{
copy(filelame, myPic);
}
else if (strcmp(cmd, "grow")==0)
{
grow(filelame, myPic);
}
else if (strcmp(cmd, "shrink")==0)
{
shrink(filelame, myPic);
}
return 0;
}
<file_sep>/QuantNetCpp/Level 4/Section 2.5/2.5.2/Point.cpp
/*
C++ code for HW4, Section 2.5, Exercise 2
*/
#include "Point.hpp"
#include <sstream>
#include <cmath>
#include <iostream>
using namespace std;
// Default constructor
Point::Point()
{
cout << "Default Constructor" << endl;
}
// Constructor
Point::Point(double x, double y)
{
xCoordinate = x;
yCoordinate = y;
cout << "Constructor" << endl;
}
// Explicit single-argument constructor
Point::Point(double value)
{
xCoordinate = value;
yCoordinate = value;
cout << "Explicit Single-Argument Constructor" << endl;
}
// Copy constructor
Point::Point(const Point& pt)
{
xCoordinate = pt.xCoordinate;
yCoordinate = pt.yCoordinate;
cout << "Copy Constructor" << endl;
}
// Destructor
Point::~Point()
{
cout << "Destructor" << endl;
}
// Convert point to string
string Point::toString() const
{
stringstream pointStream;
// print format: Point(x, y)
pointStream << "Point(" << xCoordinate << ", " << yCoordinate << ")";
// convert to string
return pointStream.str();
}
// Distance to the origin
double Point::Distance() const
{
return sqrt(pow(xCoordinate, 2) + pow(yCoordinate, 2));
}
//Distance between two points
double Point::Distance(const Point& p) const
{
return sqrt(pow(xCoordinate - p.xCoordinate, 2) + pow(yCoordinate - p.yCoordinate, 2));
}
// Negate the coordinates
Point Point::operator - () const
{
return Point(-xCoordinate, -yCoordinate);
}
// Scale the coordinates
Point Point::operator * (double factor) const
{
return Point(factor * xCoordinate, factor * yCoordinate);
}
// Add coordinates
Point Point::operator + (const Point& p) const
{
return Point(xCoordinate + p.xCoordinate, yCoordinate + p.yCoordinate);
}
// Equally compare operator
bool Point::operator == (const Point& p) const
{
if(xCoordinate == p.xCoordinate && yCoordinate == p.yCoordinate)
{
return true;
}
else
{
return false;
}
}
// Assignment operator
Point& Point::operator = (const Point& source)
{
xCoordinate = source.xCoordinate;
yCoordinate = source.yCoordinate;
return *this;
}
// Scale the coordinates & assign
Point& Point::operator *= (double factor)
{
xCoordinate *= factor;
yCoordinate *= factor;
return *this;
}
// Send to ostream
ostream& operator << (ostream& os, const Point& p)
{
os << p.toString() << endl;
return os;
}<file_sep>/C++/polynomial/Makefile
PolynomialDemo: PolynomialDemo.o Polynomial.o
g++ -std=c++11 -Wall -g -o PolynomialDemo PolynomialDemo.o Polynomial.o
PolynomialDemo.o: PolynomialDemo.cpp Polynomial.h
g++ -std=c++11 -Wall -g -c PolynomialDemo.cpp
Polynomial.o: Polynomial.cpp Polynomial.h
g++ -std=c++11 -Wall -g -c Polynomial.cpp
clean:
rm -f *.o PolynomialDemo
<file_sep>/QuantNetCpp/Level 2/Section 1.9/Exercise 1/exercise1.c
/*
C code for HW2, Section 1.9, Exercise 1
*/
// Preprocessor for include files
#include <stdio.h> // C style I/O
// Main function
int main()
{
int charCount = 0;
// Create char array to hold each line of characters
char line[99999];
printf("Please write characters to your heart's content. Hit ENTER to display each line. Type CTRL + A to end the program.\n");
// User inputs char
int chIn = getchar();
// CTRL+A is 1, program's stop condition
while (chIn != 1)
{
// line feed char is 10, used to end line
if (charCount > 0 && chIn == 10)
{
// after user ends line, display characters in that line. Array size to display is character count.
printf("Output Line: ");
for (int i = 0; i < charCount; i++)
{
putchar(line[i]);
}
putchar('\n');
// reset character count
charCount = 0;
continue;
}
// store input character in next empty slot of the array
line[charCount] = chIn;
// increment the count
charCount++;
// get next input before rerunning the loop
chIn = getchar();
}
// if there are characters left in the array, output them
if (charCount > 0)
{
printf("Output Line: ");
for (int i = 0; i < charCount; i++)
{
putchar(line[i]);
}
putchar('\n');
}
printf("CTRL + A is a correct ending.\n");
return 0;
}
<file_sep>/QuantNetCpp/Level 5/Section 3.5/3.5.5/Shape.cpp
/*
C++ code for HW5, Section 3.5, Exercise 5
*/
#include "Shape.hpp"
#include <stdlib.h>
#include <sstream>
// Default constructor
Shape::Shape()
{
id = rand();
}
// Copy constructor
Shape::Shape(const Shape& shape)
{
id = shape.id;
}
// Destructor
Shape::~Shape()
{
cout << "Shape Destructor" << endl;
}
// Selector for ID
int Shape::ID() const
{
return id;
}
// Assignment operator
Shape& Shape::operator = (const Shape& source)
{
id = source.id;
return *this;
}
// Convert shape to string
string Shape::toString() const
{
stringstream shapeStream;
shapeStream << "Shape ID: " << id << endl;
return shapeStream.str();
}
// Print
void Shape::Print() const
{
cout << toString() << endl;
}<file_sep>/QuantNetCpp/Level 1/Section 1.3/Exercise 6/exercise6.c
/*
C code for HW1, Section 1.3, Exercise 6
*/
// Preprocessor for include files
#include <stdio.h> // C style I/O
// Main function
int main()
{
// Declare a signed and an unsigned int for shifting
unsigned int x = 10; // Unsigned ints will always be logically shifted
int y = -10; // Signed ints will always be arithmetically shifted
printf("Unsigned int to be logically shifted: x = %d\n", x);
printf("Signed int to be arithmetically shifted: y = %d\n\n", y);
// First shift
x = x >> 1;
printf("x >> 1 evaluates to: %d\n" , x);
if (x < 0)
{
printf("Negative, a 1 was inserted left\n\n");
}
else
{
printf("Positive, a 0 was inserted left\n\n");
}
y = y >> 1;
printf("y >> 1 evaluates to: %d\n" , y);
if (y < 0)
{
printf("Negative, a 1 was inserted left\n\n");
}
else
{
printf("Positive, a 0 was inserted left\n\n");
}
// Second shift
x = x >> 1;
printf("(x >> 1) >> 1 evaluates to: %d\n" , x);
if (x < 0)
{
printf("Negative, a 1 was inserted left\n\n");
}
else
{
printf("Positive, a 0 was inserted left\n\n");
}
y = y >> 1;
printf("(y >> 1) >> 1 evaluates to: %d\n" , y);
if (y < 0)
{
printf("Negative, a 1 was inserted left\n\n");
}
else
{
printf("Positive, a 0 was inserted left\n\n");
}
return 0;
}
<file_sep>/QuantNetCpp/Level 3/Section 2.2/2.2.1/Point.cpp
/*
C++ code for HW3, Section 2.2, Exercise 1
*/
#include "Point.hpp"
#include <sstream>
using namespace std;
// Default constructor
Point::Point()
{
}
// Destructor
Point::~Point()
{
}
// Selector functions for each coordinate
double Point::getX()
{
return xCoordinate;
}
double Point::getY()
{
return yCoordinate;
}
// Modifier functions for each coordinate
void Point::setX(double x)
{
xCoordinate = x;
}
void Point::setY(double y)
{
yCoordinate = y;
}
// Convert point to string
string Point::toString()
{
stringstream pointStream;
// print format: Point(x, y)
pointStream << "Point(" << xCoordinate << ", " << yCoordinate << ")";
// convert to string
return pointStream.str();
}<file_sep>/QuantNetCpp/Level 1/Section 1.3/Exercise 7/exercise7.c
/*
C code for HW1, Section 1.3, Exercise 7
*/
// Preprocessor for include files
#include <stdio.h> // C style I/O
// Main function
int main()
{
// Declare int x and an int n to perform x*2^n
int x;
int n;
printf("Input a positive integer x: ");
scanf("%d", &x);
int y = x; // For printing at the end
printf("x will be multiplied by 2^n, input a non-negative n: ");
scanf("%d", &n);
// Perform a left shift n times
int i;
for(i = 0; i < n; i++)
{
x <<= 1;
}
printf("%d*(2^%d) = %d\n", y, n, x);
return 0;
}
<file_sep>/C/project4/game.c
#include "game.h"
#include "stdlib.h"
// the two print routines have already been written for you
void printPlayers(Players *list) {
Players *ptr = list;
printf("Printing the current list of players : \n");
while (ptr != NULL) {
printf("\tName: %s\n", ptr->name);
ptr = ptr->next;
}
printf("End of player list\n");
return;
}
void printEverything(Players *list) {
Players *ptr = list;
printf("Printing the current players and their possessions: \n");
while (ptr != NULL) {
printf("\tName: %s\n", ptr->name);
Items *ptr2 = ptr->things;
while (ptr2 != NULL) {
printf("\t\t%d %s\n", ptr2->count, ptr2->name);
ptr2 = ptr2->next;
}
ptr = ptr->next;
}
printf("End of listing\n");
return;
}
// this function adds players to the list of players
Players *add(Players *list, char *name) {
Players *newPlayer=(Players*)malloc(sizeof(Players));
newPlayer->name=(char*)malloc(strlen(name)+1);
strcpy(newPlayer->name, name);
newPlayer->next=list;
return newPlayer;
}
// this function adds items to a player
void addItem(Players *list, char *p, char *item, int num) {
Items *newItem=(Items*)malloc(sizeof(Items));
newItem->name=(char*)malloc(strlen(item)+1);
strcpy(newItem->name, item);
newItem->count=num;
Players *namePtr;
for (namePtr=list; namePtr!=NULL; namePtr=namePtr->next)
{
if (strcmp(p, namePtr->name)==0)
{
if (namePtr->things==NULL)
{
namePtr->things=newItem;
namePtr->things->next=NULL;
return;
}
else
{
Items *itemPtr;
for (itemPtr=namePtr->things; itemPtr!=NULL; itemPtr=itemPtr->next)
{
if (strcmp(item, itemPtr->name)==0)
{
namePtr->things->count+=num;
return;
}
else
{
newItem->next=namePtr->things;
namePtr->things=newItem;
return;
}
}
return;
}
return;
}
}
return;
}
// this functon counts the number of players
int countPlayers(Players *list) {
Players *namePtr;
int count=0;
for (namePtr=list; namePtr!=NULL; namePtr=namePtr->next)
{
count++;
}
return count;
}
// this function counts the number of item for a particular player
int countItems(Players *list, char *name) {
int count=0;
Players *namePtr;
for (namePtr=list; namePtr!=NULL; namePtr=namePtr->next)
{
if (strcmp(name, namePtr->name)==0)
{
if (namePtr->things==NULL)
{
return count;
}
else
{
Items *itemPtr;
for (itemPtr=namePtr->things; itemPtr!=NULL; itemPtr=itemPtr->next)
{
count+=itemPtr->count;
}
}
}
}
return count;
}
// this function counts the number of a particular item for all players
int numItems(Players *list, char *item) {
int count=0;
Players *namePtr;
for (namePtr=list; namePtr!=NULL; namePtr=namePtr->next)
{
Items *itemPtr;
for (itemPtr=namePtr->things; itemPtr!=NULL; itemPtr=itemPtr->next)
{
if (strcmp(item, itemPtr->name)==0)
{
count+=itemPtr->count;
}
}
}
return count;
}
// this function adds players to a list in alphabetical order
Players *orderedAdd(Players *list, char *name) {
Players *ptr, *nextPtr;
Players *newPlayer=(Players*)malloc(sizeof(Players));
newPlayer->name=(char*)malloc(strlen(name)+1);
strcpy(newPlayer->name, name);
newPlayer->next=NULL;
// case #1 list is empty
if (list==NULL)
{
return newPlayer;
}
// case #2 add to the front
else if (strcmp(name,list->name) <= 0)
{
newPlayer->next=list;
return newPlayer;
}
else
{
ptr=list;
nextPtr=ptr->next;
while (ptr != NULL)
{
//case #3 add to the back
if (ptr->next == NULL)
{
ptr->next = newPlayer;
return list;
}
//case #4 add in between
else if(strcmp(newPlayer->name,nextPtr->name) <= 0)
{
newPlayer->next=nextPtr;
ptr->next=newPlayer;
return list;
}
ptr=ptr->next;
nextPtr=ptr->next;
}
}
return NULL;
}
// this function adds items to a player in alphabetical order
void orderedAddItem(Players *list, char *p, char *item, int num) {
Items *newItem=(Items*)malloc(sizeof(Items));
newItem->name=(char*)malloc(strlen(item)+1);
strcpy(newItem->name, item);
newItem->count=num;
newItem->next=NULL;
Items *ptr, *nextPtr;
Players *namePtr;
for (namePtr=list; namePtr!=NULL; namePtr=namePtr->next)
{
if (strcmp(p, namePtr->name)==0)
{
// case #1 list is empty
if (namePtr->things==NULL)
{
namePtr->things=newItem;
namePtr->things->next=NULL;
return;
}
else
{
Items *itemPtr;
for (itemPtr=namePtr->things; itemPtr!=NULL; itemPtr=itemPtr->next)
{
// check if the item already exists
if (strcmp(item, itemPtr->name)==0)
{
itemPtr->count+=num;
return;
}
}
for (itemPtr=namePtr->things; itemPtr!=NULL; itemPtr=itemPtr->next)
{
// case #2 add to the front
if (strcmp(item, namePtr->things->name) <= 0)
{
newItem->next=namePtr->things;
namePtr->things=newItem;
return;
}
else
{
ptr=namePtr->things;
nextPtr=ptr->next;
while (ptr != NULL)
{
//case #3 add to the back
if (ptr->next == NULL)
{
ptr->next = newItem;
return;
}
//case #4 add in between
else if(strcmp(newItem->name,nextPtr->name) <= 0)
{
newItem->next=nextPtr;
ptr->next=newItem;
return;
}
ptr=ptr->next;
nextPtr=ptr->next;
}
}
}
return;
}
return;
}
}
return;
}
// this function makes a player give all of one particular item to another player
void gives(Players *list, char *p1, char *p2, char *item) {
Players *namePtr1, *namePtr2;
Items *itemPtr1;
for (namePtr1=list; namePtr1!=NULL; namePtr1=namePtr1->next)
{
if (strcmp(p1, namePtr1->name)==0)
{
for (namePtr2=list; namePtr2!=NULL; namePtr2=namePtr2->next)
{
if (strcmp(p2, namePtr2->name)==0)
{
for (itemPtr1=namePtr1->things; itemPtr1!=NULL; itemPtr1=itemPtr1->next)
{
if (strcmp(item, itemPtr1->name)==0)
{
orderedAddItem(list, p2, item, itemPtr1->count);
// deleting the first item
if (strcmp(item, namePtr1->things->name)==0)
{
Items *pNewHead=namePtr1->things->next;
free(namePtr1->things);
namePtr1->things=pNewHead;
return;
}
// deleting an in between item
Items *ptr;
for (ptr=namePtr1->things; ptr->next != NULL; ptr=ptr->next)
{
if (strcmp(ptr->next->name, item)==0)
{
Items *pDel=ptr->next;
ptr->next=ptr->next->next;
free(pDel->name);
free(pDel);
return;
}
}
}
}
}
}
}
}
return;
}<file_sep>/QuantNetCpp/Level 2/Section 1.7/Exercise 1/exercise1.c
/*
C code for HW2, Section 1.7, Exercise 1
*/
// Preprocessor for include files
#include <stdio.h> // C style I/O
#include <stdlib.h> // C Standard library
// Declare the swap function
void Swap(double* i, double* j);
// Implement the swap function
void Swap(double* i, double* j)
{
double temp;
temp = *i;
*i = *j;
*j = temp;
}
// Main function
int main()
{
// Declare the initial variables
double i = 5;
double j = 10;
// Print their initial values
printf("Value of i before swapping: %lf\n", i);
printf("Value of j before swapping: %lf\n", j);
// Swap the variables
Swap(&i, &j);
// Print their post-swap values
printf("Value of i after swapping: %lf\n", i);
printf("Value of j after swapping: %lf\n",j);
return 0;
}
<file_sep>/QuantNetCpp/Level 2/Section 1.6/Exercise 1/Macro.c
/*
C code for HW2, Section 1.6, Exercise 1
*/
// Preprocessor for include files
#include <stdio.h> // C style I/O
#include "Defs.h" // Definitions
// Main function
int main()
{
// Declare two variables for printing
double a;
double b;
// Get input and print
printf("Input a: ");
scanf_s("%lf", &a);
printf("Input b: ");
scanf_s("%lf", &b);
printf("\n");
// Use the macros for printing
PRINT1(a);
PRINT2(a,b);
return 0;
}<file_sep>/C/lab3/stats2.c
#include <stdio.h>
#include <math.h>
void readData(int *array)
{
printf("Enter five integers: \n");
scanf("%d", &array[0]);
scanf("%d", &array[1]);
scanf("%d", &array[2]);
scanf("%d", &array[3]);
scanf("%d", &array[4]);
return;
}
double findMean(int *array)
{
double mean;
mean = (double)(array[0] + array[1] + array[2] + array[3] + array[4])/5;
return mean;
}
double findVariance(int *array, double mean)
{
double a, b, c, d, e;
a = array[0] - mean;
b = array[1] - mean;
c = array[2] - mean;
d = array[3] - mean;
e = array[4] - mean;
double v, w, x, y, z;
v = pow(a, 2);
w = pow(b, 2);
x = pow(c, 2);
y = pow(d, 2);
z = pow(e, 2);
double variance;
variance = (double)(v+w+x+y+z)/5;
return variance;
}
void printResults(double mean, double variance, double stddev)
{
printf("Your mean is %lf, your variance is %lf, and your standard deviation is %lf.\n", mean, variance, stddev);
return;
}
int main( ) {
int array[5];
readData(array);
double mean, variance, stddev;
mean = findMean(array);
variance = findVariance(array, mean);
stddev = sqrt(variance);
printResults(mean, variance, stddev);
return 0;
}
<file_sep>/C++/processcontrol/CPUScheduler.cpp
/**
* A simple non-preemptive CPU Scheduler simulator
* @author <NAME>
* @since 2017-02-16
* Course: CS3102.01
* Programming Project #: 1
* Instructor: Dr. Duncan
* @see Heap.cpp
* @see PCB.h
*/
#include <iostream>
#include <string>
#include <cstdlib>
#include "Heap.cpp"
#include "PCB.h"
using namespace std;
int main(int argc, char** argv)
{
srand(time(NULL));
double p = atof(argv[1]);
int s = atoi(argv[2]);
double q;
int pidCounter = 0;
int waitCounter = 0;
int randPriority, length;
Heap<PCB> scheduler;
for (int i = 0; i < s; i++)
{
cout << "Cycle #: " << i+1 << endl;
if (!scheduler.isEmpty() && (scheduler.peek()).getLength() == (i+1-(scheduler.peek()).getStart()))
{
cout << "Process #" << (scheduler.peek()).getPid() << " has just terminated." << endl;
waitCounter += (scheduler.peek()).getWait();
scheduler.remove();
}
else if (!scheduler.isEmpty() && !(scheduler.peek()).isExecuting())
{
(scheduler.peek()).execute();
(scheduler.peek()).setStart(i+1);
(scheduler.peek()).setWait(i+1-(scheduler.peek()).getArrival());
}
if (!scheduler.isEmpty() && (scheduler.peek()).isExecuting())
{
cout << "Process #" << (scheduler.peek()).getPid() << " is executing." << endl;
}
q = ((double)rand()/RAND_MAX);
if (q <= p)
{
pidCounter++;
randPriority = rand()%20-20;
length = rand()%100 + 1;
scheduler.insert(PCB(pidCounter, -randPriority, 0, i+1, length));
cout << "Adding job with pid #" << pidCounter << " and priority " << randPriority << " and length " << length << "." << endl;
}
else
cout << "No new job this cycle." << endl;
}
cout << "The average turnaround time is " << (double)pidCounter/s <<"per cycle." << endl;
cout << "The average wait time is " << (double)waitCounter/pidCounter << "." << endl;
return 0;
}<file_sep>/C/lab4/math.c
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main(int argc, char *argv[])
{
int x,y;
x = atoi(argv[1]);
y = atoi(argv[3]);
double result;
if (strcmp(argv[2], "+") == 0)
{
result = x+y;
}
else if (strcmp(argv[2], "-") == 0)
{
result = x-y;
}
else if (strcmp(argv[2], "*") == 0)
{
result = x*y;
}
else if (strcmp(argv[2], "/") == 0)
{
result = (double)x/y;
}
else if (strcmp(argv[2], "%") == 0)
{
result = x%y;
}
printf("Your result is %lf", result);
return 0;
}<file_sep>/QuantNetCpp/Level 7/7.1.2/STLIterators.cpp
/*
C++ code for HW7, Exercise 2
*/
#include <list>
#include <vector>
#include <map>
#include <iostream>
using namespace std;
// Template function Sum() accepts template arg T, returns double
template<typename T>
double Sum(const T& t) {
// iterator
typename T::const_iterator i;
double sum = 0.0;
for (i = t.begin(); i != t.end(); i++) {
sum += *i;
}
return sum;
}
// Calculate the sum of all values between two passed-in iterators
template <typename T>
double Sum(const typename T::const_iterator& start, const typename T::const_iterator& end) {
typename T::const_iterator i;
double sum = 0.0;
for (i = start; i != end; i++) {
sum += *i;
}
return sum;
}
int main() {
// call Sum() for the different conntainers from previous exercise
// List of doubles
list<double> ls;
for (int i = 0; i < 10; i++)
{
ls.push_back(i);
ls.push_front(-i);
}
cout << "Sum of list elements : " << Sum(ls) << endl;
// Vector of doubles
vector<double> vec(3);
for (int i = 0; i < 5; i++)
{
vec.push_back(i);
}
cout << "Vector contents: " << Sum(vec);
// Map that maps strings to doubles
map<string, double> myMap;
string str[4] = { "0", "1", "2", "3" };
for (int i = 0; i < 4; i++)
{
myMap[str[i]] = i * 10.0;
}
cout << "Map contents: " << Sum(myMap);
return 0;
}<file_sep>/QuantNetCpp/Level 1/Section 1.3/Exercise 9/exercise9.c
/*
C code for HW1, Section 1.3, Exercise 9
*/
// Preprocessor for include files
#include <stdio.h> // C style I/O
// Main function
int main()
{
int x = 1;
int y = 1;
x += y += x; // x equals 3, y equals 2
printf("%d\n\n", (x<y)?y:x); // x is not less than y, so prints 3, which x equals
printf("%d\n", (x<y)?x++:y++); // x is not less than y, so prints 2, which y equals, but then postfix ++
printf("%d\n", x); // prints 3
printf("%d\n", y); // prints 3, since the postfix ++ incremented y
return 0;
}
<file_sep>/C++/avlbst/AVLTree.cpp
/**
* Models an AVL tree.
* @param <E> data type of elements of the tree
* @author Duncan, <NAME>
* Course: CS3102.01
* Programming Project #: 2
* @since 03-15-2017
* @see AVLTree.h
*/
#include "AVLTree.h"
#include <cstdlib>
#include <iostream>
#include <queue>
using namespace std;
/* Nested Node class definitions */
template <typename E>
AVLTree<E>::Node::Node(E s)
{
data = s;
left = NULL;
right = NULL;
bal = EH;
}
/* Outer AVLTree class definitions */
template <typename E>
AVLTree<E>::AVLTree()
{
root = NULL;
count = 0;
}
template <typename E>
AVLTree<E>::~AVLTree()
{
recDestroy(root);
}
template <typename E>
bool AVLTree<E>::isEmpty() const
{
return root == NULL;
}
template<typename E>
void AVLTree<E>::insert(const E& obj)
{
bool forTaller;
Node* newNode = new Node(obj);
/* If it is the first node in the tree */
if (!inTree(obj))
count++;
root = insert(root, newNode, forTaller);
}
template<typename E>
bool AVLTree<E>::inTree(const E& item) const
{
Node *tmp;
if (isEmpty())
return false;
/*find where it is */
tmp = root;
while (1)
{
if (tmp->data == item)
return true;
if (tmp->data > item)
{
if (!(tmp->left))
return false;
/* continue searching */
tmp = tmp->left;
}
else
{
if (!(tmp->right))
return false;
/* continue searching for insertion pt. */
tmp = tmp->right;
}
}
}
template<typename T>
void AVLTree<T>::remove(const T& item)
{
bool shorter;
bool success;
Node* newRoot;
if (!inTree(item))
return;
newRoot = remove(root, item, shorter, success);
if (success)
{
root = newRoot;
count--;
}
}
template<typename T>
const T& AVLTree<T>::retrieve(const T& key) const throw (AVLTreeException)
{
Node* tmp;
if (isEmpty())
throw AVLTreeException("AVL Tree Exception: tree empty on retrieve()");
tmp = root;
while(true)
{
if (tmp->data == key)
return tmp->data;
if (tmp->data > key)
{
if (tmp->left == NULL)
throw new AVLTreeException("AVL Tree Exception: key not in tree call to retrieve()");
tmp = tmp->left;
}
else
{
if (tmp->right == NULL)
throw new AVLTreeException("AVL Tree Exception: key not in tree call to retrieve()");
tmp = tmp->right;
}
}
return tmp->data;
}
template<typename T>
void AVLTree<T>::traverse(FuncType func)
{
traverse(root,func);
}
template<typename E>
int AVLTree<E>::size() const
{
return count;
}
template<typename T>
int AVLTree<T>::height() const
{
return height(root);
}
template<typename E>
int AVLTree<E>::depth(const E& item) const
{
int depth = 0;
Node* ptr = root;
while (ptr -> data != item)
{
if (item < ptr -> data)
{
ptr = ptr -> left;
depth++;
}
else if (item > ptr -> data)
{
ptr = ptr -> right;
depthVal++;
}
else if (item == ptr -> data)
return depth;
else
return -1-depth;
}
return depth;
}
/* Private functions */
template<typename E>
void AVLTree<E>::recDestroy(Node* root)
{
if (root)
{
if (root->left) recDestroy(root->left);
if (root->right) recDestroy(root->right);
delete root;
}
return;
}
template<typename E>
typename AVLTree<E>::Node* AVLTree<E>::insert(Node* curRoot, Node* newNode, bool& taller)
{
if (curRoot == NULL)
{
curRoot = newNode;
taller = true;
return curRoot;
}
if (newNode->data < curRoot->data)
{
curRoot->left = insert(curRoot->left,newNode, taller);
if (taller)
switch(curRoot->bal)
{
case LH: // was left-high -- rotate
curRoot = leftBalance(curRoot, taller);
break;
case EH: //was balanced -- now LH
curRoot->bal = LH;
break;
case RH: //was right-high -- now EH
curRoot->bal = EH;
taller = false;
break;
}
return curRoot;
}
if (newNode->data > curRoot->data)
{
curRoot->right = insert(curRoot->right,newNode,taller);
if (taller)
switch(curRoot->bal)
{
case LH: // was left-high -- now EH
curRoot->bal = EH;
taller=false;
break;
case EH: // was balance -- now RH
curRoot->bal = RH;
break;
case RH: //was right high -- rotate
curRoot = rightBalance(curRoot,taller);
break;
}
return curRoot;
}
else
{
curRoot->data = newNode->data;
delete newNode;
taller = false;
return curRoot;
}
}
template<typename E>
typename AVLTree<E>::Node* AVLTree<E>::leftBalance(Node* curRoot, bool& taller)
{
Node* rightTree;
Node* leftTree;
leftTree = curRoot->left;
switch(leftTree->bal)
{
case LH: //left-high -- rotate right
curRoot->bal = EH;
leftTree->bal = EH;
// Rotate right
curRoot = rotateRight(curRoot);
taller = false;
break;
case EH: // This is an error
cerr<<"AVL Tree Error: error in balance tree in call to leftBalance()"<<endl;
exit(-5);
break;
case RH: // right-high - requires double rotation: first left, then right
rightTree = leftTree->right;
switch(rightTree->bal)
{
case LH:
curRoot->bal = RH;
leftTree->bal = EH;
break;
case EH:
curRoot->bal = EH;
leftTree->bal = EH;
break;
case RH:
curRoot->bal = EH;
leftTree->bal = LH;
break;
}
rightTree->bal = EH;
// rotate left
curRoot->left = rotateLeft(leftTree);
//rotate right
curRoot = rotateRight(curRoot);
taller= false;
}
return curRoot;
}
template<typename E>
typename AVLTree<E>::Node* AVLTree<E>::rightBalance(Node* curRoot, bool& taller)
{
Node* rightTree;
Node* leftTree;
rightTree = curRoot->right;
switch(rightTree->bal)
{
case RH: //right-high -- rotate left
curRoot->bal = EH;
rightTree->bal = EH;
// Rotate left
curRoot = rotateLeft(curRoot);
taller = false;
break;
case EH: // This is an error
cerr<<"AVL Tree Error: error in balance tree in call to rightBalance()"<<endl;
exit(1);
break;
case LH: // left-high - requires double rotation: first right, then left
leftTree = rightTree->left;
switch(leftTree->bal)
{
case RH:
curRoot->bal = LH;
rightTree->bal = EH;
break;
case EH:
curRoot->bal = EH;
rightTree->bal = EH;
break;
case LH:
curRoot->bal = EH;
rightTree->bal = RH;
break;
}
leftTree->bal = EH;
// rotate right
curRoot->right = rotateRight(rightTree);
//rotate left
curRoot = rotateLeft(curRoot);
taller = false;
}
return curRoot;
}
template<typename E>
typename AVLTree<E>::Node* AVLTree<E>::rotateLeft(Node* node)
{
Node* tmp;
tmp = node->right;
node->right = tmp->left;
tmp->left = node;
return tmp;
}
template<typename E>
typename AVLTree<E>::Node* AVLTree<E>::rotateRight(Node* node)
{
Node* tmp;
tmp = node->left;
node->left = tmp->right;
tmp->right = node;
return tmp;
}
template<typename E>
void AVLTree<E>::traverse(Node* node, FuncType func)
{
if (node)
{
traverse(node->left,func);
func(node->data);
traverse(node->right,func);
}
}
template<typename E>
typename AVLTree<E>::Node* AVLTree<E>::remove(Node* node,const E& key, bool& shorter, bool& success)
{
Node* delPtr;
Node* exchPtr;
Node* newRoot;
if (node == NULL)
{
shorter = false;
success = false;
return NULL;
}
if (key < node->data)
{
node->left = remove(node->left,key,shorter,success);
if (shorter)
node = deleteRightBalance(node,shorter);
}
else if (key > node->data)
{
node->right = remove(node->right,key,shorter,success);
if (shorter)
node = deleteLeftBalance(node,shorter);
}
else
{
delPtr = node;
if (node->right == NULL)
{
newRoot = node->left;
success = true;
shorter = true;
delete delPtr;
return newRoot;
}
if(node->left == NULL)
{
newRoot = node->right;
success = true;
shorter = true;
delete delPtr;
return newRoot;
}
else
{
exchPtr = node->left;
while(exchPtr->right != NULL)
exchPtr = exchPtr->right;
node->data = exchPtr->data;
node->left = remove(node->left,exchPtr->data,shorter,success);
if (shorter)
node = deleteRightBalance(node,shorter);
}
}
return node;
}
template<typename E>
typename AVLTree<E>::Node* AVLTree<E>::deleteRightBalance(Node* node,bool& shorter)
{
Node* rightTree;
Node* leftTree;
switch(node->bal)
{
case LH: //deleted left -- now balanced
node->bal = EH;
break;
case EH: //now right high
node->bal = RH;
shorter = false;
break;
case RH: // right high -- rotate left
rightTree = node->right;
if (rightTree->bal == LH)
{
leftTree = rightTree->left;
switch(leftTree->bal)
{
case LH:
rightTree->bal = RH;
node->bal = EH;
break;
case EH:
node->bal = EH;
rightTree->bal = EH;
break;
case RH:
node->bal = LH;
rightTree->bal = EH;
break;
}
leftTree->bal = EH;
//rotate right, then left
node->right = rotateRight(rightTree);
node = rotateLeft(node);
}
else
{
switch(rightTree->bal)
{
case LH:
case RH:
node->bal = EH;
rightTree->bal = EH;
break;
case EH:
node->bal = RH;
rightTree->bal = LH;
shorter = false;
break;
}
node = rotateLeft(node);
}
}
return node;
}
template<typename E>
typename AVLTree<E>::Node* AVLTree<E>::deleteLeftBalance(Node* node,bool& shorter)
{
Node* rightTree;
Node* leftTree;
switch(node->bal)
{
case RH: //deleted right -- now balanced
node->bal = EH;
break;
case EH: //now left high
node->bal = LH;
shorter = false;
break;
case LH: // left high -- rotate left
leftTree = node->left;
if (leftTree->bal == RH)
{
rightTree = leftTree->right;
switch(rightTree->bal)
{
case RH:
leftTree->bal = LH;
node->bal = EH;
break;
case EH:
node->bal = EH;
leftTree->bal = EH;
break;
case LH:
node->bal = RH;
leftTree->bal = EH;
break;
}
rightTree->bal = EH;
//rotate left, then right
node->left = rotateLeft(leftTree);
node = rotateRight(node);
}
else
{
switch(leftTree->bal)
{
case RH:
case LH:
node->bal = EH;
leftTree->bal = EH;
break;
case EH:
node->bal = LH;
leftTree->bal = RH;
shorter = false;
break;
}
node = rotateRight(node);
}
}
return node;
}
template<typename E>
int AVLTree<E>::height(Node* node) const
{
if (node == NULL)
return -1;
int leftSub = height(node->left);
int rightSub = height(node->right);
if (leftSub > rightSub)
return leftSub + 1;
else
return rightSub + 1;
}
template<typename E>
void AVLTree<E>::levelTraverse(FuncType func)
{
if (isEmpty())
return;
Node* ptr = root;
queue<Node*> treeLevel;
treeLevel.push(root);
while (!treeLevel.empty())
{
ptr = treeLevel.front();
treeLevel.pop();
func(ptr -> data);
if (ptr -> left)
treeLevel.push(ptr -> left);
if (ptr -> right)
treeLevel.push(ptr -> right);
}
}<file_sep>/QuantNetCpp/Level 4/Section 2.6/2.6.1/Array.cpp
/*
C++ code for HW4, Section 2.6, Exercise 1
*/
// include header and source file
#include "Point.hpp"
#include "Array.hpp"
using namespace std;
namespace AARONCAO
{
namespace Containers
{
// Default Consturctor
Array::Array()
{
elements = new CAD::Point[10];
len = 10;
}
// Constructor
Array::Array(int size)
{
elements = new CAD::Point[size];
len = size;
}
// Copy constructor
Array::Array(const Array& arr)
{
elements = new CAD::Point[arr.len];
len = arr.len;
for (int i = 0; i < len; i++)
{
elements[i] = arr.elements[i];
}
}
// Destructor
Array::~Array()
{
delete[] elements;
}
// Selector functions for size and elements
int Array::Size() const
{
return len;
}
CAD::Point& Array::GetElement(int idx) const
{
if (idx >= len)
{
return elements[0];
}
return elements[idx];
}
// Modifier function for elements
void Array::SetElement(int idx, const CAD::Point& element)
{
if (idx >= len)
{
return;
}
elements[idx] = element;
}
// Assignment operator
Array& Array::operator = (const Array& arr)
{
delete[] elements;
elements = new CAD::Point[arr.len];
len = arr.len;
for (int i = 0; i < len; i++)
{
elements[i] = arr.elements[i];
}
return *this;
}
// Square bracket operator
CAD::Point& Array::operator [] (int idx)
{
if (idx >= len)
{
return elements[0];
}
return elements[idx];
}
// Const square bracket operator for read-only and so that arrays can be declared as const
const CAD::Point& Array::operator [] (int idx) const
{
if (idx >= len)
{
return elements[0];
}
return elements[idx];
}
}
}<file_sep>/QuantNetCpp/Level 1/Section 1.4/Exercise 5/exercise5.c
/*
C code for HW1, Section 1.4, Exercise 5
*/
// Preprocessor for include files
#include <stdio.h> // C style I/O
// Main function
int main()
{
int startTempC = 0;
int endTempC = 19;
int stepSize = 1;
int degC;
double degF;
printf("Degrees C: \t Degrees F:\n");
for(degC = startTempC; degC <= endTempC; degC += stepSize)
{
degF = (double) 9 * degC/5 + 32;
printf("%d \t %10.1f\n", degC, degF);
}
return 0;
}
<file_sep>/QuantNetCpp/Level 5/Section 3.4/3.4.1/Circle.hpp
/*
Header file for HW5, Section 3.4, Exercise 1
*/
#ifndef Circle_HPP
#define Circle_HPP
#include "Point.hpp"
class Circle {
private:
Point center;
double radius;
public:
// Default constructor
Circle();
// Constructor with center, radius
Circle(const Point& c, double r);
// Copy constructor
Circle(const Circle& c);
// Destructor
~Circle();
// Selector functions for center, radius
Point CentrePoint() const;
double Radius() const;
// Modifier functions for center, radius
void CentrePoint(const Point& c);
void Radius(double r);
// Diameter of circle
double Diameter() const;
// Area of circle
double Area() const;
// Circumference of circle
double Circumference() const;
// Convert circle to string
string toString() const;
// Assignment operator
Circle& operator = (const Circle& source);
};
// Send to ostream
ostream& operator << (ostream& os, const Circle& c);
#endif<file_sep>/QuantNetCpp/Level 1/Section 1.3/Exercise 2/exercise2.c
/*
C code for HW1, Section 1.3, Exercise 2
*/
// Preprocessor for include files
#include <stdio.h> // C style I/O
// Main function
int main()
{
// Declare variables for calculation
double base;
double height;
// Print the prompt and input base and height
printf("This program finds the area of a right triangle.\nInput base:");
scanf("%lf", &base);
printf("Input height:");
scanf("%lf", &height);
// Print the area
printf("Area equals: %lf\n", 0.5*base*height);
return 0;
}
<file_sep>/C++/Proj04/GraphDemo.cpp
/**
* A testbed for methods of a weighted diagraph and implementations of
* basic weighted digraph algorithms.
* @author Duncan, <NAME>
* @since 04-18-2017
* @see Graph.cpp, City.cpp, City.h
*/
#include <iostream>
#include <cstdlib>
#include <stdexcept>
#include <fstream>
#include <limits>
#include <iomanip>
#include <string>
#include <queue>
#include <vector>
#include <functional>
#include "City.h"
#include "Graph.h"
#include "Graph.cpp"
using namespace std;
#define INFINITY numeric_limits<double>::max()
/* function prototypes */
void display(const City& c);
void readGraph(Graph<City>& newGraph, string filename);
int menu();
void floyd(const Graph<City>& g, double**& dist, int**& path);
void dijkstra(Graph<City> g, double dist[], int pred[], int source, int destination);
void dfsOut(const Graph<City>& g, int v, bool seen[], int linearOrder[], int& index);
void topoSort(const Graph<City>& g, int* linearOrder);
double primMST(const Graph<City>& g, int root, int* parent) throw (GraphException);
int main(int argc, char **argv)
{
if (argc != 2)
{
cout << "Usage: GraphDemo <filename>" << endl;
exit(1);
}
Graph<City> g;
City aCity1, aCity2;
int menuReturnValue, i, j;
int* top; //for argument to topoSort in Project # 5
int* mst; //for argument to primMST in Project # 5
readGraph(g,argv[1]);
long s = g.size();
menuReturnValue = -1;
while (menuReturnValue != 0)
{
menuReturnValue = menu();
switch(menuReturnValue)
{
case 1: //Adjacency Matrix
{
//write code to generate the adjacency matrix
cout << fixed << endl;
cout << "Adjacency Matrix For The Graph In" << argv[1] << endl;
cout << "==============================================================================================" << endl;
cout << setw(8);
for(int i = 1; i <= s; i++)
cout << i << setw(4);
cout << endl;
for(int i = 1; i <= s; i++)
{
cout << i << setw(5);
for(int j = 1; j <= s; j++)
{
if (g.retrieveVertex(i) == g.retrieveVertex(j))
cout << "0" << setw(4);
else if (g.isEdge(i,j))
cout << setprecision(0) << g.retrieveEdge(i,j) << setw(4);
else
cout << "INF" << setw(4);
}
cout << endl;
}
cout << "==============================================================================================" << endl;
cout << endl << endl;
break;
}
case 2: //Transitive Closure Matrix
{
//write code to generate the transitive closure matrix
cout << fixed << endl;
cout << "Transitive Closure Matrix For The Graph In" << argv[1] << endl;
cout << "==============================================================================================" << endl;
cout << setw(8);
for(int i = 1; i <= s; i++)
cout << i << setw(4);
cout << endl;
for(int i = 1; i <= s; i++)
{
cout << i << setw(5);
for(int j = 1; j <= s; j++)
{
if (g.retrieveVertex(i) == g.retrieveVertex(j))
cout << "1" << setw(4);
else if(g.isReachable(i,j))
cout << "1" << setw(4);
else
cout << "0" << setw(4);
}
cout << endl;
}
cout << "==============================================================================================" << endl;
cout << endl << endl;
break;
case 3://Shortest-path algorithm
cout<<"Enter the source vertex: ";
int src;
cin>>src;
City srcCity = City(src);
cout<<"Enter the destination vertex: ";
int dest;
cin>>dest;
City destCity = City(dest);
if (g.isReachable(srcCity,destCity))
{
double totalDistance = 0;
//Declare additional variables and arrays as necessary
int size = g.size();
int path[size][size];
double distance[size][size];
cout << "Shortest route from " << srcCity.getLabel() << " to " << destCity.getLabel() << ":" << endl;
cout << "==============================================================================================" << endl;
//Write code to call either dijkstra or floyd method and then
//Give all intermediate connections beginning with the source city and ending
//with the destination city aligned in column format as indicated below:
//
// cityX -> cityY distance
//
//Display the intermediate distances one per line
for (i = 1; i < size; i++)
{
for(j = 1; j < size; j++)
{
path[i][j] = 0;
distance[i][j] = g.retrieveEdge(i, j);
}
}
for(int i = 1; i < size; i++)
{
for(int j = 1; j < size; j++)
{
for(int k = 1; k < size; k++)
{
if(distance[j][k] > distance[j][i] + distance[i][k])
{
path[j][k] = i;
distance[j][k] = g.retrieveEdge(j,k);
}
}
}
cout<< src << " -> " << dest << " distance of " << distance[src][dest] << " with path of " << path[src][dest];
}
cout << "==============================================================================================" << endl;
cout << "The total distance " << setprecision(2) << totalDistance << " miles." << endl << endl;
}
else
cout << "There is no path." << endl << endl;
break;
}
case 4: //post-order depth-first-search traversal
cout<<endl;
cout<<"PostOrder DFS Traversal For The Graph In "<<argv[1]<<endl;
cout<<"==============================================================="<<endl;
g.dfsTraverse(display);
cout<<"==============================================================="<<endl;
cout<<endl;
cout<<endl;
break;
case 5: //breadth-first-search traversal
cout<<endl;
cout<<"BFS Traversal For The Graph In "<<argv[1]<<endl;
cout<<"==============================================================="<<endl;
g.bfsTraverse(display);
cout<<"==============================================================="<<endl;
cout<<endl;
cout<<endl;
break;
case 6: //number of edges
cout<<endl;
cout<<"The graph has "<<g.countEdges()<<" edges."<<endl;
cout<<endl;
break;
case 7: //topoSort
cout<<endl;
cout<<"Topological Sorting of The Graph In "<<argv[1]<<endl;
cout<<"==============================================================="<<endl;
top = new int[(int)g.size()];
topoSort(g,top);
for (i=1; i<=g.size(); i++)
{
aCity1 = g.retrieveVertex(City(top[i-1]));
display(aCity1);
}
cout<<"==============================================================="<<endl;
cout<<endl<<endl;
break;
case 8: //primMST
cout<<"Enter the root of the MST: ";
cin>>j;
mst = new int[(int)g.size()];
double totalWeight = primMST(g,j,mst);
for (i=1; i<=g.size(); i++)
cout<<"parent["<<i<<"] = "<<mst[i-1]<<endl;
cout<<"The weight of the minimum spanning tree/forest is "<<totalWeight<<" miles."<<endl<<endl;
break;
//default: ;
}
}
return 0;
}
/**
This function displays a City class object.
@param c a City class object
@return none.
*/
void display(const City& c)
{
cout << left << setw(3) << c.getKey() << " " << left << setw(2) << c.getLabel() << endl;
}
/**
This function reads a text file formatted as described in the project
description.
@param filename the name of the DIMACS formatted graph file.
@return an instance of a graph.
*/
void readGraph(Graph<City>& newGraph, string filename)
{
fstream inFile;
char temp;
string tmp;
int key,v1, v2, size=0, nEdges=0;
double weight;
inFile.open(filename.c_str());
if (inFile.fail())
{
cerr << "Error opening " << filename << endl;
exit(1);
}
while (inFile >> temp)
{
if (temp == 'p')
{
inFile>>size;
inFile>>nEdges;
}
if (temp == 'c')
{
getline(inFile,tmp);
}
if (temp == 'n')
{
inFile>>key;
getline(inFile,tmp);
newGraph.insertVertex(City(key,tmp.c_str()));
}
if (temp == 'e')
{
inFile>>v1;
inFile>>v2;
inFile>>weight;
newGraph.insertEdge(City(v1),City(v2),weight);
}
}
inFile.close();
}
/**
This function displays the menu interface for the weighted
digraph application.
@return an integer representing the menu option selected.
*/
int menu()
{
int option;
do
{
cout << " BASIC WEIGHTED GRAPH APPLICATION " << endl;
cout << "=====================================" << endl;
cout << "[1] Adjacency Matrix" << endl;
cout << "[2] Transitive Matrix" << endl;
cout << "[3] Single-source Shortest Path" << endl;
cout << "[4] Postorder DFS Traversal" << endl;
cout << "[5] BFS Traversal" << endl;
cout << "[6] Number of Edges" << endl;
cout << "[7] Topological Sort Labeling" << endl;
cout << "[8] Prim's Minimal Spanning Tree" << endl;
cout << "[0] Quit" << endl;
cout << "=====================================" << endl;
cout << "Select an option: ";
cin>>option;
if (option < 0 || option > 8)
cout << "Invalid option...Try again" << endl << endl;
else
return option;
}while(true);
}
/**
This method computes the cost and path matrices using the
Floyd all-pairs shortest path algorithm.
@param g an instance of a weighted directed graph.
@param dist a matrix containing distances between pairs of vertices.
@param path a matrix of intermediate vertices along the path between a pair
of vertices. 0 indicates that the two vertices are adjacent.
@return none.
*/
void floyd(const Graph<City>& g, double**& dist, int**& path)
{
int size = g.size();
for(int i = 1; i < size; i++)
{
for(int j = 1; j < size; j++)
{
for(int k = 1; k < size; k++)
{
if(dist[j][k] > dist[j][i] + dist[i][k])
{
path[j][k] = i;
dist[j][k] = g.retrieveEdge(j, k);
}
}
}
}
}
/**
* This method computes the cost and path arrays using the
* Dijkstra's single-source shortest path greedy algorithm.
* @param g an instance of a weighted directed graph
* @param dist an array containing shortest distances from a source vertex
* @param pred an array containing predecessor vertices along the shortest path
*/
void dijkstra(Graph<City> g, double dist[], int pred[], int source, int destination)
{
//Implement this function or floyd function above (not both).
}
/**
* an auxilliary function for the topoSort method.
* @param g a weighted directed graph
* @param v current vertex
* @param seen a 1-D boolean matrix of vertices that
* have been marked.
* @param linearOrder a 1-D array containing the
* topologically sorted list.
* @param index current index.
*/
void dfsOut(const Graph<City>& g, int v, bool seen[], int linearOrder[], int& index)
{
seen[v] = true;
for (int w = 0; w < g.size(); w++)
{
if (g.isEdge(v, w))
{
if (seen[w] == false)
dfsOut(g, w, seen, linearOrder, index);
}
}
linearOrder[index] = v;
index = index - 1;
}
/**
This method generates a listing of the vertices of a weighted
directed graph using the reverse dfs topological sorting.
@param g a weighted directed graph
@param linearOrder an array in which the topologically sorted
list is stored.
@return none
*/
void topoSort(const Graph<City>& g, int* linearOrder)
{
int size = g.size();
bool seen[size];
int count = size;
for (int i = 0; i < size; i++)
{
seen[i] = false;
}
for (int i = 0; i < size; i++)
{
if (seen[i] == false)
dfsOut(g, i, seen, linearOrder, count);
}
}
/**
* An auxilliary data structure to store the information
* about an edge.
*/
class EdgeType
{
public:
/**
* the weigth on this edge
*/
double weight;
/**
* the source vertex
*/
int source;
/**
* the destination vertex
*/
int destination;
/**
* for tracking purposes in Prim's algorithm
*/
bool chosen;
};
/**
* auxilliary function to sort the edgelist
* Required for the STL qsort function
* @param arg1 first value
* @param arg2 second value
* @return -1 when arg1 comes before arg2, 0 when they are
* the same, otherwise 1.
*/
int ecompare(const void* arg1, const void* arg2)
{
EdgeType e1;
EdgeType e2;
e1 = *((EdgeType*)arg1);
e2 = *((EdgeType*)arg2);
if (e1.weight < e2.weight)
return -1;
else if (e1.weight > e2.weight)
return 1;
else if (e1.source < e2.source)
return -1;
else if (e1.source > e2.source)
return 1;
else if (e1.destination < e2.destination)
return -1;
else if (e1.destination > e2.destination)
return 1;
else
return 0;
}
/**
* This method generates a minimum spanning tree rooted at a given
* vertex, root. If no such MST exists, then it generates a minimum
* spanning forest with one of the subtrees at root and with the
* roots of the other subtrees being the vertex with the smallest
* key in each subtree.
* @param g a weighted directed graph
* @param r root of the minimum spanning tree, when one exists.
* @param parent the parent implementation of the minimum spanning tree/forest
* @return the weight of such a tree or forest.
* <pre>
* {@code If a minimum spanning tree rooted at r is in the graph,
* the parent implementation of a minimum spanning tree or forest is
* determined. If no such tree exist, the parent implementation
* of an MST is generated. If the tree is empty, an exception
* is generated.
* }
* </pre>
*/
double primMST(const Graph<City>& g, int root, int* parent) throw (GraphException)
{
double totalWeight = 0;
/*
int size = g.size();
priority_queue<EdgeType, vector<EdgeType>, function<int(EdgeType,EdgeType)>> pQueue(ecompare);
pQueue.push(make_pair(0, root));
key[root] = 0;
while (!pQueue.empty())
{
int p = pQueue.top().second();
pQueue.pop();
p.chosen = true;
}
*/
return totalWeight;
}<file_sep>/QuantNetCpp/Level 4/Section 2.6/2.6.1/Point.hpp
/*
Header file for HW4, Section 2.6, Exercise 1
*/
#ifndef Point_HPP
#define Point_HPP
// include for cin/cout
#include <iostream>
using namespace std;
namespace AARONCAO
{
namespace CAD
{
class Point {
private:
double xCoordinate;
double yCoordinate;
public:
// Default constructor
Point();
// Constructor
Point(double x, double y);
// Explicit single-argument constructor
explicit Point(double value);
// Copy constructor
Point(const Point& pt);
// Destructor
~Point();
// Selector functions for each coordinate
double X() const;
double Y() const;
// Modifier functions for each coordinate using default inline
void X(double x) { xCoordinate = x; }
void Y(double y) { yCoordinate = y; }
// Convert point to string
string toString() const;
// Distance to the origin
double Distance() const;
//Distance between two points
double Distance(const Point& p) const;
// Negate the coordinates
Point operator - () const;
// Scale the coordinates
Point operator * (double factor) const;
// Add coordinates
Point operator + (const Point& p) const;
// Equally compare operator
bool operator == (const Point& p) const;
// Assignment operator
Point& operator = (const Point& source);
// Scale the coordinates & assign
Point& operator *= (double factor);
// Send to ostream
friend ostream& operator << (ostream& os, const Point& p);
};
// Normal inline functions for selecting coordinates
inline double Point::X() const { return xCoordinate; }
inline double Point::Y() const { return yCoordinate; }
}
}
#endif<file_sep>/QuantNetCpp/Level 3/Section 2.3/2.3.1/Point.cpp
/*
C++ code for HW3, Section 2.3, Exercise 1
*/
#include "Point.hpp"
#include <sstream>
#include <cmath>
#include <iostream>
using namespace std;
// Default constructor
Point::Point()
{
cout << "Default Constructor" << endl;
}
// Constructor
Point::Point(double x, double y)
{
xCoordinate = x;
yCoordinate = y;
cout << "Constructor" << endl;
}
// Copy constructor
Point::Point(const Point& pt)
{
xCoordinate = pt.xCoordinate;
yCoordinate = pt.yCoordinate;
cout << "Copy Constructor" << endl;
}
// Destructor
Point::~Point()
{
cout << "Destructor" << endl;
}
// Selector functions for each coordinate
double Point::getX()
{
return xCoordinate;
}
double Point::getY()
{
return yCoordinate;
}
// Modifier functions for each coordinate
void Point::setX(double x)
{
xCoordinate = x;
}
void Point::setY(double y)
{
yCoordinate = y;
}
// Convert point to string
string Point::toString()
{
stringstream pointStream;
// print format: Point(x, y)
pointStream << "Point(" << xCoordinate << ", " << yCoordinate << ")";
// convert to string
return pointStream.str();
}
// Distance to the origin
double Point::DistanceOrigin()
{
return sqrt(pow(xCoordinate, 2) + pow(yCoordinate, 2));
}
//Distance between two points
double Point::Distance(Point p)
{
return sqrt(pow(xCoordinate - p.getX(), 2) + pow(yCoordinate - p.getY(), 2));
}<file_sep>/C++/avlbst/BSTree.cpp
/**
* Models an binary search tree.
* @param <E> data type of elements of the tree
* @author Duncan, <NAME>
* Course: CS3102.01
* Programming Project #: 2
* @since 03-15-2017
* @see BSTree.h
*/
#include "BSTree.h"
#include <cstdlib>
#include <iostream>
#include <queue>
using namespace std;
/* Nested Node class definitions */
template <typename E>
BSTree<E>::Node::Node(E s)
{
data = s;
left = NULL;
right = NULL;
}
/* Outer BSTree class definitions */
template <typename E>
BSTree<E>::BSTree()
{
root = NULL;
count = 0;
}
template <typename E>
BSTree<E>::~BSTree()
{
recDestroy(root);
}
template <typename E>
bool BSTree<E>::isEmpty() const
{
return root == NULL;
}
template<typename E>
void BSTree<E>::insert(E item)
{
Node* tmp;
Node* newnode = new Node(item);
/* If it is the first node in the tree */
if (isEmpty())
{
root = newnode;
count++;
return;
}
/*find where it should go */
tmp = root;
while (1)
{
if (tmp->data == item)
{ /* Key already exists. */
tmp->data = item;
delete newnode; /* don’t need it */
return;
}
else if (tmp->data > item)
{
if (!(tmp->left))
{
/* If the key is less than tmp */
tmp->left = newnode;
count++;
return;
}
else
{
/* continue searching for insertion pt. */
tmp = tmp->left;
}
}
else
{
if (!(tmp->right))
{
/* If the key is greater than tmp */
tmp->right = newnode;
count++;
return;
}
else
/* continue searching for insertion point*/
tmp = tmp->right;
}
}
}
template<typename E>
bool BSTree<E>::inTree(E item) const
{
Node* tmp;
if (isEmpty())
return false;
/*find where it is */
tmp = root;
while (1)
{
if (tmp->data == item)
return true;
if (tmp->data > item)
{
if (!(tmp->left))
return false;
/* continue searching */
tmp = tmp->left;
}
else
{
if (!(tmp->right))
return false;
/* continue searching for insertion pt. */
tmp = tmp->right;
}
}
}
template<typename E>
void BSTree<E>::remove(const E& item)
{
Node* nodeptr;
nodeptr = search(item);
if (nodeptr)
{
remove(nodeptr);
count--;
}
}
template<typename E>
const E& BSTree<E>::retrieve(const E& key) const throw (BSTreeException)
{
Node* tmp;
if (isEmpty())
throw BSTreeException("Binary Search Tree Exception: tree empty on retrieve()");
tmp = root;
while(tmp)
{
if (tmp->data == key)
return tmp->data;
if (tmp->data > key)
tmp = tmp->left;
else
tmp = tmp->right;
}
if (tmp == NULL)
throw BSTreeException("Binary Search Tree Exception: key does not exist on retrieve()");
return tmp->data;
}
template<typename E>
void BSTree<E>::traverse(FuncType func)
{
traverse(root,func);
}
template<typename E>
int BSTree<E>::size() const
{
return count;
}
template<typename E>
int BSTree<E>::height() const
{
return height(root);
}
template<typename E>
int BSTree<E>::depth(const E& item) const
{
int depth = 0;
Node* ptr = root;
while (ptr -> data != item)
{
if (item < ptr -> data)
{
ptr = ptr -> left;
depth++;
}
else if (item > ptr -> data)
{
ptr = ptr -> right;
depthVal++;
}
else if (item == ptr -> data)
return depth;
else
return -1-depth;
}
return depth;
}
template<typename E>
void BSTree<E>::recDestroy(Node* root)
{
if (root)
{
if (root->left) recDestroy(root->left);
if (root->right) recDestroy(root->right);
delete root;
}
}
template<typename E>
typename BSTree<E>::Node* BSTree<E>::findParent(Node* node)
{
Node* tmp;
tmp = root;
if (tmp == node)
return NULL;
while(1)
{
assert(tmp->data != node->data);
if (tmp->data > node->data)
{
assert(tmp->left != NULL);
if (tmp->left == node)
return tmp;
tmp = tmp->left;
}
else
{
assert(tmp->right != NULL);
if (tmp->right == node)
return tmp;
tmp = tmp->right;
}
}
}
template<typename E>
void BSTree<E>::traverse(Node* node, FuncType func)
{
if (node)
{
traverse(node->left,func);
func(node->data);
traverse(node->right,func);
}
}
template<typename E>
typename BSTree<E>::Node* BSTree<E>::search(const E& item)
{
Node* tmp;
tmp = root;
while(tmp)
{
if (tmp->data == item)
return tmp;
if (tmp->data > item)
tmp = tmp->left;
else
tmp = tmp->right;
}
return tmp;
}
template<typename E>
bool BSTree<E>::remove(Node* node)
{
E data;
Node* parent;
Node* replacement;
parent = findParent(node);
if (node->left && node->right)
{
replacement = node->right;
while (replacement->left)
replacement = replacement->left;
data = replacement->data;
remove(replacement);
node->data = data;
return true;
}
else
{
if (node->left)
replacement = node->left;
else if (node->right)
replacement = node->right;
else
replacement = NULL;
if (!parent)
root = replacement;
else if (parent->left == node)
parent->left = replacement;
else
parent->right = replacement;
delete node;
return true;
}
}
template<typename E>
int BSTree<E>::height(Node* node) const
{
if (node == NULL)
return -1;
int leftSub = height(node->left);
int rightSub = height(node->right);
if (leftSub > rightSub)
return leftSub + 1;
else
return rightSub + 1;
}
template<typename E>
void BSTree<E>::levelTraverse(FuncType func)
{
if (isEmpty())
return;
Node* ptr = root;
queue<Node*> treeLevel;
treeLevel.push(root);
while (!treeLevel.empty())
{
ptr = treeLevel.front();
treeLevel.pop();
func(ptr -> data);
if (ptr -> left)
treeLevel.push(ptr -> left);
if (ptr -> right)
treeLevel.push(ptr -> right);
}
}<file_sep>/QuantNetCpp/Level 3/Section 2.3/2.3.6/TestCircle.cpp
/*
C++ code for HW3, Section 2.3, Exercise 6
*/
#include "Circle.hpp"
#include "Point.hpp"
#include <iostream>
#include <string>
using namespace std;
int main()
{
double x, y, r;
// User input for center and radius
cout << "Please enter an x and y coordinate for the center of the circle and the radius: " << endl;
cin >> x >> y >> r;
// Create center and point using center, radius
Point center(x, y);
Circle circle(center, r);
// Display circle center and radius
cout << circle.toString() << endl;
// Display diameter of circle
cout << "Diameter: " << circle.Diameter() << endl;
// Display area of circle
cout << "Area: " << circle.Area() << endl;
// Display circumference of circle
cout << "Circumference: " << circle.Circumference() << endl;
return 0;
}<file_sep>/C++/Proj04/Graph.cpp
/**
* Implementation file for the directed graph ADT
* @author Duncan, <NAME>
* @since 04-18-2017
* @see Graph.h
*/
#include "Graph.h"
#include <queue>
#include <stack>
#include <cstdlib>
using namespace std;
/* nested Vertex class definitions */
template<typename E>
Graph<E>::Vertex::Vertex(E s)
{
pNextVertex = NULL;
data = s;
inDeg = 0;
outDeg = 0;
pEdge = NULL;
processed = 0;
}
/* nested Edge class definitions */
template<typename E>
Graph<E>::Edge::Edge(double wt)
{
destination = NULL;
weight = wt;
pNextEdge = NULL;
}
/* Outer Graph class definitions */
template <typename E>
Graph<E>::Graph()
{
first = NULL;
order = 0;
}
template <typename E>
Graph<E>::~Graph()
{
Edge* edgePtr;
Vertex* vertexPtr;
vertexPtr = first;
while (first)
{
vertexPtr = first;
while(vertexPtr->pEdge)
{
edgePtr = vertexPtr->pEdge;
vertexPtr->pEdge = edgePtr->pNextEdge;
delete edgePtr;
}
first = vertexPtr->pNextVertex;
delete vertexPtr;
}
}
template <typename E>
void Graph<E>::insertVertex(E obj)
{
Vertex* newPtr;
Vertex* locPtr;
Vertex* predPtr;
assert(isVertex(obj) == false);
newPtr = new Vertex(obj);
newPtr->pNextVertex = NULL;
newPtr->data = obj;
newPtr->inDeg = 0;
newPtr->outDeg = 0;
newPtr->processed = 0;
newPtr->pEdge = NULL;
locPtr = first;
predPtr = NULL;
while (locPtr != NULL && obj > locPtr->data)
{
predPtr = locPtr;
locPtr = locPtr->pNextVertex;
}
/*key already exist. */
if (locPtr != NULL && obj==locPtr->data)
{
locPtr->data = obj;
delete newPtr;
return;
}
/* insert before first vertex */
if (predPtr == NULL)
first = newPtr;
else
predPtr->pNextVertex = newPtr;
newPtr->pNextVertex = locPtr;
order++;
}
template <typename E>
void Graph<E>::deleteVertex(E key)
{
Vertex* tmp;
Vertex* predPtr;
Vertex* walkPtr;
if (isEmpty())
return;
predPtr = NULL;
walkPtr = first;
/* does vertex exist */
while (walkPtr != NULL && key > walkPtr->data)
{
predPtr = walkPtr;
walkPtr = walkPtr->pNextVertex;
}
if (walkPtr == NULL || key != walkPtr->data)
return;
/* vertex found. Test degree */
if ((walkPtr->inDeg > 0) || (walkPtr->outDeg > 0))
return;
/* OK to delete */
if (predPtr == NULL)
{
tmp = first;
first = walkPtr->pNextVertex;
delete tmp;
}
else
{
tmp = predPtr->pNextVertex;
predPtr->pNextVertex = walkPtr->pNextVertex;
delete tmp;
}
order--;
}
template <typename E>
void Graph<E>::insertEdge(E fromKey, E toKey, double weight)
{
Edge* tmpEdge;
Edge* newEdge;
Edge* pred;
Vertex* tmpFrom;
Vertex* tmpTo;
if (isEmpty())
return;
newEdge = new Edge(weight);
/* check whether originating vertex exists */
tmpFrom = first;
while (tmpFrom != NULL && fromKey > tmpFrom->data)
tmpFrom = tmpFrom->pNextVertex;
if (tmpFrom == NULL || fromKey != tmpFrom->data)
return;
/* locate destination vertex */
tmpTo = first;
while (tmpTo != NULL && toKey > tmpTo->data)
tmpTo = tmpTo->pNextVertex;
if (tmpTo == NULL || toKey != tmpTo->data)
return;
/*check if edge already exists */
tmpEdge = tmpFrom->pEdge;
while (tmpEdge != NULL && tmpEdge->destination != tmpTo)
tmpEdge = tmpEdge->pNextEdge;
if (tmpEdge != NULL && tmpEdge->destination != NULL)
return;
tmpFrom->outDeg++;
tmpTo->inDeg++;
newEdge->destination = tmpTo;
newEdge->weight = weight;
newEdge->pNextEdge = NULL;
if (tmpFrom->pEdge == NULL)
{
tmpFrom->pEdge = newEdge;
return;
}
pred = NULL;
tmpEdge = tmpFrom->pEdge;
while (tmpEdge != NULL && tmpEdge->destination != tmpTo)
{
pred = tmpEdge;
tmpEdge = tmpEdge->pNextEdge;
}
if (pred == NULL)
tmpFrom->pEdge = newEdge;
else
pred->pNextEdge = newEdge;
newEdge->pNextEdge = tmpEdge;
}
template <typename E>
void Graph<E>::deleteEdge(E fromKey, E toKey)
{
Edge* tmpEdge;
Edge* pred;
Vertex* tmpFrom;
Vertex* tmpTo;
/* find source vertex */
tmpFrom = first;
while (tmpFrom != NULL && fromKey > tmpFrom->data)
tmpFrom = tmpFrom->pNextVertex;
if (tmpFrom == NULL || fromKey != tmpFrom->data)
return;
/* locate destination vertex */
tmpTo = first;
while (tmpTo != NULL && toKey >tmpTo->data)
tmpTo = tmpTo->pNextVertex;
if (tmpTo == NULL || toKey != tmpTo->data)
return;
/*check if edge does not exist */
tmpEdge = tmpFrom->pEdge;
pred = NULL;
while (tmpEdge != NULL && tmpEdge->destination != tmpTo)
{
pred = tmpEdge;
tmpEdge = tmpEdge->pNextEdge;
}
/* if edge does not exist */
if (tmpEdge == NULL)
return;
/* update degrees */
pred->pNextEdge = tmpEdge->pNextEdge;
tmpFrom->outDeg--;
tmpTo->inDeg--;
delete tmpEdge;
}
template <typename E>
double Graph<E>::retrieveEdge(E fromKey, E toKey) const throw (GraphException)
{
Edge* tmpEdge;
Vertex* tmpFrom;
Vertex* tmpTo;
/* find source vertex */
tmpFrom = first;
while (tmpFrom != NULL && fromKey > tmpFrom->data)
tmpFrom = tmpFrom->pNextVertex;
if (tmpFrom == NULL || fromKey != tmpFrom->data)
throw GraphException("Non-existent edge - retrieveEdge().");
/* locate destination vertex */
tmpTo = first;
while (tmpTo != NULL && toKey > tmpTo->data)
tmpTo = tmpTo->pNextVertex;
if (tmpTo == NULL || toKey != tmpTo->data)
throw GraphException("Non-existent edge - retrieveEdge().");
/*check if edge does not exist */
tmpEdge = tmpFrom->pEdge;
while (tmpEdge != NULL && tmpEdge->destination != tmpTo)
{
tmpEdge = tmpEdge->pNextEdge;
}
/* if edge does not exist */
if (tmpEdge == NULL)
throw GraphException("Non-existent edge - retrieveEdge().");
return tmpEdge->weight;
}
template <typename E>
const E& Graph<E>::retrieveVertex(const E& key) const throw (GraphException)
{
Vertex* tmp;
if (isEmpty())
throw GraphException("Non-existent vertex in call to retrieveVertex().");
tmp = first;
while (tmp != NULL && key != tmp->data)
tmp = tmp->pNextVertex;
if (tmp == NULL)
throw GraphException("Non-existent vertex - retrieveVertex().");
return tmp->data;
}
template <typename E>
void Graph<E>::bfsTraverse(FuncType func)
{
Vertex* walkPtr;
Vertex* toPtr;
queue<Vertex*> q;
Edge* edgeWalk;
Vertex* tmp;
if (isEmpty())
return;
walkPtr = first;
while (walkPtr != NULL)
{
walkPtr->processed = 0;
walkPtr = walkPtr->pNextVertex;
}
walkPtr = first;
while (walkPtr != NULL)
{
if (walkPtr->processed < 2)
{
if (walkPtr->processed < 1)
{
q.push(walkPtr);
walkPtr->processed = 1;
}
}
while (!q.empty())
{
tmp = q.front();
q.pop();
func(tmp->data);
tmp->processed = 2;
edgeWalk = tmp->pEdge;
while (edgeWalk != NULL)
{
toPtr = edgeWalk->destination;
if (toPtr->processed == 0)
{
toPtr->processed = 1;
q.push(toPtr);
}
edgeWalk = edgeWalk->pNextEdge;
}
}
walkPtr = walkPtr->pNextVertex;
}
}
template <typename E>
void Graph<E>::dfsTraverse(FuncType func)
{
Vertex* walkPtr;
Vertex* toPtr;
stack<Vertex*> s;
Edge* edgeWalk;
Vertex* tmp;
if (isEmpty())
return;
walkPtr = first;
while(walkPtr != NULL)
{
walkPtr->processed = 0;
walkPtr = walkPtr->pNextVertex;
}
walkPtr = first;
while (walkPtr != NULL)
{
if (walkPtr->processed < 2)
{
if (walkPtr->processed < 1)
{
walkPtr->processed = 1;
s.push(walkPtr);
}
while (!s.empty())
{
tmp = s.top();
edgeWalk = tmp->pEdge;
while(edgeWalk != NULL)
{
toPtr = edgeWalk->destination;
if (toPtr->processed == 0)
{
toPtr->processed = 1;
s.push(toPtr);
edgeWalk = toPtr->pEdge;
}
else
edgeWalk = edgeWalk->pNextEdge;
}
tmp = s.top();
s.pop();
func(tmp->data);
tmp->processed = 2;
}
}
walkPtr = walkPtr->pNextVertex;
}
}
template <typename E>
bool Graph<E>::isEmpty() const
{
return first == NULL;
}
template <typename E>
int Graph<E>::size() const
{
return order;
}
template <typename E>
bool Graph<E>::isVertex(E key) const
{
Vertex* tmp;
if (isEmpty())
return false;
tmp = first;
while (tmp != NULL && key != tmp->data)
tmp = tmp->pNextVertex;
if (tmp == NULL)
return false;
return true;
}
/*--------------------Begin Code Augmentation ---------------*/
template <typename E>
bool Graph<E>::isEdge(E fromKey, E toKey) const
{
Vertex* tempPrev = first;
Vertex* tempDest = first;
Edge* temp = tempPrev -> pEdge;
while (tempDest != NULL && retrieveVertex(toKey) != tempDest -> data)
tempDest = tempDest->pNextVertex;
if (tempDest == NULL || retrieveVertex(toKey) != tempDest->data)
return false;
while (tempPrev != NULL && retrieveVertex(fromKey) != tempPrev -> data)
tempPrev = tempPrev -> pNextVertex;
if (tempPrev == NULL || retrieveVertex(fromKey) != tempPrev -> data)
return false;
while (temp != NULL && temp -> destination != tempDest)
{
temp = temp -> pNextEdge;
}
return !(temp == NULL);
}
template <typename E>
bool Graph<E>::isReachable(E fromKey, E toKey) const
{
Vertex* temp;
Vertex* tempPrev = first;
Vertex* tempDest = first;
Vertex* position = tempPrev;
Vertex* nextPtr;
Edge* edgePosition;
queue<Vertex*> myQueue;
while (tempPrev != NULL && fromKey > tempPrev->data)
tempPrev = tempPrev->pNextVertex;
if (tempPrev == NULL || fromKey != tempPrev->data)
return false;
while (tempDest != NULL && toKey > tempDest->data)
tempDest = tempDest->pNextVertex;
if (tempDest == NULL || toKey != tempDest->data)
return false;
while (position != NULL)
{
position -> processed = 0;
position = position -> pNextVertex;
}
while (position != NULL)
{
if (position -> processed < 2)
{
if (position -> processed < 1)
{
myQueue.push(position);
position -> processed = 1;
}
}
while (!myQueue.empty())
{
temp = myQueue.front();
myQueue.pop();
temp -> processed = 2;
edgePosition = temp -> pEdge;
while (edgePosition != NULL)
{
nextPtr = edgePosition -> destination;
if (nextPtr -> processed == 0)
{
nextPtr -> processed = 1;
myQueue.push(nextPtr);
}
edgePosition = edgePosition -> pNextEdge;
}
if (tempDest -> processed == 2)
return true;
}
return false;
}
return false;
}
template <typename E>
int Graph<E>::countEdges() const
{
Vertex* tempPrev = first;
Edge* tempEdge = tempPrev -> pEdge;
int count = 0;
while (tempEdge != NULL)
{
tempEdge = tempEdge->pNextEdge;
count++;
}
return count;
}
/*--------------------End Code Augmentation ---------------*/
template <typename E>
int Graph<E>::outDegree(E key) const throw (GraphException)
{
Vertex* tmp;
if (isEmpty())
throw GraphException("Non-existent vertex - outDegree().");
tmp = first;
while (tmp != NULL && key != tmp->data)
tmp = tmp->pNextVertex;
if (tmp == NULL)
throw GraphException("Non-existent vertex - outDegree().");
return tmp->outDeg;
}
template <typename E>
int Graph<E>::inDegree(E key) const throw (GraphException)
{
Vertex* tmp;
if (isEmpty())
throw GraphException("Non-existent vertex - inDegree().");
tmp = first;
while (tmp != NULL && key != tmp->data)
tmp = tmp->pNextVertex;
if (tmp == NULL)
throw GraphException("Non-existent vertex - inDegree().");
return tmp->inDeg;
}
<file_sep>/C/project5/ppm.c
#include "ppm.h"
#include "stdlib.h"
#include "scanner.h"
// this function adds ppmPic to the myPic of ppmPic
ppmPic *read(char *filename)
{
ppmPic *myPic;
myPic=(ppmPic*)malloc(sizeof(ppmPic));
FILE *fp;
fp = fopen(filename, "r");
fscanf(fp, "P3 %d %d %d\n", &myPic->rows, &myPic->cols, &myPic->colors);
myPic->pixels = malloc(sizeof(Pixel *) * myPic->rows);
int i, j;
for (i=0; i < myPic->rows; i++)
{
myPic->pixels[i]=malloc(sizeof(Pixel) * myPic->cols);
for (j=0; j < myPic->cols; j++)
{
fscanf(fp, "%d", &myPic->pixels[i][j].red);
fscanf(fp, "%d", &myPic->pixels[i][j].green);
fscanf(fp, "%d", &myPic->pixels[i][j].blue);
}
}
fclose(fp);
return myPic;
}
void write(char *filename, ppmPic *myPic)
{
FILE *fp;
fp = fopen(filename, "w");
fprintf(fp, "P3\n");
fprintf(fp, "%d %d %d\n", myPic->rows, myPic->cols, myPic->colors);
int i, j;
for (i=0; i < myPic->rows; i++)
{
for (j=0; j < myPic->cols; j++)
{
fprintf(fp, "%d ", myPic->pixels[i][j].red);
fprintf(fp, "%d ", myPic->pixels[i][j].green);
fprintf(fp, "%d ", myPic->pixels[i][j].blue);
}
fprintf(fp, "\n");
}
fclose(fp);
return;
}
void copy(char *filename, ppmPic *myPic)
{
FILE *fp;
fp = fopen(filename, "w");
fprintf(fp, "P3\n");
fprintf(fp, "%d %d %d\n", myPic->rows, myPic->cols, myPic->colors);
int i, j;
for (i=0; i < myPic->rows; i++)
{
for (j=0; j < myPic->cols; j++)
{
fprintf(fp, "%d ", myPic->pixels[i][j].red);
fprintf(fp, "%d ", myPic->pixels[i][j].green);
fprintf(fp, "%d ", myPic->pixels[i][j].blue);
}
fprintf(fp, "\n");
}
fclose(fp);
return;
}
void grow(char *filename, ppmPic *myPic)
{
FILE *fp;
fp = fopen(filename, "w");
fprintf(fp, "P3\n");
fprintf(fp, "%d %d %d\n", 2*myPic->rows, 2*myPic->cols, myPic->colors);
int i, j;
for (i=0; i < myPic->cols; i++)
{
for (j=0; j < myPic->rows; j++)
{
fprintf(fp, "%d ", myPic->pixels[i][j].red);
fprintf(fp, "%d ", myPic->pixels[i][j].green);
fprintf(fp, "%d ", myPic->pixels[i][j].blue);
fprintf(fp, "%d ", myPic->pixels[i][j].red);
fprintf(fp, "%d ", myPic->pixels[i][j].green);
fprintf(fp, "%d ", myPic->pixels[i][j].blue);
}
fprintf(fp, "\n");
for (j=0; j < myPic->cols; j++)
{
fprintf(fp, "%d ", myPic->pixels[i][j].red);
fprintf(fp, "%d ", myPic->pixels[i][j].green);
fprintf(fp, "%d ", myPic->pixels[i][j].blue);
fprintf(fp, "\n");
fprintf(fp, "%d ", myPic->pixels[i][j].red);
fprintf(fp, "%d ", myPic->pixels[i][j].green);
fprintf(fp, "%d ", myPic->pixels[i][j].blue);
}
fprintf(fp, "\n");
}
fclose(fp);
return;
}
void shrink(char *filename, ppmPic *myPic)
{
FILE *fp;
fp = fopen(filename, "w");
fprintf(fp, "P3\n");
fprintf(fp, "%d %d %d\n", (myPic->rows)/2, (myPic->cols)/2, myPic->colors);
int i, j;
for (i=0; i < myPic->cols; i=i+2)
{
for (j=0; j < myPic->rows; j=j+2)
{
fprintf(fp, "%d ", (myPic->pixels[i][j].red+myPic->pixels[i+1][j].red+myPic->pixels[i][j+1].red+myPic->pixels[i+1][j+1].red)/4);
fprintf(fp, "%d ", (myPic->pixels[i][j].green+myPic->pixels[i+1][j].green+myPic->pixels[i][j+1].green+myPic->pixels[i+1][j+1].green)/4);
fprintf(fp, "%d ", (myPic->pixels[i][j].blue+myPic->pixels[i+1][j].blue+myPic->pixels[i][j+1].blue+myPic->pixels[i+1][j+1].blue)/4);
}
fprintf(fp, "\n");
}
fclose(fp);
return;
}<file_sep>/QuantNetCpp/Level 4/Section 2.5/2.5.2/TestPtrArr.cpp
/*
C++ code for HW4, Section 2.5, Exercise 2
*/
// include header and source file
#include "Point.hpp"
// include for cin/cout
#include <iostream>
#include <string>
using namespace std;
// main function
int main()
{
// Create an array of Point pointers with 3 elements on the heap.
Point** ptrArr = new Point*[3];
// Create for each element in the array a point on the heap.
ptrArr[0] = new Point(1.0, -2.0);
ptrArr[1] = new Point(-3.0, 4.0);
ptrArr[2] = new Point(5.0, -6.0);
// Iterate the array and print each point in the array.
for(int i = 0; i < 3; i++)
{
cout << *ptrArr[i] << endl;
}
// Iterate the array again and delete each point in the array.
for (int i = 0; i < 3; i++)
{
delete ptrArr[i];
}
// Delete the array itself.
delete[] ptrArr;
return 0;
}<file_sep>/QuantNetCpp/Level 4/Section 2.5/2.5.1/TestDynamObj.cpp
/*
C++ code for HW4, Section 2.5, Exercise 1
*/
// include header and source file
#include "Point.hpp"
// include for cin/cout
#include <iostream>
#include <string>
using namespace std;
// main function
int main()
{
// declare points with new
Point* p1 = new Point(1, -2);
Point* p2 = new Point(*p1);
Point* p3 = new Point(-3, 4);
cout << "p1 = " << *p1 << ", p2 = " << *p2 << ", p3 = " << *p3 << endl;
// call distance function
cout << "d(p1, p3) = " << (*p1).Distance(*p3) << endl;
delete p1;
delete p2;
delete p3;
int size;
// get size of array from user input
cout << "Input size of array: " << endl;
cin >> size;
// compiler error when trying to create an array on the stack
//Point p[size];
// but we are allowed to create on the heap with new
Point* p = new Point[size];
delete[] p;
return 0;
}<file_sep>/QuantNetCpp/Level 1/Section 1.5/Exercise 3/Main.c
/*
C code for HW1, Section 1.5, Exercise 3
*/
// Preprocessor for include files
#include <stdio.h> // C style I/O
#include "Print.h" // Print method, Main.c and Print.c must be compiled together
// Main function
int main()
{
int i = 5;
print(i);
return 0;
}<file_sep>/QuantNetCpp/Level 5/Section 3.5/3.5.5/TestShape.cpp
/*
C++ code for HW5, Section 3.5, Exercise 5
*/
// include header and source file
#include "Point.hpp"
#include "Line.hpp"
#include "Circle.hpp"
#include "Shape.hpp"
using namespace std;
// main function
int main()
{
Point p(1, -2);
Line l(Point(-3, 4), Point(5, -6));
p.Print();
l.Print();
// The correct information is printed
return 0;
}<file_sep>/QuantNetCpp/Level 4/Section 2.5/2.5.3/TestArrClass.cpp
/*
C++ code for HW4, Section 2.5, Exercise 3
*/
// include header and source file
#include "Point.hpp"
#include "Array.hpp"
// include for cin/cout
#include <iostream>
#include <string>
using namespace std;
// main function
int main()
{
// testing constructors
Array arr1;
Array arr2(2);
Array arr3(arr2);
// testing assignment operator.
arr1 = arr2;
// testing []
arr1[0] = Point(-1, 2);
arr1[1] = Point(3, -4);
// testing Size()
cout << "arr1 size = " << arr1.Size() << endl;
// testing const []
cout << "arr1[0] = " << arr1[0] << endl;
// testing GetElement()
cout << "arr1[0] = " << arr1.GetElement(0) << endl;
// testing SetElement().
arr1.SetElement(0, Point(-5, 6));
arr2.SetElement(1, Point(7, -8));
return 0;
}<file_sep>/C/lab4/day.c
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main(int argc, char *argv[])
{
int x;
x = atoi(argv[2]);
int result;
if (strcmp(argv[1], "1") == 0)
{
result = x;
}
else if (strcmp(argv[1], "2") == 0)
{
result = x+31;
}
else if (strcmp(argv[1], "3") == 0)
{
result = x+31+29;
}
else if (strcmp(argv[1], "4") == 0)
{
result = x+31+29+31;
}
else if (strcmp(argv[1], "5") == 0)
{
result = x+31+29+31+30;
}
else if (strcmp(argv[1], "6") == 0)
{
result = x+31+29+31+30+31;
}
else if (strcmp(argv[1], "7") == 0)
{
result = x+31+29+31+30+31+30;
}
else if (strcmp(argv[1], "8") == 0)
{
result = x+31+29+31+30+31+30+31;
}
else if (strcmp(argv[1], "9") == 0)
{
result = x+31+29+31+30+31+30+31+31;
}
else if (strcmp(argv[1], "10") == 0)
{
result = x+31+29+31+30+31+30+31+31+30;
}
else if (strcmp(argv[1], "11") == 0)
{
result = x+31+29+31+30+31+30+31+31+30+31;
}
else if (strcmp(argv[1], "12") == 0)
{
result = x+31+29+31+30+31+30+31+31+30+31+30;
}
printf("Your day of the year is %d", result);
return 0;
}<file_sep>/C++/processcontrol/Heap.cpp
/**
* Implementation for the Heap<E> class
* @author <NAME>
* @since 2017-02-16
* Course: CS3102.01
* Programming Project #: 1
* Instructor: Dr. Duncan
* @see Heap.h
*/
#include "Heap.h"
using namespace std;
template <typename E>
Heap<E>::Heap()
{
// compiler-generated code .. no need to implement this
}
template <typename E>
Heap<E>::~Heap()
{
while(tree.size() > 0)
tree.pop_back();
}
template <typename E>
bool Heap<E>::isEmpty() const
{
return tree.empty();
}
template<typename E>
void Heap<E>::insert(E item)
{
tree.push_back(item);
int place = tree.size()-1;
int parent = (place-1)/2;
while (parent >= 0 && tree[place] > tree[parent])
{
swap(place, parent);
place = parent;
parent = (place-1)/2;
}
}
template<typename E>
E Heap<E>::remove() throw (HeapException)
{
E removed = tree[0];
tree[0] = tree[tree.size()-1];
int sizeOf = tree.size()-1;
reheapify(0, sizeOf);
return removed;
}
template<typename E>
E& Heap<E>::peek() throw (HeapException)
{
return tree[0];
}
template<typename E>
int Heap<E>::size()const
{
return tree.size();
}
template<typename E>
void Heap<E>::swap(int place, int parent)
{
E temp;
temp = tree[place];
tree[place] = tree[parent];
tree[parent] = temp;
}
template<typename E>
void Heap<E>::reheapify(int root, int eSize)
{
int maxChild, rightChild, leftChild;
leftChild = 2*root+1;
rightChild = 2*root+2;
if (leftChild == eSize)
maxChild = leftChild;
else
{
if (tree[leftChild] <= tree[rightChild])
maxChild = rightChild;
else
maxChild = leftChild;
}
if (tree[root] < tree[maxChild])
{
swap(root, maxChild);
reheapify(maxChild, eSize);
}
}
<file_sep>/QuantNetCpp/Level 5/Section 3.6/3.6.2/TestArray.cpp
/*
C++ code for HW5, Section 3.6, Exercise 2
*/
// include header and source file
#include "Point.hpp"
#include "Array.hpp"
#include "Shape.hpp"
#include "ArrayException.hpp"
using namespace std;
// main function
int main()
{
Array arr(1);
try
{
cout << arr.GetElement(2) << endl;
}
catch (ArrayException& arrEx)
{
cout << arrEx.GetMessage() << endl;
}
return 0;
}<file_sep>/QuantNetCpp/Level 2/Section 1.7/Exercise 3/exercise3.cpp
/*
C code for HW2, Section 1.7, Exercise 3
*/
/* Predict what will be printed on the screen */
#include <stdio.h>
#define PRD(a) printf("%d", (a) ) // Print decimal
#define NL printf("\n"); // Print new line
// Create and initialize array
int a[] = { 0, 1, 2, 3, 4 };
int main()
{
int i;
int* p;
for (i = 0; i <= 4; i++) PRD(a[i]); // 1 Output: 01234
NL;
for (p = &a[0]; p <= &a[4]; p++) PRD(*p); // 2 Output: 01234
NL;
NL;
for (p = &a[0], i = 0; i <= 4; i++) PRD(p[i]); // 3 Output: 01234
NL;
for (p = a, i = 0; p + i <= a + 4; p++, i++) PRD(*(p + i)); // 4 Output: 024
NL;
NL;
for (p = a + 4; p >= a; p--) PRD(*p); // 5 Output: 43210
NL;
for (p = a + 4, i = 0; i <= 4; i++) PRD(p[-i]); // 6 Output: 43210
NL;
for (p = a + 4; p >= a; p--) PRD(a[p - a]); // 7 Output: 43210
NL;
return 0;
}<file_sep>/QuantNetCpp/Level 5/Section 3.6/3.6.1/TestArray.cpp
/*
C++ code for HW5, Section 3.6, Exercise 1
*/
// include header and source file
#include "Point.hpp"
#include "Array.hpp"
#include "Shape.hpp"
using namespace std;
// main function
int main()
{
Array arr(1);
try
{
cout << arr.GetElement(2) << endl;
}
catch (int error)
{
if (error == -1)
{
cout << "Out of bounds error!" << endl;
}
}
return 0;
}<file_sep>/QuantNetCpp/Level 3/Section 2.2/2.2.1/TestPoint.cpp
/*
C++ code for HW3, Section 2.2, Exercise 1
*/
// include header and source file
#include "Point.hpp"
// #include "Point.hpp"
// include for cin/cout
#include <iostream>
#include <string>
using namespace std;
// main function
int main() {
double x, y;
// Prompt user for input
cout << "Please input an x- and y- coordinate." << endl;
// User input for x- and y-coordinates
cin >> x >> y;
// Create a Point object
Point p1;
// Set the coordinates using the setter functions
p1.setX(x);
p1.setY(y);
// Print the description of the point
cout << p1.toString() << endl;
// Print the point coordinates using the selector functions
cout << "X Coordinate: " << p1.getX() << endl;
cout << "Y Coordinate: " << p1.getY() << endl;
return 0;
}<file_sep>/C/project4/Makefile
main: main.o scanner.o game.o
gcc -Wall -g -o main main.o scanner.o game.o
scanner.o: scanner.c scanner.h
gcc -Wall -g -c scanner.c
main.o: main.c scanner.h game.h
gcc -Wall -g -c main.c
game.o: game.c game.h
gcc -Wall -g -c game.c
clean:
rm -f *.o main
<file_sep>/QuantNetCpp/Level 1/Section 1.3/Exercise 1/exercise1.c
/*
C code for HW1, Section 1.3, Exercise 1
*/
// Preprocessor for include files
#include <stdio.h> // C style I/O
// Main function
int main()
{
// Print the text
printf("My first C-program\nis a fact!\nGood, isn’t it?\n");
return 0;
}
<file_sep>/QuantNetCpp/Level 2/Section 1.7/Exercise 2/exercise2.c
/*
C code for HW2, Section 1.7, Exercise 2
*/
// Preprocessor for include files
#include <stdio.h> // C style I/O
// Define max String length
#define MAXLINE 30
// Declare the String length function
int Length(char str[]);
// Main function
int main()
{
// Line of maximum 30 chars + \0
char string[MAXLINE + 1];
// Input character
int c;
// Counter
int i = 0;
// Print intro text
printf("Type up to %d chars. Exit with ^Z\n", MAXLINE);
// Get the characters
while ((c = getchar()) != EOF && i < MAXLINE)
{
// Append entered character to string
string[i++] = (char)c;
}
// String must be closed with \0
string[i] = '\0';
printf("String length is %d\n", Length(string));
return 0;
}
// Implement the length function
int Length(char str[])
{
int len = 0;
while (str[len] != '\0')
{
// add 1 to count if we are not at the end of the string
len++;
}
return --len;
}<file_sep>/QuantNetCpp/Level 4/Section 2.4/2.4.3/TestPoint.cpp
/*
C++ code for HW4, Section 2.4, Exercise 3
*/
// include header and source file
#include "Point.hpp"
// include for cin/cout
#include <iostream>
#include <string>
using namespace std;
// main function
int main()
{
Point p(1.0, 1.0);
//if (p == 1.0) cout << "Equal!" << endl;
//else cout << "Not equal" << endl;
if (p == (Point)1.0) cout << "Equal!" << endl;
return 0;
}<file_sep>/QuantNetCpp/Level 2/Section 1.9/Exercise 2/exercise2.c
/*
C code for HW2, Section 1.9, Exercise 2
*/
// Preprocessor for include files
#include <stdio.h> // C style I/O
#include <stdlib.h>
// Main function
int main()
{
int charCount = 0;
// Create char array to hold each line of characters
char line[99999];
char fileName[50];
// User input file name
printf("Please input file name including extension.\n");
// Get file name
gets(fileName);
// Open file for reading and appending
FILE* fp;
fopen_s(&fp, fileName, "a+");
printf("Please write characters to your heart's content. Hit ENTER to display each line. Type CTRL + A to end the program.\n");
// User inputs char
int chIn = getchar();
// CTRL+A is 1, program's stop condition
while (chIn != 1)
{
// line feed char is 10, used to end line
if (charCount > 0 && chIn == 10)
{
// Append line to file
for (int i = 0; i <= charCount - 1; i++)
{
fputc(line[i], fp);
}
fputc('\n', fp);
// reset character count
charCount = 0;
continue;
}
// store input character in next empty slot of the array
line[charCount] = chIn;
// increment the count
charCount++;
// get next input before rerunning the loop
chIn = getchar();
}
// if there are characters left in the array, output them
if (charCount > 0)
{
// Append line to file
for (int i = 0; i <= charCount - 1; i++)
{
fputc(line[i], fp);
}
fputc('\n', fp);
}
printf("CTRL + A is a correct ending.\n");
// Close the file.
fclose(fp);
return 0;
}<file_sep>/QuantNetCpp/Level 4/Section 2.6/2.6.1/Line.hpp
/*
Header file for HW4, Section 2.6, Exercise 1
*/
#ifndef Line_HPP
#define Line_HPP
// include header and source file
#include "Point.hpp"
// include for cin/cout
#include <iostream>
using namespace std;
namespace AARONCAO
{
namespace CAD
{
class Line
{
private:
// Starting point
Point p1;
// End point
Point p2;
public:
// Default constructor
Line();
// Constructor
Line(const Point& p1, const Point& p2);
// Copy constructor
Line(const Line& line);
// Destructor
~Line();
// Selector functions for the start and end points
Point P1() const;
Point P2() const;
// Modifier functions for the start and end points
void P1(const Point& point1);
void P2(const Point& point2);
// Length of the line
double Length() const;
// Line description
string toString() const;
// Assignment operator
Line& operator = (const Line& source);
// Send to ostream
friend ostream& operator << (ostream& os, const Line& l);
};
}
}
#endif<file_sep>/QuantNetCpp/Level 4/Section 2.4/2.4.2/TestOperators.cpp
/*
C++ code for HW4, Section 2.4, Exercise 2
*/
// include header and source file
#include "Point.hpp"
#include "Line.hpp"
#include "Circle.hpp"
// include for cin/cout
#include <iostream>
#include <string>
using namespace std;
// main function
int main()
{
// testing point operators
Point p1(-5, 7);
cout << "p1 = " << p1 << endl;
// testing line operators
const Point p2(0, 0);
const Point p3(-1, -2);
Line l1(p2, p3);
cout << "l1 = " << l1 << endl;
// testing circle operators
const Point center(0, 0);
double radius = 1.0;
Circle c1(center, radius);
cout << "c1 = " << c1 << endl;
return 0;
}<file_sep>/C++/polynomial/PolynomialDemo.cpp
/**
* Describes a univariate polynomial and basic operations
* on it.
* CSC 3102 Homework Assignment # 1
* @author <NAME>
* @since 01-22-2017
* @see Polynomial.h
* @see Polynomial.cpp
*/
#include <iostream>
#include <string>
#include <cstdlib>
#include <chrono>
#include "Polynomial.h"
using namespace std::chrono;
int main()
{
/**
* rand() is kind of outdated nowadays isn't it?
* I think the <random> library has random generators with uniform distribution like the Mersenne-Twister
* something that looks like
* random_device rd;
* mt19937 rng(rd());
* uniform_int_distribution<int> uni(min,max);
* and this way we don't even have to worry about using time as a seed
*/
srand(time(NULL));
/**
* Initializing test case arrays
*/
double coefficients1[7] = {4, 5, 0, 2, 3, 5, -1};
double coefficients2[6] = {12.5, 0, 0, -1, 7.2, -9.5};
/**
* Constructing polynomial classes
*/
Polynomial poly1(coefficients1, 6);
Polynomial poly2(coefficients2, 5);
cout << "f := " << poly1.str() << endl;
cout << "deg f(x) := " << poly1.degree() << endl;
cout << "Using Horner's method, f(3) = " << poly1.hornerEval(3) << endl;
cout << "Using naive method, f(3) = " << poly1.naiveEval(3) << endl << endl;
cout << "g := " << poly2.str() << endl;
cout << "deg g(x) := " << poly2.degree() << endl;
cout << "Using Horner's method, g(-7.25) = " << poly2.hornerEval(-7.25) << endl;
cout << "Using naive method, g(-7.25) = " << poly2.naiveEval(-7.25) << endl << endl;
cout << "Empirical Analysis of Naive vs Horner’s Methods" << endl;
cout << "on 10 Polynomials with Random Coefficients" << endl;
cout << "================================================" << endl;
cout << "Degree Naive Time (ns) Horner’s Time (ns)" << endl;
cout << "------------------------------------------------" << endl;
/**
* Testing execution times
* Creating a double variable randX that will store a random double in [0.5, 1.2]
* Allocating memory dynamically for the coefficient array so it can be reassigned
*/
double randX;
double *coefficients;
for (int i = 1; i <= 10; i++)
{
/**
* Changing the size of the coefficient array per iteration
*/
coefficients = new double[i*1000];
/**
* Filling the coefficient array with values
*/
for (int j = 0; j < i*1000; j++)
{
coefficients[j] = rand()%6;
}
/**
* Constructin the polynomial
*/
Polynomial poly(coefficients, i*1000);
/**
* Starting the high resolution clock for naiveEval
*/
auto start = high_resolution_clock::now();
/**
* Starting the high resolution clock for naiveEval
*/
for (int k = 0; k < 10; k++)
{
/**
* Running the method 10 times gives a better measurement of elapsed time
* Since rand() returns an int, this is a workaround to have it return a double
*/
randX = 0.5+((double)rand()/RAND_MAX)*(1.2-0.5);
poly.naiveEval(randX);
}
auto elapsed = high_resolution_clock::now() - start;
/**
* Since the method was ran 10 times, the duration is divided by 10
*/
auto duration = (duration_cast<nanoseconds>(elapsed).count())/10;
cout << i*1000 <<" " << duration << " ";
/**
* Same process for hornerEval
*/
start = high_resolution_clock::now();
for (int k = 0; k < 10; k++)
{
poly.hornerEval(randX);
}
elapsed = high_resolution_clock::now() - start;
duration = (duration_cast<nanoseconds>(elapsed).count())/10;
cout << duration << endl;
/**
* Freeing the coefficients array for reuse
*/
delete [] coefficients;
}
cout << "------------------------------------------------" << endl;
return 0;
}<file_sep>/C/lab4/range.c
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main(int argc, char *argv[])
{
int array[5];
array[0] = atoi(argv[1]);
array[1] = atoi(argv[2]);
array[2] = atoi(argv[3]);
array[3] = atoi(argv[4]);
array[4] = atoi(argv[5]);
int range, i;
int max=array[0];
int min=array[0];
for (i=0; i<5; i++)
{
if (array[i]>max)
{
max = array[i];
}
}
for (i=0; i<5; i++)
{
if (array[i]<min)
{
min = array[i];
}
}
range = max - min;
printf("The range is %d", range);
return 0;
}<file_sep>/QuantNetCpp/Level 7/7.1.3/STLAlgorithms.cpp
/*
C++ code for HW7, Exercise 3
*/
/*
STL already contains many algorithms that work with containers.
Use the count_if algorithm to count the number of elements smaller than a certain number.
The count_if function accepts a functor.
Thus pass it a global function that checks the double input is smaller than a certain value.
Replace the global checking function, by a function object.
This is a class that overload the round bracket operator that in this case has the same signature and functionality as the global function you created previously.
Only in this case the value to check for should not be a ‘literal’ value, but taken from a data member that was set in the constructor of the function object.
*/<file_sep>/QuantNetCpp/Level 4/Section 2.6/2.6.1/TestNamespace.cpp
/*
C++ code for HW4, Section 2.6, Exercise 1
*/
// include header and source file
#include "Point.hpp"
#include "Line.hpp"
#include "Circle.hpp"
#include "Array.hpp"
// include for cin/cout
#include <iostream>
#include <string>
using namespace std;
// main function
int main()
{
// namespace for Point
AARONCAO::CAD::Point p1(1, -2);
AARONCAO::CAD::Point p2(-3, 4);
cout << "p1 = "<< p1 << ", p2 = " << p2 << endl;
// using namespace for Line
using AARONCAO::CAD::Line;
cout << "Line between p1 and p2 = " << Line(p1, p2) << endl;
// using namespace for Containers
using namespace AARONCAO::Containers;
Array arr(2);
arr[0] = AARONCAO::CAD::Point(5, -6);
cout << "First element of arr = " << arr[0] << endl;
// using the namespace for Circle
namespace ME = AARONCAO::CAD;
using ME::Circle;
Circle circ(ME::Point(0, 0), 1);
cout << "Unit circle = " << circ << endl;
return 0;
}<file_sep>/QuantNetCpp/Level 4/Section 2.4/2.4.4/TestOperators.cpp
/*
C++ code for HW4, Section 2.4, Exercise 4
*/
// include header and source file
#include "Point.hpp"
#include "Line.hpp"
// include for cin/cout
#include <iostream>
#include <string>
using namespace std;
// main function
int main()
{
// testing point operators
Point p1(-5, 7);
cout << "p1 = " << p1 << endl;
// testing line operators
const Point p2(0, 0);
const Point p3(-1, -2);
Line l1(p2, p3);
cout << "l1 = " << l1 << endl;
return 0;
}<file_sep>/QuantNetCpp/Level 1/Section 1.3/Exercise 5/exercise5.c
/*
C code for HW1, Section 1.3, Exercise 5
*/
// Preprocessor for include files
#include <stdio.h> // C style I/O
// Main function
int main()
{
int i = 10; // i equals 10
int j = 20; // j equals 20
int x;
printf("Initial Values: i = %d, j= %d\n", i, j);
// Postfix operator
x = j + i--;
printf("x = j + i-- evaluates to:\n");
printf("x = %d, i = %d, j = %d\n\n", x, i, j);
/*
x equals 30 and i equals 9
equivalent code:
x = i + j;
i = i - 1;
*/
// Prefix operator
i = 10;
x = j + --i;
printf("x = j + --i evaluates to:\n");
printf("x = %d, i = %d, j = %d\n\n", x, i, j);
/*
x equals 29 and i equals 9
equivalent code:
i = i - 1;
x = i + j;
*/
return 0;
}
<file_sep>/QuantNetCpp/Level 1/Section 1.4/Exercise 4/exercise4.c
/*
C code for HW1, Section 1.4, Exercise 4
*/
// Preprocessor for include files
#include <stdio.h> // C style I/O
// Main function
int main()
{
int startTempF = 0;
int endTempF = 300;
int stepSize = 20;
int degF = startTempF;
double degC;
printf("Degrees F: \t Degrees C:\n");
while(degF <= endTempF)
{
degC = (double) 5 * (degF - 32)/9;
printf("%d \t %10.1f\n", degF, degC);
degF += stepSize;
}
return 0;
}
<file_sep>/C/project4/game.h
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
typedef struct item {
char *name;
int count;
struct item *next;
} Items;
typedef struct player {
char *name;
Items *things;
struct player *next;
} Players;
Players *add(Players *, char *);
void printPlayers(Players *);
void addItem(Players *, char *, char *, int);
void printEverything(Players *);
int countPlayers(Players *);
int countItems(Players *, char *);
int numItems(Players *, char *);
Players *orderedAdd(Players *, char *);
void orderedAddItem(Players *, char *p, char *i, int n);
void gives(Players *, char *, char *, char *);<file_sep>/QuantNetCpp/Level 6/4.2a/4.2a.1/Array.hpp
/*
Header file for HW5, Section 3.6, Exercise 2
*/
#ifndef Array_HPP
#define Array_HPP
// include header and source file
#include "Point.hpp"
using namespace std;
template <typename T>
class Array {
private:
T* elements;
int len;
public:
// Default Consturctor
Array();
// Constructor
Array(int size);
// Copy constructor
Array(const Array<T>& arr);
// Destructor
~Array();
// Selector functions for size and elements
int Size() const;
T& GetElement(int index) const;
// Modifier function for elements
void SetElement(int index, const T& newPoint);
// Assignment operator
Array<T>& operator = (const Array<T>& source);
// Square bracket operator
T& operator [] (int index);
// Const square bracket operator for read-only and so that arrays can be declared as const
const T& operator [] (int index) const;
};
#ifndef Array_CPP
#include "Array.cpp"
#endif
#endif<file_sep>/C/project2/wash.c
// <NAME>, this program determines what you want to wear, its condition, and whether you should wash it or wear it.
#include <stdio.h>
#include <string.h>
//takes the initial input of shirt, pants, or other
int considering(char *prompt)
{
char str[100];
printf("What are you considering? ");
scanf("%s", str);
strcpy(prompt, str);
return 0;
}
//function for the decision tree for shirts
int whatKindShirt()
{
char kind[100];
printf("What kind? ");
scanf("%s", kind);
if (strcmp(kind,"t-shirt")==0)
{
char smell[100];
printf("How does it smell? ");
scanf("%s", smell);
if (strcmp(smell,"bad")==0)
{
printf("Wash It.\n");
return 0;
}
else if (strcmp(smell,"fine")==0 || strcmp(smell,"marginal")==0)
{
char stains[100];
printf("Are there any stains on it? ");
scanf("%s", stains);
if (strcmp(stains,"lots")==0)
{
printf("Wash It.\n");
return 0;
}
else if (strcmp(stains,"none")==0 || strcmp(stains,"small")==0)
{
printf("Wear It.\n");
return 0;
}
}
}
else if (strcmp(kind,"nice")==0)
{
char stains[100];
printf("Are there any stains on it? ");
scanf("%s", stains);
if (strcmp(stains,"lots" )==0 || strcmp(stains,"small")==0)
{
printf("Wash It.\n");
return 0;
}
else if (strcmp(stains,"none")==0)
{
printf("Wear It.\n");
return 0;
}
}
else if (strcmp(kind,"sweatshirt")==0)
{
int times;
printf("How many times have you worn them? ");
scanf("%d", ×);
if (times<3)
{
char stains[100];
printf("Are there any stains on it? ");
scanf("%s", stains);
if (strcmp(stains,"lots" )==0)
{
printf("Wash It.\n");
return 0;
}
else if (strcmp(stains,"none")==0 || strcmp(stains,"small")==0)
{
printf("Wear It.\n");
return 0;
}
}
else if (times >= 3)
{
char smell[100];
printf("How does it smell? ");
scanf("%s", smell);
if (strcmp(smell,"bad")==0 || strcmp(smell,"marginal")==0)
{
printf("Wash It.\n");
return 0;
}
else if (strcmp(smell,"fine")==0)
{
printf("Wear It.\n");
return 0;
}
}
}
return 0;
}
//function for the decision tree for pants
int whatKindPants()
{
char kind[100];
printf("What kind? ");
scanf("%s", kind);
if (strcmp(kind,"jeans")==0)
{
int times;
printf("How many times have you worn them? ");
scanf("%d", ×);
if (times<5)
{
printf("Wear It.\n");
return 0;
}
else if (times >= 5)
{
char smell[100];
printf("How does it smell? ");
scanf("%s", smell);
if (strcmp(smell,"bad")==0)
{
printf("Wash It.\n");
return 0;
}
else if (strcmp(smell,"fine")==0 || strcmp(smell,"marginal")==0)
{
char stains[100];
printf("Are there any stains on it? ");
scanf("%s", stains);
if (strcmp(stains,"lots" )==0)
{
printf("Wash It.\n");
return 0;
}
else if (strcmp(stains,"none")==0 || strcmp(stains,"small")==0)
{
printf("Wear It.\n");
return 0;
}
}
}
}
else if (strcmp(kind,"other")==0)
{
char stains[100];
printf("Are there any stains on it? ");
scanf("%s", stains);
if (strcmp(stains,"lots" )==0 || strcmp(stains,"small")==0)
{
printf("Wash It.\n");
return 0;
}
else if (strcmp(stains,"none")==0)
{
printf("Wear It.\n");
return 0;
}
}
return 0;
}
//function for the decision tree for other
int whatKindOther()
{
char kind[100];
printf("What kind? ");
scanf("%s", kind);
if (strcmp(kind,"socks")==0)
{
int times;
printf("How many times have you worn them? ");
scanf("%d", ×);
if (times==0)
{
printf("Wear It.\n");
return 0;
}
else if (times >= 1)
{
char smell[100];
printf("How does it smell? ");
scanf("%s", smell);
if (strcmp(smell,"bad")==0 || strcmp(smell,"marginal")==0)
{
printf("Wash It.\n");
return 0;
}
else if (strcmp(smell,"fine")==0)
{
printf("Wear It.\n");
return 0;
}
}
}
else if (strcmp(kind,"other")==0)
{
int times;
printf("How many times have you worn them? ");
scanf("%d", ×);
if (times==1)
{
char stains[100];
printf("Are there any stains on it? ");
scanf("%s", stains);
if (strcmp(stains,"lots" )==0 || strcmp(stains,"small")==0)
{
printf("Wash It.\n");
return 0;
}
else if (strcmp(stains,"none")==0)
{
printf("Wear It.\n");
return 0;
}
}
else if (times > 1)
{
char smell[100];
printf("How does it smell? ");
scanf("%s", smell);
if (strcmp(smell,"bad")==0)
{
printf("Wash It.\n");
return 0;
}
else if (strcmp(smell,"fine")==0 || strcmp(smell,"marginal")==0)
{
printf("Wear It.\n");
return 0;
}
}
}
return 0;
}
//the main function that ties it all together
int main()
{
char string[100];
considering(string);
if (strcmp(string, "shirt")==0)
{
whatKindShirt();
}
else if (strcmp(string, "pants")==0)
{
whatKindPants();
}
else if (strcmp(string, "other")==0)
{
whatKindOther();
}
return 0;
}<file_sep>/C++/avlbst/WordStat.h
/**
* Tracks a word and its frequency
* @author <NAME>
* Course: CS3102.01
* Programming Project #: 2
* @since 03-15-2017
*/
#ifndef WORDSTAT_H
#define WORDSTAT_H
#include <string>
#include <iostream>
using namespace std;
class WordStat
{
private:
/**
* a word
*/
string word;
/**
* the frequency count
*/
int count;
public:
/**
* Creates a word and sets its count to 0
*/
WordStat()
{
word = " ";
count = 0;
}
/**
* Creates a WordStat and set its initial count to
* the specified value.
* @param aWord a word
* @param aCount the frequency
*/
WordStat(string aWord, int aCount)
{
word = aWord;
count = aCount;
}
/**
* Gives this word
* @return a word
*/
string getWord() const
{
return word;
}
/**
* Gives the frequency
* @return the frequency of this word
*/
int getCount() const
{
return count;
}
/**
* Increase the frequency of this word by the
* specified value
* @param increment the value by which the frequency
* is increased.
*/
void updateCount(long increment)
{
count = count + increment;
}
/**
* Determines whether two WordStat objects are equivalent
* @param w1 a WordStat object
* @param w2 a WordStat object
* @return true when the specified WordStat objects contain
* the same word.
*/
friend bool operator==(const WordStat& w1, const WordStat& w2);
/**
* Determines whether two WordStat objects are not equivalent
* @param w1 a WordStat object
* @param w2 a WordStat object
* @return true when the specified WordStat objects do not contain
* the same word.
*/
friend bool operator!=(const WordStat& w1, const WordStat& w2);
/**
* Determines whether the word in one WordStat object comes after the
* word in another WordStat object
* @param w1 a WordStat object
* @param w2 a WordStat object
* @return true when the word in the first WordStat object comes after
* the word in the second.
*/
friend bool operator>(const WordStat& w1, const WordStat& w2);
/**
* Determines whether the word in one WordStat object comes before the
* word in another WordStat object
* @param w1 a WordStat object
* @param w2 a WordStat object
* @return true when the word in the first WordStat object comes before
* the word in the second.
*/
friend bool operator<(const WordStat& w1, const WordStat& w2);
/**
* Determines whether the word in one WordStat object comes after the
* or is the same as the word in another WordStat object
* @param w1 a WordStat object
* @param w2 a WordStat object
* @return true when the word in the first WordStat object comes after
* or is the same as the word in the second.
*/
friend bool operator>=(const WordStat& w1, const WordStat& w2);
/**
* Determines whether the word in one WordStat object comes before the
* or is the same as the word in another WordStat object
* @param w1 a WordStat object
* @param w2 a WordStat object
* @return true when the word in the first WordStat object comes before
* or is the same as the word in the second.
*/
friend bool operator<=(const WordStat& w1, const WordStat& w2);
};
bool operator==(const WordStat& w1, const WordStat& w2)
{
return w1.word == w2.word;
}
bool operator!=(const WordStat& w1, const WordStat& w2)
{
return w1.word != w2.word;
}
bool operator>(const WordStat& w1, const WordStat& w2)
{
return w1.word > w2.word;
}
bool operator<(const WordStat& w1, const WordStat& w2)
{
return w1.word < w2.word;
}
bool operator>=(const WordStat& w1, const WordStat& w2)
{
return w1.word >= w2.word;
}
bool operator<=(const WordStat& w1, const WordStat& w2)
{
return w1.word <= w2.word;
}
#endif /* WORDSTAT_H */
<file_sep>/QuantNetCpp/Level 1/Section 1.5/Exercise 2/exercise2.c
/*
C code for HW1, Section 1.5, Exercise 2
*/
// Preprocessor for include files
#include <stdio.h> // C style I/O
// Factorial function, returns n!
int factorial(int n);
// Main function
int main()
{
int n = 4;
printf("%d! = %d\n", n, factorial(n));
return 0;
}
int factorial(int n)
{
if (n < 2)
{
return 1;
}
return (n*factorial(n-1));
}<file_sep>/C++/polynomial/Polynomial.h
/**
* Describes a univariate polynomial and basic operations
* on it.
* CSC 3102 Homework Assignment # 1
* @author <NAME>
* @since 01-22-2017
* @see Polynomial.cpp
* @see PolynomialDemo.cpp
*/
#ifndef POLYNOMIAL_H
#define POLYNOMIAL_H
#include <string>
using namespace std;
class Polynomial
{
private:
/**
* An array of coefficients of this polynomial arranged in order of
* descending powers.
*/
double *coeffs;
/**
* the degree of this polynomial
*/
int deg;
public:
/**
* Creates the polynomial 0.
*/
Polynomial();
/**
* Creates a polynomial with the specified coefficients.
* @param c the coefficients of this polynomial in order of descending powers
* @param d the degree of this polynomial
*/
Polynomial(double c[], int d);
/**
* Deallocates the memory associated with this polynomial
*/
~Polynomial();
/**
* Evaluates this polynomial at the specified point using the
* Horner's evaluation method.
* @param x the point at which this polynomial is to be evaluated
* @return the value of the polynomial at the specified point
*/
double hornerEval(double x) const;
/**
* Evaluates this polynomial at the specified point using a
* naive evaluation method.
* @param x the point at which this polynomial is to be evaluated.
* @return the value of the polynomial at the specified point.
*/
double naiveEval(double x) const;
/**
* Gives the degree of this polynomial.
* @return the degree of this polynomial
*/
int degree() const;
/**
* Gives a string representation of this polynomial in descending powers
* as an array of its coefficients
* @return a string representation of this polynomial
*/
string str() const;
};
#endif /* POLYNOMIAL_H */
<file_sep>/C++/Proj04/Graph.h
/**
* Describes a weighted directed graph and its fundamental operations
* @param <E> the data type
* @author Duncan
* @since 99-99-9999
*/
#include <string>
#include <iostream>
#include <cassert>
#include <stdexcept>
#ifndef GRAPH_H
#define GRAPH_H
using namespace std;
/**
* exception class
*/
class GraphException
{
public:
/**
* constructor
* @param aMessage description of why the exception occurred
*/
GraphException(const string& aMessage)
{
message = aMessage;
}
/**
* Give the reason the exception occurred
* @return reason the exception occurred
*/
string what() const
{
return message;
}
private:
/**
* Information about the exception
*/
string message;
};
template <typename E>
class Graph
{
private:
/**
* function pointer
*/
typedef void (*FuncType)(const E& item);
/* nested vertex class */
class Edge;
class Vertex
{
public:
/**
* constructs a vertex with a given data value.
* @param s the data to store in the vertex
*/
Vertex(E s);
private:
/**
* A pointer to the next vertex
*/
Vertex* pNextVertex;
/**
* the item stored in this node
*/
E data;
/**
* the in-degree
*/
int inDeg;
/**
* the out-degree
*/
int outDeg;
/**
* A pointer to the edge list of this vertex
*/
Edge* pEdge;
/**
* An auxiliary variable used for algorithms that mark this vertex
* as having been accessed/visited
*/
int processed;
/**
* To grant the Graph class access to private members
*/
friend class Graph<E>;
};
/* Nested Edge class*/
class Edge
{
public:
/**
* constructs an Edge with a given weight.
* @param s the data to store in the vertex
*/
Edge(double wt);
private:
/**
* The destination of this edge
*/
Vertex* destination;
/**
* The weight on this edge
*/
double weight;
/**
* A pointer to the next edge on the edge list
*/
Edge* pNextEdge;
/**
* To grant the Graph class access to private members
*/
friend class Graph<E>;
};
/**
* The number of vertices in this graph
*/
int order;
/**
* A pointer to the first vertex
*/
Vertex* first;
public:
/**
* constructs an empty weighted digraph.
*/
Graph();
/**
* destructor - returns the weighted digraph memory to the system.
*/
~Graph();
/**
* This function inserts a new vertex whose data item is data in the
* weighted graph. If the key of the data already exists the vertex
* is updated. No two vertices may have the same key.
* @param data - data stored in a vertex.
*/
void insertVertex(E data);
/**
* This function deletes a vertex whose data item is data from the
* weighted digraph. If the key of the data does not exist or the
* indegree or out degree is positive, the weighted graph remains
* unaltered. It the data item exists and the in-degree
* and out-degree are both 0, the vertex is removed from the graph.
* @param key - data stored in a vertex.
*/
void deleteVertex(E key);
/**
* This function inserts a weighted directed edge between two vertices.
* If either key does not exist, the graph remains unaltered. If there
* is already a directed edge between the vertices, its weight is
* updated. If both keys exist and there isn't an edge between the
* vertices, an edge is inserted and the indegree and outdegree of
* both vertices are updated.
* @param fromKey - data of the originating vertex.
* @param toKey - data of the destination vertex.
* @param weight - weight of the edge between the from and to vertices.
*/
void insertEdge(E fromKey, E toKey, double weight);
/**
* This function removes a weighted directed edge between two vertices.
* If either key does not exist, the function returns and the graph
* remains unaltered. If the edge exists, it is removed from the vertex
* with fromKey to the vertex with toKey. The indegree and outdegree
* of both vertices are updated.
* @param fromKey - search key of the originating vertex.
* @param toKey - search key of the destination vertex.
*/
void deleteEdge(E fromKey, E toKey);
/**
* This function returns the weight of the directed edge between
* the vertices with fromKey and toKey if the edge exists. If
* the directed edge does not exist, an exception is generated.
* @param fromKey - search key of the originating vertex.
* @param toKey - search key of the destination vertex.
* @return the weight on the edge.
*/
double retrieveEdge(E fromKey, E toKey) const throw (GraphException);
/**
* This function returns the item stored in the vertex whose key
* is key. If the key does not exist, an exception is generated.
* @param key - search key of the vertex.
* @return the data value store in a vertex.
*/
const E& retrieveVertex(const E& key) const throw (GraphException);
/**
* This function applies the visit function to the vertices of
* the graph in breadth-first-search order.
* @param func - the function that is applied to the data in each
* node during a traversal of this graph
*/
void bfsTraverse(FuncType func);
/**
* This function applies the visit function to the vertices of
* the graph in postorder depth-first-search order.
* @param func - the function that is applied to the data in each
* node during a traversal of this graph
*/
void dfsTraverse(FuncType func);
/**
* Determines whether the weighted digraph is empty.
* @return this function returns true if the digraph is empty;
* otherwise, it returns false if the graph contains at least one vertex.
*/
bool isEmpty() const;
/**
* Returns the order of graph.
* @return the number of vertices in the graph
*/
int size() const;
/**
* Determines whether an item is in the graph.
* @param key search key of the vertex.
* @return true on success; false on failure.
*/
bool isVertex(E key) const;
/**
* Determines whether there is an edge between two vertices.
* @param fromKey - search key of the originating vertex.
* @param toKey - search key of the destination vertex.
* @return true on success or false on failure.
*/
bool isEdge(E fromKey, E toKey) const;
/**
* Determines whether there is an outdirected path between two vertices.
* @param fromKey - search key of the originating vertex.
* @param toKey - search key of the destination vertex.
* @return true on success or false on failure.
*/
bool isReachable(E fromKey, E toKey) const;
/**
* Determines the number of edges in the graph.
* @return the number of edges.
*/
int countEdges() const;
/**
* Determines the number of out-directed edges from the vertex with the key.
* @param key item stored in the vertex
* @return out-degree.
*/
int outDegree(E key) const throw (GraphException);
/**
* Determines the number of in-directed edges from the vertex with the key.
* @param key - item stored in the vertex
* @return in-degree.
*/
int inDegree(E key) const throw (GraphException);
};
//GRAPH_H
#endif
<file_sep>/QuantNetCpp/Level 2/Section 1.6/Exercise 2/Defs.h
/*
C code for HW2, Section 1.6, Exercise 2
*/
// Avoid multiple inclusion
#ifndef DEFS
#define DEFS
// Define macros for maximum
#define MAX2(x, y) ((x > y) ? (x) : (y))
#define MAX3(x, y, z) ((MAX2(x, y) > z) ? MAX2(x, y) : (z))
#endif<file_sep>/C++/processcontrol/Makefile
CPUScheduler: CPUScheduler.o Heap.o
g++ -std=c++11 -Wall -g -o CPUScheduler CPUScheduler.o Heap.o
CPUScheduler.o: CPUScheduler.cpp Heap.cpp PCB.h
g++ -std=c++11 -Wall -g -c CPUScheduler.cpp
Heap.o: Heap.cpp Heap.h
g++ -std=c++11 -Wall -g -c Heap.cpp
clean:
rm -f *.o CPUScheduler
<file_sep>/C++/polynomial/Polynomial.cpp
/**
* Describes a univariate polynomial and basic operations
* on it.
* CSC 3102 Homework Assignment # 1
* @author <NAME>
* @since 01-22-2017
* @see Polynomial.h
* @see PolynomialDemo.cpp
*/
#include <string>
#include "Polynomial.h"
using namespace std;
Polynomial::Polynomial()
{
deg = 0;
coeffs = new double[deg+1];
coeffs[0] = 0;
}
Polynomial::Polynomial(double c[], int d)
{
deg = d;
coeffs = new double[deg+1];
for (int i = 0; i < deg+1; i++)
{
coeffs[i] = c[i];
}
}
Polynomial::~Polynomial()
{
delete coeffs;
}
double Polynomial::hornerEval(double x) const
{
double result = coeffs[0];
for (int i = 1; i < deg+1; i++)
{
result = result*x + coeffs[i];
}
return result;
}
double Polynomial::naiveEval(double x) const
{
double exponentiatedX;
double sum = 0;
for (int i = 0; i < deg+1; i++)
{
exponentiatedX = 1;
for (int j = 0; j < deg-i; j++)
{
exponentiatedX *= x;
}
exponentiatedX *= coeffs[i];
sum += exponentiatedX;
}
return sum;
}
int Polynomial::degree() const
{
return deg;
}
string Polynomial::str() const
{
string polynomialAsString = "[";
for (int i = 0; i < deg; i++)
{
polynomialAsString += to_string(coeffs[i]);
polynomialAsString += ", ";
}
polynomialAsString += to_string(coeffs[deg+1]);
polynomialAsString += "]";
return polynomialAsString;
}<file_sep>/QuantNetCpp/Level 3/Section 2.3/2.3.5/TestLine.cpp
/*
C++ code for HW3, Section 2.3, Exercise 5
*/
#include "Line.hpp"
#include "Point.hpp"
#include <iostream>
#include <string>
using namespace std;
int main()
{
double x, y, a, b;
// User input for point 1
cout << "Please input x and y coordinate of the start point" << endl;
cin >> x >> y;
// Ask the user for the x- and y-coordinates of the end point.
cout << "Please input x and y coordinate of the end point" << endl;
cin >> a >> b;
// Create the start point and end point.
const Point p1(x, y);
const Point p2(a, b);
// Create the line object.
Line line(p1, p2);
cout << "Start point: (" << line.P1().X() << ", " << line.P1().Y() << ")" << endl;
cout << "End point: (" << line.P2().X() << ", " << line.P2().Y() << ")" << endl;
cout << line.toString() << endl;
cout << "Length: " << line.Length() << endl;
return 0;
}<file_sep>/QuantNetCpp/Level 5/Section 3.6/3.6.2/ArrayException.hpp
/*
Header file for HW5, Section 3.6, Exercise 2
*/
#ifndef ArrayException_HPP
#define ArrayException_HPP
// include for cin/cout
#include <iostream>
using namespace std;
class ArrayException
{
public:
// Default constructor
ArrayException() {}
// Destructor
virtual ~ArrayException() {}
virtual string GetMessage() = 0;
};
#endif<file_sep>/QuantNetCpp/Level 5/Section 3.4/3.4.1/TestColon.cpp
/*
C++ code for HW5, Section 3.4, Exercise 1
*/
// include header and source file
#include "Point.hpp"
#include "Line.hpp"
#include "Circle.hpp"
// include for cin/cout
#include <iostream>
#include <string>
using namespace std;
// main function
int main()
{
// testing colon syntax
Line l;
/*
With regular syntax, the default and argument constructors are both called 2 times.
The assignment operator and destructor are also called 2 times.
With colon syntax, the argument constructor and destrutor are both called 2 times.
The colon syntax reduces the number of calls.
*/
return 0;
}<file_sep>/QuantNetCpp/Level 5/Section 3.5/3.5.5/Line.hpp
/*
Header file for HW5, Section 3.5, Exercise 5
*/
#ifndef Line_HPP
#define Line_HPP
// include header and source file
#include "Point.hpp"
#include "Shape.hpp"
// include for cin/cout
#include <iostream>
using namespace std;
class Line: public Shape
{
private:
// Starting point
Point p1;
// End point
Point p2;
public:
// Default constructor
Line();
// Constructor
Line(const Point& p1, const Point& p2);
// Copy constructor
Line(const Line& line);
// Destructor
virtual ~Line();
// Selector functions for the start and end points
Point P1() const;
Point P2() const;
// Modifier functions for the start and end points
void P1(const Point& point1);
void P2(const Point& point2);
// Length of the line
double Length() const;
// Line description
string toString() const;
// Assignment operator
Line& operator = (const Line& source);
// Send to ostream
friend ostream& operator << (ostream& os, const Line& l);
// Draw
void Draw() const;
};
#endif<file_sep>/QuantNetCpp/Level 4/Section 2.6/2.6.1/Array.hpp
/*
Header file for HW4, Section 2.6, Exercise 1
*/
#ifndef Array_HPP
#define Array_HPP
// include header and source file
#include "Point.hpp"
using namespace std;
namespace AARONCAO
{
namespace Containers
{
class Array {
private:
CAD::Point* elements;
int len;
public:
// Default Consturctor
Array();
// Constructor
Array(int size);
// Copy constructor
Array(const Array& arr);
// Destructor
~Array();
// Selector functions for size and elements
int Size() const;
CAD::Point& GetElement(int index) const;
// Modifier function for elements
void SetElement(int index, const CAD::Point& newPoint);
// Assignment operator
Array& operator = (const Array& source);
// Square bracket operator
CAD::Point& operator [] (int index);
// Const square bracket operator for read-only and so that arrays can be declared as const
const CAD::Point& operator [] (int index) const;
};
}
}
#endif<file_sep>/C/lab3/avg.c
#include <stdio.h>
int getNumber(char *string)
{
int a;
printf("Please enter the %s number: \n", string);
scanf("%d", &a);
return a;
}
int main( )
{
int x = getNumber("first");
int y = getNumber("second");
int z = getNumber("third");
int sum = x + y + z;
double avg = sum / 3.0;
printf("\nThe average of these three numbers is %lf\n", avg);
return 0;
}
<file_sep>/QuantNetCpp/Level 5/Section 3.4/3.4.2/Shape.hpp
/*
Header file for HW5, Section 3.4, Exercise 2
*/
#ifndef Shape_HPP
#define Shape_HPP
// include for cin/cout
#include <iostream>
using namespace std;
class Shape
{
private:
int id; // ID
public:
// Default constructor
Shape();
// Copy constructor
Shape(const Shape& shape);
// Destructor
virtual ~Shape();
// Selector function for ID
int ID() const;
// Assignment operator
Shape& operator = (const Shape& shape);
// Convert shape to string
string toString() const;
};
#endif<file_sep>/QuantNetCpp/Level 1/Section 1.5/Exercise 4/exercise4.c
/*
C code for HW1, Section 1.5, Exercise 4
*/
// Preprocessor for include files
#include <stdio.h> // C style I/O
#include <stdlib.h> // C standard library
// Printnumber method
void printnumber(int num)
{
// Prints the negative sign in the negative case
if (num < 0)
{
putchar('-');
putchar('\n');
num = -num;
}
// As long as the number can still be divided by 10 (has a digit to print)
if(num / 10)
{
printnumber(num / 10);
}
// Converts every digit to ASCII
putchar('0' + num % 10);
putchar('\n');
}
// Main function
int main()
{
int num;
printf("Enter an integer:");
scanf("%d", &num);
printnumber(num);
return 0;
}
<file_sep>/QuantNetCpp/Level 1/Section 1.4/Exercise 6/freq.c
/*
C code for HW1, Section 1.4, Exercise 6
*/
// Preprocessor for include files
#include <stdio.h> // C style I/O
#include <stdlib.h> // C standard library
// Main function
int main()
{
// Initialize character for input
char c = ' ';
// Initialize counters, EOF is not counted as a character
int numZero = 0;
int numOne = 0;
int numTwo = 0;
int numThree = 0;
int numFour = 0;
int numOther = -1;
printf("Type to your heart's content, then send Ctrl + Z when finished:\n");
// Will run until Ctrl + Z is executed
while(c != EOF)
{
// When a character is input, store it and increment the character counter
c = getchar();
switch(c)
{
case '0':
{
numZero++;
break;
}
case '1':
{
numOne++;
break;
}
case '2':
{
numTwo++;
break;
}
case '3':
{
numThree++;
break;
}
case '4':
{
numFour++;
break;
}
default:
{
numOther++;
break;
}
}
}
printf("\nZeroes: %d, Ones: %d, Twos: %d, Threes: %d, Fours: %d, Other: %d\n", numZero, numOne, numTwo, numThree, numFour, numOther);
return 0;
}
<file_sep>/QuantNetCpp/Level 5/Section 3.5/3.5.4/TestShape.cpp
/*
C++ code for HW5, Section 3.5, Exercise 4
*/
// include header and source file
#include "Point.hpp"
#include "Line.hpp"
#include "Circle.hpp"
#include "Shape.hpp"
using namespace std;
// main function
int main()
{
Shape* shapes[10];
shapes[0] = new Line;
shapes[1] = new Point;
shapes[2] = new Line(Point(1.0, 2.5), Point(3.4, 5.2));
shapes[3] = new Circle(Point(0, 0), 1);
for (int i = 0; i != 4; i++) shapes[i]->Draw();
for (int i = 0; i != 4; i++) delete shapes[i];
// Not possible to make an instance of Shape
return 0;
}<file_sep>/QuantNetCpp/Level 1/Section 1.5/Exercise 1/exercise1.c
/*
C code for HW1, Section 1.5, Exercise 1
*/
// Preprocessor for include files
#include <stdio.h> // C style I/O
// Minus function, returns a - b
double minus(double a, double b);
// Main function
int main()
{
double a = 10;
double b = 5;
printf("%f - %f = %f\n", a, b, minus(a, b));
return 0;
}
double minus(double a, double b)
{
return (a - b);
}<file_sep>/C/project1/pennies.c
// <NAME>
// This program will use functions to convert the amount of money you have on you to pennies. Then it will tell you the weight and volume of your money in pennies.
#include <stdio.h>
void putInArray(int *array)
{
printf("Enter the amount of each type of money you have on you\n");
printf("$20 bills: ");
scanf("%d", &array[0]);
printf("$10 bills: ");
scanf("%d", &array[1]);
printf("$5 bills: ");
scanf("%d", &array[2]);
printf("$1 bills: ");
scanf("%d", &array[3]);
printf("Quarters: ");
scanf("%d", &array[4]);
printf("Dimes: ");
scanf("%d", &array[5]);
printf("Nickels: ");
scanf("%d", &array[6]);
printf("Pennies: ");
scanf("%d", &array[7]);
return;
}
int convertToPennies(int *array)
{
int pennies;
pennies = 20*100*array[0]+10*100*array[1]+5*100*array[2]+100*array[3]+25*array[4]+10*array[5]+5*array[6]+array[7];
return pennies;
}
double convertWeight(int pennies)
{
double weight;
weight = pennies*2.5*0.00220462;
return weight;
}
double convertVolume(int pennies)
{
double volume;
volume = (double)pennies*0.009525*0.009525*3.1415926535*0.00152*35.3147;
// here 9.525mm is the radius of a penny, we're calculating volume in cubic meters though
return volume;
}
int main()
{
int array[8];
printf("This program will convert the amount of money you have on you to pennies. Then it will tell you the weight and volume of your money in pennies.\n");
putInArray(array);
int pennies;
pennies = convertToPennies(array);
double weight;
weight = convertWeight(pennies);
double volume;
volume = convertVolume(pennies);
printf("You have %d pennies. This will weigh %lf pounds and take up %lf cubic feet of space.\n", pennies, weight, volume);
return 0;
}<file_sep>/QuantNetCpp/Level 1/Section 1.3/Exercise 4/exercise4.c
/*
C code for HW1, Section 1.3, Exercise 4
*/
// Preprocessor for include files
#include <stdio.h> // C style I/O
// Main function
int main()
{
// Declare an int takes value 0 or 1 to represent marriage state
int married = 0;
printf("Assigned married = %d\n", married);
// Conditional print statement
printf("Marriage status: %c\n", married ? 'T' : 'F');
return 0;
}
<file_sep>/QuantNetCpp/Level 5/Section 3.5/3.5.3/TestShape.cpp
/*
C++ code for HW5, Section 3.5, Exercise 3
*/
// include header and source file
#include "Point.hpp"
#include "Line.hpp"
#include "Circle.hpp"
#include "Shape.hpp"
using namespace std;
// main function
int main()
{
Shape* shapes[3];
shapes[0] = new Shape;
shapes[1] = new Point;
shapes[2] = new Line;
for (int i = 0; i != 3; i++) delete shapes[i];
/*
When the Shape destructor is not virtual,
~Point() is called 2 times and ~Shape() is called five times.
Thus, the derived class destructor is not called when the
destructor is not virtual in the base class.
When the Shape destructor is virtual,
~Point() is called five times, ~Line() is called once, and ~Shape() is called seven times.
This is desired
*/
return 0;
}<file_sep>/QuantNetCpp/Level 1/Section 1.3/Exercise 3/exercise3.c
/*
C code for HW1, Section 1.3, Exercise 3
*/
// Preprocessor for include files
#include <stdio.h> // C style I/O
// Main function
int main()
{
int x; // Declare x
x = -3+4*5-6; // x equals 11
printf("x = %d\n", x); // prints "x = 11"
x = 3+4%5-6; // x equals 1
printf("x = %d\n", x); // prints "x = 1"
x = -3*4%-6/5; // x equals 0
printf("x = %d\n", x); // prints "x = 0"
x = (7+6)%5/2; // x equals 1
printf("x = %d\n", x); // prints "x = 1"
return 0;
}<file_sep>/QuantNetCpp/Level 2/Section 1.6/Exercise 2/exercise2.c
/*
C code for HW2, Section 1.6, Exercise 2
*/
// Preprocessor for include files
#include <stdio.h> // C style I/O
#include "Defs.h" // Definitions
// Main function
int main()
{
// Declare three variables for finding maximums
double x;
double y;
double z;
// Get inputs
printf("Input x: ");
scanf("%lf", &x);
printf("Input y: ");
scanf("%lf", &y);
printf("Input z: ");
scanf("%lf", &z);
printf("\n");
// Use the macros for finding max
printf("Larger of x and y is: %lf\n", MAX2(x, y));
printf("Larger of x, y, and z is: %lf\n", MAX3(x, y, z));
return 0;
}<file_sep>/QuantNetCpp/Level 1/Section 1.3/Exercise 8/exercise8.c
/*
C code for HW1, Section 1.3, Exercise 8
*/
// Preprocessor for include files
#include <stdio.h> // C style I/O
// Main function
int main()
{
int x = 2;
int y;
int z;
x *= 3+2; // x equals 10
printf("x = %d\n", x);
x *= y = z = 4; // x equals 40, y equals z equals 4
printf("x = %d\n", x);
x = y == z; // x equals 1, y equals z equals 4
printf("x = %d\n", x);
return 0;
}
<file_sep>/QuantNetCpp/Level 4/Section 2.5/2.5.3/Array.hpp
/*
Header file for HW4, Section 2.5, Exercise 3
*/
#ifndef Array_HPP
#define Array_HPP
// include header and source file
#include "Point.hpp"
using namespace std;
class Array {
private:
Point* elements;
int len;
public:
// Default Consturctor
Array();
// Constructor
Array(int size);
// Copy constructor
Array(const Array& arr);
// Destructor
~Array();
// Selector functions for size and elements
int Size() const;
Point& GetElement(int index) const;
// Modifier function for elements
void SetElement(int index, const Point& newPoint);
// Assignment operator
Array& operator = (const Array& source);
// Square bracket operator
Point& operator [] (int index);
// Const square bracket operator for read-only and so that arrays can be declared as const
const Point& operator [] (int index) const;
};
#endif<file_sep>/QuantNetCpp/Level 5/Section 3.6/3.6.2/Array.cpp
/*
C++ code for HW5, Section 3.6, Exercise 2
*/
// include header and source file
#include "Point.hpp"
#include "Array.hpp"
#include "OutOfBoundsException.hpp"
using namespace std;
// Default Consturctor
Array::Array()
{
elements = new Point[10];
len = 10;
}
// Constructor
Array::Array(int size)
{
elements = new Point[size];
len = size;
}
// Copy constructor
Array::Array(const Array& arr)
{
elements = new Point[arr.len];
len = arr.len;
for (int i = 0; i < len; i++)
{
elements[i] = arr.elements[i];
}
}
// Destructor
Array::~Array()
{
delete[] elements;
}
// Selector functions for size and elements
int Array::Size() const
{
return len;
}
Point& Array::GetElement(int idx) const
{
if (idx < 0 || idx >= len)
{
throw OutOfBoundsException(idx);
}
return elements[idx];
}
// Modifier function for elements
void Array::SetElement(int idx, const Point& element)
{
if (idx < 0 || idx >= len)
{
throw OutOfBoundsException(idx);
}
elements[idx] = element;
}
// Assignment operator
Array& Array::operator = (const Array& arr)
{
delete[] elements;
elements = new Point[arr.len];
len = arr.len;
for (int i = 0; i < len; i++)
{
elements[i] = arr.elements[i];
}
return *this;
}
// Square bracket operator
Point& Array::operator [] (int idx)
{
if (idx < 0 || idx >= len)
{
throw OutOfBoundsException(idx);
}
return elements[idx];
}
// Const square bracket operator for read-only and so that arrays can be declared as const
Point& Array::operator [] (int idx) const
{
if (idx < 0 || idx >= len)
{
throw OutOfBoundsException(idx);
}
return elements[idx];
}<file_sep>/README.md
# c_cpp_stuff
C and C++ stuff
<file_sep>/C/lab4/rpsls.c
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main(int argc, char *argv[])
{
if (strcmp(argv[1], "rock") == 0)
{
if (strcmp(argv[2], "rock") == 0)
{
printf("It's a tie.\n");
}
else if (strcmp(argv[2], "paper") == 0)
{
printf("Player Two wins.\n");
}
else if (strcmp(argv[2], "scissors") == 0)
{
printf("Player One wins.\n");
}
else if (strcmp(argv[2], "lizard") == 0)
{
printf("Player One wins.\n");
}
else if (strcmp(argv[2], "spock") == 0)
{
printf("Player Two wins.\n");
}
}
else if (strcmp(argv[1], "paper") == 0)
{
if (strcmp(argv[2], "rock") == 0)
{
printf("Player One wins.\n");
}
else if (strcmp(argv[2], "paper") == 0)
{
printf("It's a tie.\n");
}
else if (strcmp(argv[2], "scissors") == 0)
{
printf("Player Two wins.\n");
}
else if (strcmp(argv[2], "lizard") == 0)
{
printf("Player Two wins.\n");
}
else if (strcmp(argv[2], "spock") == 0)
{
printf("Player One wins.\n");
}
}
else if (strcmp(argv[1], "scissors") == 0)
{
if (strcmp(argv[2], "rock") == 0)
{
printf("Player Two wins.\n");
}
else if (strcmp(argv[2], "paper") == 0)
{
printf("Player One wins.\n");
}
else if (strcmp(argv[2], "scissors") == 0)
{
printf("It's a tie.\n");
}
else if (strcmp(argv[2], "lizard") == 0)
{
printf("Player One wins.\n");
}
else if (strcmp(argv[2], "spock") == 0)
{
printf("Player Two wins.\n");
}
}
else if (strcmp(argv[1], "lizard") == 0)
{
if (strcmp(argv[2], "rock") == 0)
{
printf("Player Two wins.\n");
}
else if (strcmp(argv[2], "paper") == 0)
{
printf("Player One wins.\n");
}
else if (strcmp(argv[2], "scissors") == 0)
{
printf("Player Two wins.\n");
}
else if (strcmp(argv[2], "lizard") == 0)
{
printf("It's a tie.\n");
}
else if (strcmp(argv[2], "spock") == 0)
{
printf("Player One wins.\n");
}
}
else if (strcmp(argv[1], "spock") == 0)
{
if (strcmp(argv[2], "rock") == 0)
{
printf("Player One wins.\n");
}
else if (strcmp(argv[2], "paper") == 0)
{
printf("Player Two wins.\n");
}
else if (strcmp(argv[2], "scissors") == 0)
{
printf("Player One wins.\n");
}
else if (strcmp(argv[2], "lizard") == 0)
{
printf("Player Two wins.\n");
}
else if (strcmp(argv[2], "spock") == 0)
{
printf("It's a tie.\n");
}
}
return 0;
}<file_sep>/QuantNetCpp/Level 4/Section 2.6/2.6.1/Circle.hpp
/*
Header file for HW4, Section 2.6, Exercise 1
*/
#ifndef Circle_HPP
#define Circle_HPP
// include header and source file
#include "Point.hpp"
namespace AARONCAO
{
namespace CAD
{
class Circle {
private:
Point center;
double radius;
public:
// Default constructor
Circle();
// Constructor with center, radius
Circle(const Point& c, double r);
// Copy constructor
Circle(const Circle& c);
// Destructor
~Circle();
// Selector functions for center, radius
Point CentrePoint() const;
double Radius() const;
// Modifier functions for center, radius
void CentrePoint(const Point& c);
void Radius(double r);
// Diameter of circle
double Diameter() const;
// Area of circle
double Area() const;
// Circumference of circle
double Circumference() const;
// Convert circle to string
string toString() const;
// Assignment operator
Circle& operator = (const Circle& source);
};
// Send to ostream
ostream& operator << (ostream& os, const Circle& c);
}
}
#endif<file_sep>/QuantNetCpp/Level 6/4.2a/4.2a.1/TestArray.cpp
/*
C++ code for HW5, Section 4.2a, Exercise 1
*/
// include header and source file
#include "Point.hpp"
#include "Array.hpp"
#include "Shape.hpp"
#include "ArrayException.hpp"
using namespace std;
// main function
int main()
{
int size = 1;
// Create two arrays of points.
Array<Point> points(size);
Array<Point> points2(size);
// Test [] operator for writing.
points[0] = Point(0.1, 0.1);
points[1] = Point(0.2, 0.3);
points[2] = Point(1.0, 4.5);
// Test assignment operator and [] operator for reading.
points2 = points;
for (int i = 0; i < size; i++)
{
cout << points2[i] << endl;
}
// Test GetElement().
cout << "Elements: " << points.GetElement(0) << ", " << points.GetElement(1) << ", " << points.GetElement(2) << endl;
// Test SetElement().
points2.SetElement(0, Point(2.3, 7.7));
points2.SetElement(1, Point(4.5, 3.2));
points2.SetElement(2, Point(2.8, 5.7));
cout << "Elements: " << points2[0] << ", " << points2[1] << ", " << points2[2] << endl;
// Using copy constructor.
Array<Point> points3(points2);
cout << "Elements: " << points3[0] << ", " << points3[1] << ", " << points3[2] << endl;
// Test [] operator for const Array object.
const Array<Point> points4(points2);
cout << "Elements: " << points4[0] << ", " << points4[1] << ", " << points4[2] << endl;
return 0;
}<file_sep>/C/project4/main.c
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include "scanner.h"
#include "game.h"
int main(int argc, char *argv[]) {
char *cmd;
Players *list = NULL;
FILE *fp = fopen(argv[1], "r");;
cmd = readToken(fp);
// Commands are:
// add [playername]
// printPlayers
// addItem [player, item, count]
// countPlayers
// countItems [player]
// numItems [item]
// addOrder [player]
// addItemOrder [player, item, count]
// gives [player1, player2, item]
while ( !feof(fp) ) {
char *player, *item, *player2;
int quantity;
// process command
if (strcmp(cmd, "add") == 0) {
player = readToken(fp);
printf("\nAdding the player %s\n", player);
list = add(list, player);
}
if (strcmp(cmd, "printPlayers") == 0) {
printf("\nPrinting all the players in the game\n");
printPlayers(list);
}
if (strcmp(cmd, "addItem") == 0) {
player = readToken(fp);
item = readToken(fp);
quantity = readInt(fp);
printf("\nAdding %d copies of %s for player %s\n", quantity, item, player);
addItem(list, player, item, quantity);
}
if (strcmp(cmd, "printEverything") == 0) {
printf("\nPrinting all information for all players in the game\n");
printEverything(list);
}
if (strcmp(cmd, "countPlayers") == 0) {
printf("\nCounting the players in the game\n");
int count = countPlayers(list);
printf("\tThere are %d players in the game\n", count);
}
if (strcmp(cmd, "countItems") == 0) {
player = readToken(fp);
printf("\nCounting the number of items for player %s\n", player);
int count = countItems(list, player);
printf("\tPlayer %s has %d items\n", player, count);
}
if (strcmp(cmd, "numItems") == 0) {
item = readToken(fp);
printf("\nCounting the total instances of item %s\n", item);
int count = numItems(list, item);
printf("\tThere are %d instances of %s in the game\n", count, item);
}
if (strcmp(cmd, "addOrder") == 0) {
player = readToken(fp);
printf("\nAdding the player %s in alphabetical order\n", player);
list = orderedAdd(list, player);
}
if (strcmp(cmd, "addItemOrder") == 0) {
player = readToken(fp);
item = readToken(fp);
quantity = readInt(fp);
printf("\nAdding %d copies of %s for player %s in alphabetical order\n", quantity, item, player);
orderedAddItem(list, player, item, quantity);
}
if (strcmp(cmd, "gives") == 0) {
player = readToken(fp);
player2 = readToken(fp);
item = readToken(fp);
printf("\nGiving %s's %s to %s\n", player, item, player2);
gives(list, player, player2, item);
}
// get next command
cmd = readToken(fp);
}
return 0;
}
<file_sep>/QuantNetCpp/Level 4/Section 2.4/2.4.1/TestOperators.cpp
/*
C++ code for HW4, Section 2.4, Exercise 1
*/
// include header and source file
#include "Point.hpp"
#include "Line.hpp"
#include "Circle.hpp"
// include for cin/cout
#include <iostream>
#include <string>
using namespace std;
// main function
int main()
{
// testing point operators
Point p1(-5, 7);
Point p2(11, -13);
cout << "p1 = " << p1.toString() << ", " << "p2 = " << p2.toString() << endl;
Point p3 = -p1;
cout << "p3 = -p1 = " << p3.toString() << endl;
Point p4 = p2 + p3;
cout << "p4 = p2 + p3 = " << p4.toString() << endl;
Point p5 = p4 * 5.0;
cout << "p5 = p4 * 5.0 = " << p5.toString() << endl;
cout << "p5 == p4 evaluates to: " << (p5 == p4) << endl;
p5 *= 5.0;
cout << "p5 *= 5.0 evaluates to: " << p5.toString() << endl;
// testing line operators
const Point p6(0, 0);
const Point p7(-1, -2);
Line l1(p6, p7);
cout << "l1 = " << l1.toString() << endl;
Line l2 = l1;
cout << "Assign l2 = l1, now l2 = " << l2.toString() << endl;
// testing circle operators
const Point center(0, 0);
double radius = 1.0;
Circle c1(center, radius);
cout << "c1 = " << c1.toString() << endl;
Circle c2 = c1;
cout << "Assign c2 = c1, now c2 = " << c2.toString() << endl;
return 0;
}<file_sep>/QuantNetCpp/Level 3/Section 2.3/2.3.7/Point.cpp
/*
C++ code for HW3, Section 2.3, Exercise 7
*/
#include "Point.hpp"
#include <sstream>
#include <cmath>
#include <iostream>
using namespace std;
// Default constructor
Point::Point()
{
cout << "Default Constructor" << endl;
}
// Constructor
Point::Point(double x, double y)
{
xCoordinate = x;
yCoordinate = y;
cout << "Constructor" << endl;
}
// Copy constructor
Point::Point(const Point& pt)
{
xCoordinate = pt.xCoordinate;
yCoordinate = pt.yCoordinate;
cout << "Copy Constructor" << endl;
}
// Destructor
Point::~Point()
{
cout << "Destructor" << endl;
}
// Convert point to string
string Point::toString() const
{
stringstream pointStream;
// print format: Point(x, y)
pointStream << "Point(" << xCoordinate << ", " << yCoordinate << ")";
// convert to string
return pointStream.str();
}
// Distance to the origin
double Point::Distance() const
{
return sqrt(pow(xCoordinate, 2) + pow(yCoordinate, 2));
}
//Distance between two points
double Point::Distance(const Point& p) const
{
return sqrt(pow(xCoordinate - p.xCoordinate, 2) + pow(yCoordinate - p.yCoordinate, 2));
}<file_sep>/C/project5/ppm.h
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
typedef struct pixel {
int red;
int green;
int blue;
} Pixel;
typedef struct ppm {
int rows; //number of rows
int cols; //number of columns
int colors; // number of colors
Pixel **pixels; //actual pixel data
} ppmPic;
ppmPic *read(char *);
void write(char *, ppmPic *);
void copy(char *, ppmPic *);
void grow(char *, ppmPic *);
void shrink(char *, ppmPic *);<file_sep>/QuantNetCpp/Level 4/Section 2.6/2.6.1/Circle.cpp
/*
C++ code for HW4, Section 2.6, Exercise 1
*/
#define _USE_MATH_DEFINES
// include header and source file
#include "Circle.hpp"
#include "Point.hpp"
// include for math operations
#include <cmath>
// include for cin/cout
#include <iostream>
#include <sstream>
namespace AARONCAO
{
namespace CAD
{
// Default constructor
Circle::Circle()
{
}
// Constructor with center, radius
Circle::Circle(const Point& c, double r)
{
center = c;
radius = r;
}
// Copy constructor
Circle::Circle(const Circle& c)
{
center = c.center;
radius = c.radius;
}
// Destructor
Circle::~Circle()
{
}
// Modifier function for center
void Circle::CentrePoint(const Point& c)
{
center = c;
}
// Modifier function for radius
void Circle::Radius(double r)
{
radius = r;
}
// Selector functions for center, radius
Point Circle::CentrePoint() const
{
return center;
}
double Circle::Radius() const
{
return radius;
}
// Diameter of circle
double Circle::Diameter() const
{
return 2.0 * radius;
}
// Area of circle
double Circle::Area() const
{
return M_PI * pow(radius, 2);
}
// Circumference of circle
double Circle::Circumference() const
{
return 2.0 * M_PI * radius;
}
// Convert circle to string
string Circle::toString() const
{
stringstream stream;
stream << "Center: " << center.toString() << ", " << "Radius: " << radius;
return stream.str();
}
// Assignment operator
Circle& Circle::operator = (const Circle& source)
{
center = source.center;
radius = source.radius;
return *this;
}
// Send to ostream
ostream& operator << (ostream& os, const Circle& c)
{
os << c.toString() << endl;
return os;
}
}
}<file_sep>/QuantNetCpp/Level 2/Section 1.7/Exercise 4/exercise4.c
/*
C code for HW2, Section 1.7, Exercise 4
*/
// Preprocessor for include files
#include <stdio.h> // C style I/O
// Declare DayName function
void DayName(int inputNum);
// Implement DayName function
void DayName(int inputNum)
{
// Array to save days of the week as strings
char* dayToName[] = { "Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday" };
printf("Day %i is a %s.\n", inputNum, dayToName[inputNum - 1]);
}
// Main function
int main()
{
int daynumber;
printf("Please indicate the day number you would like to output (1-7 represents Sunday-Saturday):\n");
// User inputs day number they would like to output
scanf_s("%d", &daynumber);
// Error check to ensure valid day of the week
if (daynumber > 0 && daynumber < 8)
{
// Display day of the week
DayName(daynumber);
}
return 0;
}
<file_sep>/QuantNetCpp/Level 7/7.1.1/STLContainers.cpp
/*
C++ code for HW7, Exercise 1
*/
#include <list>
#include <vector>
#include <map>
#include <iostream>
#include <string>
using namespace std;
int main()
{
// List of doubles
list<double> ls;
for (int i = 0; i < 10; i++)
{
ls.push_back(i);
ls.push_front(-i);
}
cout << "First element: " << ls.front() << endl;
cout << "Last element: " << ls.back() << endl;
// Vector of doubles
vector<double> vec(3);
for (int i = 0; i < 5; i++)
{
vec.push_back(i);
}
cout << "Vector contents: ";
for (size_t i = 0; i < vec.size()-1; i++)
{
cout << vec[i] << ",";
}
cout << vec[vec.size()-1] << endl;
// Map that maps strings to doubles
map<string, double> myMap;
string str[4] = { "0", "1", "2", "3" };
for (int i = 0; i < 4; i++)
{
myMap[str[i]] = i * 10.0;
}
cout << "Map contents: ";
for (size_t i = 0; i < myMap.size() - 1; i++)
{
cout << myMap[str[i]] << ",";
}
cout << myMap[str[myMap.size() - 1]];
return 0;
}<file_sep>/QuantNetCpp/Level 3/Section 2.3/2.3.2/Point.hpp
/*
Header file for HW3, Section 2.3, Exercise 2
*/
#ifndef Point_HPP
#define Point_HPP
#include <iostream>
using namespace std;
class Point {
private:
double xCoordinate;
double yCoordinate;
public:
// Default constructor
Point();
// Constructor
Point(double x, double y);
// Copy constructor
Point(const Point& pt);
// Destructor
~Point();
// Selector functions for each coordinate
double getX();
double getY();
// Modifier functions for each coordinate
void setX(double x);
void setY(double y);
// Convert point to string
string toString();
// Distance to the origin
double DistanceOrigin();
//Distance between two points
double Distance(const Point& p);
};
#endif<file_sep>/QuantNetCpp/Level 1/Section 1.4/Exercise 3/exercise3.c
/*
C code for HW1, Section 1.4, Exercise 3
*/
// Preprocessor for include files
#include <stdio.h> // C style I/O
#include <stdlib.h> // C standard library
// Main function
int main()
{
// Initialize characters c1 and c2 for current and previous input
char c1;
char c2 = ' ';
// Initialize counters, EOF is not counted as a character
int numChar = -1;
int numWords = 0;
int numLines = 1;
/*
Start at line 1 even if the first thing sent is Ctrl + D
because I didn't want to write another condition to handle that case lol
*/
printf("Type to your heart's content, then send Ctrl + D when finished:\n");
// Will run until Ctrl + D is executed
while(c2 > 0)
{
// When a character is input, store it and increment the character counter
c1 = c2;
c2 = getchar();
numChar++;
switch(c2)
{
case '\n':
{
numLines++;
if((c1 != ' ' && c1 != '\n' && c1 != '\t') || (c2 == EOF && c1 != ' ' && c1 != '\n' && c1 != '\t'))
{
numWords++;
}
break;
}
case ' ':
{
if((c1 != ' ' && c1 != '\n' && c1 != '\t') || (c2 == EOF && c1 != ' ' && c1 != '\n' && c1 != '\t'))
{
numWords++;
}
break;
}
case '\t':
{
if((c1 != ' ' && c1 != '\n' && c1 != '\t') || (c2 == EOF && c1 != ' ' && c1 != '\n' && c1 != '\t'))
{
numWords++;
}
break;
}
case EOF:
{
if((c1 != ' ' && c1 != '\n' && c1 != '\t') || (c2 == EOF && c1 != ' ' && c1 != '\n' && c1 != '\t'))
{
numWords++;
}
break;
}
}
}
printf("\nTotal Characters: %d\n", numChar);
printf("Total Words: %d\n", numWords);
printf("Total Lines: %d\n", numLines);
return 0;
}
<file_sep>/C++/avlbst/BSTree.h
/**
* Models a binary search tree
* @author <NAME>
* Course: CS3102.01
* Programming Project #: 2
* @since 03-15-2017
*/
#include <string>
#include <iostream>
#include <cassert>
#include <stdexcept>
#include <iostream>
#include <cstdlib>
#include <queue>
using namespace std;
#ifndef BSTREE_H
#define BSTREE_H
using namespace std;
/* exception class*/
class BSTreeException
{
public:
/**
* Constructs an instance of <code>BSTreeException</code> with the
* specified detail message.
* @param msg the detail message.
*/
BSTreeException(const string& aMessage)
{
message = aMessage;
}
/**
* Returns a message
* @return a message
*/
string what() const
{
return message;
}
private:
string message;
};
template <typename E>
class BSTree
{
private:
typedef void (*FuncType)(const E& item);
class Node
{
public:
/**
Constructs a node with a given data value.
@param s the data to store in this node
*/
Node(E s);
private:
/**
* the data in this node
*/
E data;
/**
* the left child
*/
Node * left;
/**
* the right child
*/
Node * right;
/**
* To make this class accessible to BSTree
*/
friend class BSTree<E>;
};
/**
* An auxiliary function that recursively free the memory
* allocated for the nodes of this tree.
* @param subtreeRoot a root of this subtree
*/
void recDestroy(Node* subtreeRoot);
/**
* An auxiliary method the finds returns the parent of the
* specified node.
* @param node the root node of a subtree
* @return a pointer to the parent of the specified node
*/
Node* findParent(Node* node);
/**
* An auxiliary method that in-order traverses the subtree at the specified node
* @param node the root of a subtree
* @param func the function to be applied to the data in each node
*/
void traverse (Node* node, FuncType func);
/**
* An auxiliary method that deletes the specified node from this tree
* @param node the node to be deleted
* @return true on successful remove; false, otherwise
*/
bool remove(Node* node);
/**
* An auxiliary method that searches for the node containing the specified item.
* @param item the item to search for in the tree
* @return a pointer to the node containing the item or null if the item
* is not in the tree.
*/
Node* search(const E& item);
/**
* An auxiliary method that recursively computes the height of the subtree
* rooted at the specified node.
* @param node a subtree root
* @return the height of the subtree with the specified root
*/
int height(Node* node) const;
/**
* the root of this tree
*/
Node* root;
/**
* the size of this tree
*/
int count;
public:
/**
* Constructs an empty binary search tree;
*/
BSTree();
/**
* destructor - returns the binary search tree memory to the system;
*/
~BSTree();
/**
* Determine whether the binary search tree is empty.
* @return this function returns true if the tree is empty;
* otherwise, it returns false if the tree contains at least one node.
*/
bool isEmpty() const;
/**
* Inserts an item into the tree.
* @param item the value to be inserted.
* @return none
*/
void insert(E item);
/**
* Determines whether an item is in the tree.
* @param item item with a specified search key.
* @return true on success; false on failure.
*/
bool inTree(E item) const;
/**
* Deletes an item from the tree.
* @param item the item to be removed from this tree
*/
void remove(const E& item);
/**
* returns the first item when the tree is traversed in
* in-order.
* @return the first(least) item in the tree; an exception
* is generated if the tree is empty.
*/
const E& retrieve(const E& key) const throw (BSTreeException);
/**
* This function traverses a binary tree in in-order
* and calls the function Visit once for each node.
*/
void traverse(FuncType func);
/**
* This method returns the size of this binary search tree.
* @return the size of this tree
*/
int size() const;
/**
* This method returns the height of this tree.
* @return the height of this tree
*/
int height() const;
/**
* Computes the depth of the specified search key in this tree.
* @param item the search key
* @return the depth of the specified search key if it is in the.
* this tree. If it is not, -1-d, where d is the depth at which
* it would have been found it inserted in the current tree.
*/
int depth(const E& item) const;
/**
* This function traverses the tree in level-order
* and calls the function func once for each node.
* @param func the function to apply to the data in each node
*/
void levelTraverse(FuncType func);
};
#endif
<file_sep>/QuantNetCpp/Level 5/Section 3.5/3.5.5/Circle.cpp
/*
C++ code for HW5, Section 3.5, Exercise 5
*/
#define _USE_MATH_DEFINES
// include header and source file
#include "Circle.hpp"
#include "Point.hpp"
// include for math operations
#include <cmath>
// include for cin/cout
#include <sstream>
#include <iostream>
// Default constructor
Circle::Circle(): Shape()
{
center = Point(0, 0);
radius = 1;
cout << "Default Constructor" << endl;
}
// Constructor with center, radius
Circle::Circle(const Point& c, double r): Shape()
{
center = c;
radius = r;
cout << "Constructor" << endl;
}
// Copy constructor
Circle::Circle(const Circle& c): Shape(c)
{
center = c.center;
radius = c.radius;
cout << "Copy Constructor" << endl;
}
// Destructor
Circle::~Circle()
{
cout << "Circle Destructor" << endl;
}
// Modifier function for center
void Circle::CentrePoint(const Point& c)
{
center = c;
}
// Modifier function for radius
void Circle::Radius(double r)
{
radius = r;
}
// Selector functions for center, radius
Point Circle::CentrePoint() const
{
return center;
}
double Circle::Radius() const
{
return radius;
}
// Diameter of circle
double Circle::Diameter() const
{
return 2.0 * radius;
}
// Area of circle
double Circle::Area() const
{
return M_PI * pow(radius, 2);
}
// Circumference of circle
double Circle::Circumference() const
{
return 2.0 * M_PI * radius;
}
// Convert circle to string
string Circle::toString() const
{
stringstream stream;
std::string s = Shape::toString();
stream << "Center: " << center.toString() << ", " << "Radius: " << radius << ", "<< s;
return stream.str();
}
// Assignment operator
Circle& Circle::operator = (const Circle& c)
{
Shape::operator = (c);
center = c.center;
radius = c.radius;
return *this;
}
// Send to ostream
ostream& operator << (ostream& os, const Circle& c)
{
os << c.toString() << endl;
return os;
}
// Draw
void Circle::Draw() const
{
cout << "Circle Draw" << endl;
}<file_sep>/C++/processcontrol/PCB.h
/**
* Describes a process control block
* @author <NAME>
* @since 2017-02-16
* Course: CS3102.01
* Programming Project #: 1
* Instructor: Dr. Duncan
*/
#include <string>
#include <iostream>
using namespace std;
class PCB
{
private:
/**
* the process ID
*/
int pid;
/**
* the priority value of this process [-20,19]
*/
int priority;
/**
* the running status of this process
* [0 = not running, 1 = running]
*/
int running;
/**
* the cycle during which this process was created
*/
int arrived;
/**
* the quantum (number of cycles required to execute)
* this process
*/
int length;
/**
* the cycle when this process began running
*/
int start;
/**
* the number of cycles from the creation of this process
* to when it began running
*/
int wait;
public:
/**
* Create a a PCB with the lowest priority
* and a quantum of 0 (default constructor)
*/
PCB()
{
priority = 19;
running = 0;
arrived = 0;
length = 0;
}
/**
* Creates a PCB with the specified parameters.
* @param id the process ID
* @param pVal priority value [-20,19]
* @param run executing status [0 = not running, 1 = running]
* @param arr the cycle during which the process arrived
* @param len the quantum - number of cycles required to execute
* the process
*/
PCB(int id, int pVal, int run, int arr, int len)
{
pid = id;
priority = pVal;
running = run;
arrived = arr;
length = len;
}
/**
* Gives the ID for this process.
* @return the pid of this process
*/
int getPid() const
{
return pid;
}
/**
* Gives the priority value for this process.
* @return the priority of this process
*/
int getPriority() const
{
return priority;
}
/**
* Gives the running status of this process.
* @return the running status of this process
*/
bool isExecuting() const
{
return (running == 1);
}
/**
* Sets the running status of this process to 1.
*/
void execute()
{
running = 1;
}
/**
* Gives the arrival time for this process.
* @return cycle during with this process was created
*/
int getArrival() const
{
return arrived;
}
/**
* Gives the quantum of this process.
* @return the number of cycles required to execute this process
*/
int getLength() const
{
return length;
}
/**
* Gives the cycle during which this process began running.
* @return the cycle during which this process began running
*/
int getStart() const
{
return start;
}
/**
* Sets the start cyle for this process.
* @param startCycle the cycle during which this process began
* running.
*/
void setStart(int startCycle)
{
start = startCycle;
}
/**
* Gives the wait time for this process.
* @return the number of cycles this process waited
* before running.
*/
int getWait() const
{
return wait;
}
/**
* Sets the wait time for this process.
*/
void setWait(int waitTime)
{
wait = waitTime;
}
/**
* Overloaded == operator that determines whether
* two process control blocks are the same.
* @param pcb1 a process control block
* @param pcb2 a process control block
* @return true if the PCBs are the same; otherwise, false
*/
friend bool operator==(const PCB& pcb1, const PCB& pcb2);
/**
* Overloaded != operator that determines whether
* two process control blocks are different.
* @param pcb1 a process control block
* @param pcb2 a process control block
* @return true if the PCBs are different; otherwise, false
*/
friend bool operator!=(const PCB& pcb1, const PCB& pcb2);
/**
* Overloaded > operator that determines whether
* the first PCB has a higher priority than the second.
* @param pcb1 a process control block
* @param pcb2 a process control block
* @return true if the first PCB has a higher priority than the second;
* otherwise, false
*/
friend bool operator>(const PCB& pcb1, const PCB& pcb2);
/**
* Overloaded < operator that determines whether
* the first PCB has a lower priority than the second.
* @param pcb1 a process control block
* @param pcb2 a process control block
* @return true if the first PCB has a lower priority than the second;
* otherwise, false
*/
friend bool operator<(const PCB& pcb1, const PCB& pcb2);
/**
* Overloaded >= operator that determines whether
* the first PCB has the same or higher priority than the second.
* @param pcb1 a process control block
* @param pcb2 a process control block
* @return true if the first PCB has the same or higher priority than
* the second; otherwise, false
*/
friend bool operator>=(const PCB& pcb1, const PCB& pcb2);
/**
* Overloaded <= operator that determines whether
* the first PCB has the same or lower priority than the second.
* @param pcb1 a process control block
* @param pcb2 a process control block
* @return true if the first PCB has the same or lower priority than
* the second; otherwise, false
*/
friend bool operator<=(const PCB& pcb1, const PCB& pcb2);
};
bool operator==(const PCB& pcb1, const PCB& pcb2)
{
return (pcb1.running == pcb2.running &&
pcb1.priority == pcb2.priority &&
pcb1.arrived == pcb2.arrived);
}
bool operator!=(const PCB& pcb1, const PCB& pcb2)
{
return (!(pcb1 == pcb2));
}
bool operator>(const PCB& pcb1, const PCB& pcb2)
{
if (pcb1.running > pcb2.running)
return true;
if (pcb1.running < pcb2.running)
return false;
if (pcb1.priority < pcb2.priority)
return true;
if (pcb1.priority > pcb2.priority)
return false;
if (pcb1.arrived < pcb2.arrived)
return true;
else
return false;
}
bool operator<(const PCB& pcb1, const PCB& pcb2)
{
return ((pcb1 != pcb2) && !(pcb1 > pcb2));
}
bool operator<=(const PCB& pcb1, const PCB& pcb2)
{
return (pcb1 > pcb2 || pcb1 == pcb2);
}
bool operator>=(const PCB& pcb1, const PCB& pcb2)
{
return (pcb1 > pcb2 || pcb1 == pcb2);
}
<file_sep>/QuantNetCpp/Level 6/4.2a/4.2a.1/Array.cpp
/*
C++ code for HW5, Section 4.2a, Exercise 1
*/
#ifndef Array_CPP
#define Array_CPP
// include header and source file
#include "Point.hpp"
#include "Array.hpp"
#include "OutOfBoundsException.hpp"
using namespace std;
// Default Consturctor
template <typename T>
Array<T>::Array()
{
elements = new T[10];
len = 10;
}
// Constructor
template <typename T>
Array<T>::Array(int size)
{
elements = new T[size];
len = size;
}
// Copy constructor
template <typename T>
Array<T>::Array(const Array<T>& arr)
{
elements = new T[arr.len];
len = arr.len;
for (int i = 0; i < len; i++)
{
elements[i] = arr.elements[i];
}
}
// Destructor
template <typename T>
Array<T>::~Array()
{
delete[] elements;
}
// Selector functions for size and elements
template <typename T>
int Array<T>::Size() const
{
return len;
}
template <typename T>
T& Array<T>::GetElement(int idx) const
{
if (idx < 0 || idx >= len)
{
throw OutOfBoundsException(idx);
}
return elements[idx];
}
// Modifier function for elements
template <typename T>
void Array<T>::SetElement(int idx, const T& element)
{
if (idx < 0 || idx >= len)
{
throw OutOfBoundsException(idx);
}
elements[idx] = element;
}
// Assignment operator
template <typename T>
Array<T>& Array<T>::operator = (const Array<T>& arr)
{
delete[] elements;
elements = new T[arr.len];
len = arr.len;
for (int i = 0; i < len; i++)
{
elements[i] = arr.elements[i];
}
return *this;
}
// Square bracket operator
template <typename T>
T& Array<T>::operator [] (int idx)
{
if (idx < 0 || idx >= len)
{
throw OutOfBoundsException(idx);
}
return elements[idx];
}
// Const square bracket operator for read-only and so that arrays can be declared as const
template <typename T>
const T& Array<T>::operator [] (int idx) const
{
if (idx < 0 || idx >= len)
{
throw OutOfBoundsException(idx);
}
return elements[idx];
}
#endif<file_sep>/QuantNetCpp/Level 2/Section 1.8/Exercise 1/exercise1.c
/*
C code for HW2, Section 1.8, Exercise 1
*/
// Preprocessor for include files
#include <stdio.h> // C style I/O
#include <string.h> // Strings
// Define struct
struct Article
{
int articleNum;
int quantity;
char* desc[20];
};
// Declare the print function
void Print(struct Article* article);
// Main function
int main()
{
// Create struct instance
struct Article article;
// Define struct fields
article.articleNum = 100;
article.quantity = 10;
strcpy_s(article.desc, "C++ article");
// Call print function to display struct contents
Print(&article);
}
// Implement the print function
void Print(struct Article* article)
{
printf("Article number: %d \nQuantity:%d \nDescription:%p \n", article->articleNum, article->quantity, article->desc);
}<file_sep>/QuantNetCpp/Level 2/Section 1.6/Exercise 1/Defs.h
/*
C code for HW2, Section 1.6, Exercise 1
*/
// Avoid multiple inclusion
#ifndef DEFS
#define DEFS
// Define macros to print
#define PRINT1(a) (printf("%lf\n", a))
#define PRINT2(a, b) (printf("%lf, %lf\n", a, b))
#endif#pragma once
<file_sep>/QuantNetCpp/Level 1/Section 1.5/Exercise 3/Print.h
/*
C code for HW1, Section 1.5, Exercise 3
*/
//Print.h
extern void print(int i);<file_sep>/QuantNetCpp/Level 4/Section 2.6/2.6.1/Point.cpp
/*
C++ code for HW4, Section 2.6, Exercise 1
*/
// include header and source file
#include "Point.hpp"
// include for math operations
#include <cmath>
// include for cin/cout
#include <iostream>
#include <sstream>
using namespace std;
namespace AARONCAO
{
namespace CAD
{
// Default constructor
Point::Point()
{
cout << "Default Constructor" << endl;
}
// Constructor
Point::Point(double x, double y)
{
xCoordinate = x;
yCoordinate = y;
cout << "Constructor" << endl;
}
// Explicit single-argument constructor
Point::Point(double value)
{
xCoordinate = value;
yCoordinate = value;
cout << "Explicit Single-Argument Constructor" << endl;
}
// Copy constructor
Point::Point(const Point& pt)
{
xCoordinate = pt.xCoordinate;
yCoordinate = pt.yCoordinate;
cout << "Copy Constructor" << endl;
}
// Destructor
Point::~Point()
{
cout << "Destructor" << endl;
}
// Convert point to string
string Point::toString() const
{
stringstream pointStream;
// print format: Point(x, y)
pointStream << "Point(" << xCoordinate << ", " << yCoordinate << ")";
// convert to string
return pointStream.str();
}
// Distance to the origin
double Point::Distance() const
{
return sqrt(pow(xCoordinate, 2) + pow(yCoordinate, 2));
}
//Distance between two points
double Point::Distance(const Point& p) const
{
return sqrt(pow(xCoordinate - p.xCoordinate, 2) + pow(yCoordinate - p.yCoordinate, 2));
}
// Negate the coordinates
Point Point::operator - () const
{
return Point(-xCoordinate, -yCoordinate);
}
// Scale the coordinates
Point Point::operator * (double factor) const
{
return Point(factor * xCoordinate, factor * yCoordinate);
}
// Add coordinates
Point Point::operator + (const Point& p) const
{
return Point(xCoordinate + p.xCoordinate, yCoordinate + p.yCoordinate);
}
// Equally compare operator
bool Point::operator == (const Point& p) const
{
if (xCoordinate == p.xCoordinate && yCoordinate == p.yCoordinate)
{
return true;
}
else
{
return false;
}
}
// Assignment operator
Point& Point::operator = (const Point& source)
{
xCoordinate = source.xCoordinate;
yCoordinate = source.yCoordinate;
return *this;
}
// Scale the coordinates & assign
Point& Point::operator *= (double factor)
{
xCoordinate *= factor;
yCoordinate *= factor;
return *this;
}
// Send to ostream
ostream& operator << (ostream& os, const Point& p)
{
os << p.toString() << endl;
return os;
}
}
}<file_sep>/QuantNetCpp/Level 4/Section 2.6/2.6.1/Line.cpp
/*
C++ code for HW4, Section 2.6, Exercise 1
*/
// include header and source file
#include "Line.hpp"
#include "Point.hpp"
// include for cin/cout
#include <sstream>
namespace AARONCAO
{
namespace CAD
{
// Default constructor
Line::Line()
{
p1 = Point(0, 0);
p2 = Point(0, 0);
}
// Constructor with stand and end point
Line::Line(const Point& pt1, const Point& pt2)
{
p1 = pt1;
p2 = pt2;
}
// Copy constructor
Line::Line(const Line& line)
{
p1 = line.p1;
p2 = line.p2;
}
// Destructor
Line::~Line()
{
}
// Overloaded getter for p1
Point Line::P1() const
{
return p1;
}
// Overloaded getter for p2
Point Line::P2() const
{
return p2;
}
// Overloaded setter for p1
void Line::P1(const Point& point1)
{
p1 = point1;
}
// Overloaded setter for p2
void Line::P2(const Point& point2)
{
p2 = point2;
}
// function returns length of the line
double Line::Length() const
{
return p1.Distance(p2);
}
// function returns line description
string Line::toString() const
{
stringstream stream;
stream << "Line: " << p1.toString() << ", " << p2.toString();
return stream.str();
}
// Assignment operator
Line& Line::operator = (const Line& source)
{
p1 = source.p1;
p2 = source.p2;
return *this;
}
// Send to ostream
ostream& operator << (ostream& os, const Line& l)
{
os << l.toString() << endl;
return os;
}
}
}<file_sep>/C/lab7/letters.c
#include <stdio.h>
#include <stdlib.h>
typedef struct node {
char letter;
struct node *next;
} Node;
int main( ) {
printf("Initializing\n");
Node *n1 = (Node *) malloc( sizeof(Node) );
Node *n2 = (Node *) malloc( sizeof(Node) );
Node *n3 = (Node *) malloc( sizeof(Node) );
Node *n4 = (Node *) malloc( sizeof(Node) );
Node *n5 = (Node *) malloc( sizeof(Node) );
n1->letter = 'E'; n1->next = n2;
n2->letter = 'L'; n2->next = n3;
n3->letter = 'V'; n3->next = n4;
n4->letter = 'I'; n4->next = n5;
n5->letter = 'S'; n5->next = NULL;
printf("Printing ELVIS \n");
Node *ptr, *first;
first = n1;
ptr = first;
while ( ptr != NULL ) {
printf("%c", ptr->letter);
ptr = ptr->next;
}
printf("\n");
printf("Printing LIVES\n");
first = n2;
n2->next = n4;
n4->next = n3;
n3->next = n1;
n1->next = n5;
n5->next = NULL;
ptr = first;
while ( ptr != NULL ) {
printf("%c", ptr->letter);
ptr = ptr->next;
}
printf("\n");
return 0;
}
| fed362de24a77df2a256971e5ec51ed881ccc26d | [
"Markdown",
"C",
"Makefile",
"C++"
] | 112 | C++ | aarontcao/c_cpp_stuff | 174da687f08516b421ec78aa23c5da08852e0b98 | 4c621d662a54f90fde308214cc44588a1369b157 |
refs/heads/master | <file_sep>/*
EL Driver test code
<NAME>, 5/20/09
*/
#include <avr/io.h>
#include <avr/interrupt.h>
#define EL_G 0 //PB0
#define EL_H 1 //PB1
#define EL_A 0 //PC0
#define EL_B 1 //PC1
#define EL_C 2 //PC2
#define EL_D 3 //PC3
#define EL_E 4 //PC4
#define EL_F 5 //PC5
//Define functions
//======================
void ioinit(void); //Initializes IO
void delay_ms(uint16_t x); //General purpose delay
void delay_us(int x);
void pulse(char line, int speed);
void cycle(int speed);
void line_on(char line);//send 'A' through 'H'
void line_off(char line);//send 'A' through 'H'
//======================
static char line_on_1 = 0;
static char line_on_2 = 0;
int main (void)
{
int x;
ioinit(); //Setup IO pins and defaults
delay_ms(5000);
while(1)
{
for (x = 0; x < 4; x++)
{
pulse('A',125);
delay_ms(100);
}
for (x = 10000; x < 25000; x+=1000)
{
cycle(x);
}
for (x = 25000; x < 32000; x+=200)
{
cycle(x);
}
for (x = 0; x < 1600; x++)
{
cycle(32000);
}
for (x = 0; x < 15; x++)
{
line_on('F');
delay_ms(20);
line_on('B');
delay_ms(20);
line_on('H');
delay_ms(20);
line_on('E');
delay_ms(20);
line_on('C');
delay_ms(20);
line_on('A');
delay_ms(20);
line_on('D');
delay_ms(20);
line_on('G');
delay_ms(20);
}
line_off('D');
line_off('G');
for (x = 0; x < 4; x++)
{
pulse('A',250);
delay_ms(100);
}
delay_ms(1000);
}
}
void ioinit (void)
{
PORTB = 0;
DDRB = 0;
PORTC = 0;
DDRC = 0;
TCCR2B = (1<<CS21); //Set Prescaler to 8. CS21=1
}
//General short delays
void delay_us(int x)
{
int y, z, a;
y = x/256;
z = x - y * 256;
for (a = 0; a < y; a++)
{
TIFR2 |= 0x01;//Clear any interrupt flags on Timer2
TCNT2 = 0; //256 - 125 = 131 : Preload timer 2 for x clicks. Should be 1us per click
while(!(TIFR2 & 0x01));
}
TIFR2 |= 0x01;//Clear any interrupt flags on Timer2
TCNT2 = 256-z; //256 - 125 = 131 : Preload timer 2 for x clicks. Should be 1us per click
while(!(TIFR2 & 0x01));
}
//General short delays
void delay_ms(uint16_t x)
{
for (; x > 0 ; x--)
{
delay_us(250);
delay_us(250);
delay_us(250);
delay_us(250);
}
}
void pulse(char line, int speed)
{
int x;
for (x = 0; x < 10000; x+=speed)
{
line_on(line);
delay_us(x + 100);
line_off(line);
delay_us(10000 - x);
}
for (x = 0; x < 10000; x+=speed)
{
line_on(line);
delay_us(10100 - x);
line_off(line);
delay_us(x + 100);
}
}
void line_on(char line)//send 'A' through 'H'
{
char temp;
if (line_on_2 != 0) line_off(line_on_2);//can't have more than one line on at a time
//keep track of what's on and in what sequence
line_on_2 = line_on_1;
line_on_1 = line;
temp = line - 65;
if (temp < 6) DDRC |= (1<<temp);
else DDRB |= (1<<(temp-6));
}
void line_off(char line)//send 'A' through 'H'
{
char temp;
if (line == line_on_2) line_on_2 = 0;
else if (line == line_on_1)
{
line_on_1 = line_on_2;
line_on_2 = 0;
}
temp = line - 65;
if (temp < 6) DDRC &= ~(1<<temp);
else DDRB &= ~(1<<(temp-6));
}
void cycle(int speed)
{
int x;
if (speed > 32000) speed = 32000;
for (x = 65; x < 72; x++)
{
line_on(x);
delay_us(32100 - speed);
}
for (x = 72; x >= 65; x--)
{
line_on(x);
delay_us(32100 - speed);
}
line_off('B');
delay_us(32100 - speed);
line_off('A');
}
<file_sep>// Weather Station for Birchfield Penny Art Galery
void setup()
{
}
void loop ()
{
}
<file_sep>
// include the library code:
#include <Wire.h>
#include <Adafruit_MCP23017.h>
#include <Adafruit_RGBLCDShield.h>
Adafruit_RGBLCDShield lcd = Adafruit_RGBLCDShield();
#define SHUTTER_PIN 13
void setup() {
lcd.begin(16, 2);
lcd.print("Camera Control");
lcd.setBacklight(1);
digitalWrite(SHUTTER_PIN, LOW);
pinMode(SHUTTER_PIN, OUTPUT);
}
uint8_t i=0;
void loop() {
uint8_t buttons = lcd.readButtons();
if (buttons)
{
if (buttons & BUTTON_DOWN)
{
lcd.setCursor(0, 1);
lcd.print("Go");
digitalWrite(SHUTTER_PIN, HIGH);
delay(2000);
digitalWrite(SHUTTER_PIN, LOW);
delay(300);
digitalWrite(SHUTTER_PIN, HIGH);
delay(1000);
digitalWrite(SHUTTER_PIN, LOW);
lcd.setCursor(0, 1);
lcd.print(" ");
}
}
}
<file_sep>BOARD_TAG = ethernet
ARDUINO_LIBS = Ethernet SPI OSC Humidity_Temperature_Sensor Barometer_Sensor Wire Twitter
include ../Arduino.mk
include ../Arduino-Makefile/arduino-mk/Arduino.mk
<file_sep>#include "Wire.h"
#include "i2cLCD.h"
#include <TimerOne.h>
#define __MYISR__
#define __LCD__
// output use digital pin2 for interrupt
#define TSL_FREQ_PIN 2
int ledPin = 13;
int ledState = LOW;
unsigned short isrPulseCount = 0;
boolean PulseCountValid = false;
unsigned short PulseCount = 0;
unsigned short PulseCountMax = 0;
int PBPin = 8;
unsigned char PBCount = 0;
// initialize the library with the numbers of the interface pins
i2cLCD lcd(0);
void timerIsr()
{
if (digitalRead(PBPin) == LOW)
{
PBCount++;
if (PBCount == 1)
{
PulseCountMax = 0;
}
}
else
{
PBCount = 0;
}
PulseCount = isrPulseCount;
if (PulseCount > PulseCountMax)
PulseCountMax = PulseCount;
isrPulseCount = 0;
PulseCountValid = true;
}
#ifdef __MYISR__
ISR(INT0_vect, ISR_NAKED)
{
uint8_t s;
asm (
"push __tmp_reg__" "\n\t"
"in __tmp_reg__,__SREG__" "\n\t"
"push r26" "\n\t"
"push r27" "\n\t"
::);
asm (
"adiw %0,1" "\n\t"
: "=x" (isrPulseCount)
: "0" (isrPulseCount));
asm (
"pop r27" "\n\t"
"pop r26" "\n\t"
"out __SREG__,__tmp_reg__" "\n\t"
"pop __tmp_reg__" "\n\t"
"reti" "\n\t"
::);
}
ISR(INT1_vect)
{
}
void myattachInterrupt(uint8_t interruptNum, int mode) {
#define EXTERNAL_NUM_INTERRUPTS 2
if(interruptNum < EXTERNAL_NUM_INTERRUPTS) {
// Configure the interrupt mode (trigger on low input, any change, rising
// edge, or falling edge). The mode constants were chosen to correspond
// to the configuration bits in the hardware register, so we simply shift
// the mode into place.
// Enable the interrupt.
switch (interruptNum) {
#if defined(EICRA) && defined(EICRB) && defined(EIMSK)
case 2:
EICRA = (EICRA & ~((1 << ISC00) | (1 << ISC01))) | (mode << ISC00);
EIMSK |= (1 << INT0);
break;
case 3:
EICRA = (EICRA & ~((1 << ISC10) | (1 << ISC11))) | (mode << ISC10);
EIMSK |= (1 << INT1);
break;
case 4:
EICRA = (EICRA & ~((1 << ISC20) | (1 << ISC21))) | (mode << ISC20);
EIMSK |= (1 << INT2);
break;
case 5:
EICRA = (EICRA & ~((1 << ISC30) | (1 << ISC31))) | (mode << ISC30);
EIMSK |= (1 << INT3);
break;
case 0:
EICRB = (EICRB & ~((1 << ISC40) | (1 << ISC41))) | (mode << ISC40);
EIMSK |= (1 << INT4);
break;
case 1:
EICRB = (EICRB & ~((1 << ISC50) | (1 << ISC51))) | (mode << ISC50);
EIMSK |= (1 << INT5);
break;
case 6:
EICRB = (EICRB & ~((1 << ISC60) | (1 << ISC61))) | (mode << ISC60);
EIMSK |= (1 << INT6);
break;
case 7:
EICRB = (EICRB & ~((1 << ISC70) | (1 << ISC71))) | (mode << ISC70);
EIMSK |= (1 << INT7);
break;
#else
case 0:
#if defined(EICRA) && defined(ISC00) && defined(EIMSK)
EICRA = (EICRA & ~((1 << ISC00) | (1 << ISC01))) | (mode << ISC00);
EIMSK |= (1 << INT0);
#elif defined(MCUCR) && defined(ISC00) && defined(GICR)
MCUCR = (MCUCR & ~((1 << ISC00) | (1 << ISC01))) | (mode << ISC00);
GICR |= (1 << INT0);
#elif defined(MCUCR) && defined(ISC00) && defined(GIMSK)
MCUCR = (MCUCR & ~((1 << ISC00) | (1 << ISC01))) | (mode << ISC00);
GIMSK |= (1 << INT0);
#else
#error attachInterrupt not finished for this CPU (case 0)
#endif
break;
case 1:
#if defined(EICRA) && defined(ISC10) && defined(ISC11) && defined(EIMSK)
EICRA = (EICRA & ~((1 << ISC10) | (1 << ISC11))) | (mode << ISC10);
EIMSK |= (1 << INT1);
#elif defined(MCUCR) && defined(ISC10) && defined(ISC11) && defined(GICR)
MCUCR = (MCUCR & ~((1 << ISC10) | (1 << ISC11))) | (mode << ISC10);
GICR |= (1 << INT1);
#elif defined(MCUCR) && defined(ISC10) && defined(GIMSK) && defined(GIMSK)
MCUCR = (MCUCR & ~((1 << ISC10) | (1 << ISC11))) | (mode << ISC10);
GIMSK |= (1 << INT1);
#else
#warning attachInterrupt may need some more work for this cpu (case 1)
#endif
break;
#endif
}
}
}
#else
void add_pulse()
{
isrPulseCount++;
return;
}
#endif
void setup()
{
// attach interrupt to pin2, send output pin of TSL230R to arduino 2
// call handler on each rising pulse
#ifdef __MYISR__
myattachInterrupt(0, RISING);
#else
attachInterrupt(0, add_pulse, RISING);
#endif
pinMode(TSL_FREQ_PIN, INPUT);
pinMode(13, OUTPUT);
// Set timer for 1 second interval and attach the ISR
Timer1.initialize(100000);
Timer1.attachInterrupt( timerIsr );
#ifdef __LCD__
// set up the LCD's number of columns and rows:
lcd.begin(16,2);
// Print a message to the LCD.
lcd.print("Count:");
lcd.setCursor(0, 1);
lcd.print("Max:");
#endif
// push button to reset max
pinMode(PBPin, INPUT);
}
void loop()
{
if (PulseCountValid)
{
if (ledState == LOW)
ledState = HIGH;
else
ledState = LOW;
//toggle the LED based on our switch above
digitalWrite(ledPin, ledState);
PulseCountValid = false;
#ifdef __LCD__
lcd.setCursor(7, 0);
lcd.print(" ");
lcd.setCursor(7, 0);
lcd.print(PulseCount);
lcd.setCursor(7, 1);
lcd.print(" ");
lcd.setCursor(7, 1);
lcd.print(PulseCountMax);
#endif
}
}
<file_sep>#!/usr/bin/python
import sys
clock = 16000000
minTimerVal = 32768
def calcTimerValues(freq):
timerVal = 65535
numclocks = int(round(clock/freq))
lastTimerVal = 0
numIntervals = int(numclocks / timerVal)
lastTimerVal = numclocks % timerVal
if numIntervals == 0:
return (timerVal, numIntervals, lastTimerVal)
if lastTimerVal < minTimerVal:
delta = minTimerVal - lastTimerVal
decrement = delta / numIntervals + 1;
timerVal = timerVal - decrement
numIntervals = int(numclocks / timerVal)
lastTimerVal = numclocks % timerVal
return (timerVal, numIntervals, lastTimerVal)
if __name__ == '__main__':
if len(sys.argv) != 2:
print 'usage ' + sys.argv[0] + ' frequency'
else:
freq = float(sys.argv[1])
print 'Desired Frequency: ' + str(freq)
print 'Num Clocks: ' + str(clock/freq)
(val, num, last) = calcTimerValues(freq)
print 'First Timer Val: ' + str(val)
print 'Num rollovers: ' + str(num)
print 'Last Timer Val: ' + str(last)
numClocks = val * num + last
print 'Actual Num Clocks:' + str(numClocks)
actual = float(clock) / numClocks
print 'Actual Frequncy: ' + str(actual)
print 'Error: ' + str((actual - freq) / freq)
print
<file_sep>
BOARD_TAG = ethernet
ARDUINO_LIBS = LiquidCrystal Timer1
include ../Arduino.mk
<file_sep>/*
Blink
Turns on an LED on for one second, then off for one second, repeatedly.
This example code is in the public domain.
*/
#include "fsm.h"
FSM_HANDLE g_TelFsm;
#define TEL_CMDEVENT_X \
X(TELCMD_MAKECALL) \
X(TELCMD_SEND_DIGITS) \
X(TELCMD_PLAY_FILES) \
X(TELCMD_STOP_PLAY_FILES) \
X(TELCMD_DROP) \
X(TELEVENT_GCEV_UNBLOCKED) \
X(TELEVENT_GCEV_RESETLINEDEV) \
X(TELEVENT_GCEV_PROCEEDING) \
X(TELEVENT_GCEV_ALERTING) \
X(TELEVENT_GCEV_CONNECTED) \
X(TELEVENT_GCEV_OFFERED) \
X(TELEVENT_GCEV_ACCEPT) \
X(TELEVENT_GCEV_ANSWERED) \
X(TELEVENT_GCEV_DISCONNECTED) \
X(TELEVENT_GCEV_DROPCALL) \
X(TELEVENT_GCEV_RELEASECALL) \
X(TELEVENT_TDX_PLAY) \
X(TELEVENT_TDX_RECORD) \
X(TELEVENT_TDX_GETDIG) \
X(TELEVENT_TDX_DIAL) \
X(TELEVENT_TDX_CALLP) \
X(TELEVENT_TDX_CST) \
X(TELEVENT_TDX_SETHOOK) \
X(TELEVENT_TDX_WINK) \
X(TELEVENT_TDX_ERROR) \
X(TELEVENT_TDX_PLAYTONE) \
X(TELEVENT_TDX_GETR2MF) \
X(TELEVENT_TDX_BARGEIN) \
X(TELEVENT_TDX_NOSTOP)
#define X(a) a,
typedef enum
{
TEL_CMDEVENT_X
TELEVENT_MAX
} st_telfsm_eventid_t;
#undef X
#define TEL_STATE_ID_X \
X(TEL_STATE_START) \
X(TEL_STATE_DISC_WAIT) \
X(TEL_STATE_UNBLOCKED) \
X(TEL_STATE_INBOUNDWAITING) \
X(TEL_STATE_WAIT_PROCEEDING) \
X(TEL_STATE_WAIT_ALERTING) \
X(TEL_STATE_WAIT_CONNECT) \
X(TEL_STATE_CONNECTED) \
X(TEL_STATE_OFFERING) \
X(TEL_STATE_ACCEPTED) \
X(TEL_STATE_ANSWERED) \
X(TEL_STATE_WAIT_PLAY) \
X(TEL_STATE_STOPCHANNEL) \
X(TEL_STATE_DISCONNECTED) \
X(TEL_STATE_CALL_DROPPED)
#define X(a) a,
typedef enum
{
TEL_STATE_ID_X
TEL_STATE_ID_MAX
} st_telfsm_stateid_t;
#undef X
void entryBlah(FSM_APP_CONTEXT a_AppContext);
void exitBlah(FSM_APP_CONTEXT a_AppContext);
FSM_BOOL condBlah(FSM_APP_CONTEXT a_AppContext, void* a_pAppMsg);
FSM_BOOL actionBlah(FSM_APP_CONTEXT a_AppContext, void* a_pAppMsg);
FSM_OBJECT_STATE state;
FSM_APP_CONTEXT context;
// Pin 13 has an LED connected on most Arduino boards.
// give it a name:
int led = 13;
// the setup routine runs once when you press reset:
void setup() {
// initialize the digital pin as an output.
pinMode(led, OUTPUT);
buildTelFSM();
}
// the loop routine runs over and over again forever:
void loop() {
digitalWrite(led, HIGH); // turn the LED on (HIGH is the voltage level)
delay(1000); // wait for a second
digitalWrite(led, LOW); // turn the LED off by making the voltage LOW
delay(1000); // wait for a second
fsmExecute(g_TelFsm, &state, EVENT_TIMEOUT, context, NULL);
}
void verifyTelFSMCallback(int iStateId, FSM_VERIFY_ERROR eFsmVerifyErr)
{
}
FSM_BOOL buildTelFSM(void)
{
FSM_HANDLE l_hState;
if (NULL == (g_TelFsm = fsmCreateFsm()))
return FSM_FALSE;
// ANY STATE
l_hState = fsmCreateAnyState(g_TelFsm);
fsmTransition(l_hState, TELCMD_DROP, FSM_NO_CONDITION, TEL_STATE_STOPCHANNEL, actionBlah, FSM_END);
fsmTransition(l_hState, TELEVENT_GCEV_DISCONNECTED, FSM_NO_CONDITION, TEL_STATE_DISC_WAIT, FSM_END);
// TEL_STATE_CALL_CONNECTED
l_hState = fsmCreateState(g_TelFsm, TEL_STATE_DISC_WAIT, entryBlah, exitBlah);
fsmTransition(l_hState, EVENT_TIMEOUT, FSM_NO_CONDITION, TEL_STATE_STOPCHANNEL, actionBlah, FSM_END);
// TEL_STATE_NULL
l_hState = fsmCreateState(g_TelFsm, TEL_STATE_START, FSM_NULL_ENTRY, FSM_NULL_EXIT);
fsmTransition(l_hState, TELEVENT_GCEV_UNBLOCKED, FSM_NO_CONDITION, TEL_STATE_UNBLOCKED, actionBlah, FSM_END);
// fsmCatchTransition(l_hState, TEL_STATE_ERROR, actionBlah, FSM_END);
// TEL_STATE_UNBLOCKED
l_hState = fsmCreateState(g_TelFsm, TEL_STATE_UNBLOCKED, FSM_NULL_ENTRY, FSM_NULL_EXIT);
fsmTransition(l_hState, TELEVENT_GCEV_RESETLINEDEV, FSM_NO_CONDITION, TEL_STATE_INBOUNDWAITING, actionBlah, actionBlah, FSM_END);
// TEL_STATE_INBOUNDWAITING
l_hState = fsmCreateState(g_TelFsm, TEL_STATE_INBOUNDWAITING, FSM_NULL_ENTRY, FSM_NULL_EXIT);
fsmTransition(l_hState, TELEVENT_GCEV_RESETLINEDEV, FSM_NO_CONDITION, TEL_STATE_INBOUNDWAITING, actionBlah, FSM_END);
fsmTransition(l_hState, TELEVENT_GCEV_OFFERED, FSM_NO_CONDITION, TEL_STATE_OFFERING, actionBlah, actionBlah, FSM_END);
fsmTransition(l_hState, TELCMD_MAKECALL, FSM_NO_CONDITION, TEL_STATE_WAIT_PROCEEDING, actionBlah, FSM_END);
// TEL_STATE_WAIT_PROCEEDING
l_hState = fsmCreateState(g_TelFsm, TEL_STATE_WAIT_PROCEEDING, FSM_NULL_ENTRY, FSM_NULL_EXIT);
fsmTransition(l_hState, TELEVENT_GCEV_PROCEEDING, FSM_NO_CONDITION, TEL_STATE_WAIT_ALERTING, FSM_END);
// TEL_STATE_WAIT_ALERTING
l_hState = fsmCreateState(g_TelFsm, TEL_STATE_WAIT_ALERTING, FSM_NULL_ENTRY, FSM_NULL_EXIT);
fsmTransition(l_hState, TELEVENT_GCEV_ALERTING, FSM_NO_CONDITION, TEL_STATE_WAIT_CONNECT, FSM_END);
fsmTransition(l_hState, TELEVENT_GCEV_CONNECTED, FSM_NO_CONDITION, TEL_STATE_CONNECTED, actionBlah, actionBlah, FSM_END);
// TEL_STATE_WAIT_CONNECT
l_hState = fsmCreateState(g_TelFsm, TEL_STATE_WAIT_CONNECT, FSM_NULL_ENTRY, FSM_NULL_EXIT);
fsmTransition(l_hState, TELEVENT_GCEV_CONNECTED, FSM_NO_CONDITION, TEL_STATE_CONNECTED, actionBlah, actionBlah, FSM_END);
// TEL_STATE_CALL_CONNECTED
l_hState = fsmCreateState(g_TelFsm, TEL_STATE_CONNECTED, entryBlah, exitBlah);
// fsmTransition(l_hState, TELCMD_DROP, FSM_NO_CONDITION, TEL_STATE_STOPCHANNEL, actionBlah, FSM_END);
fsmTransition(l_hState, EVENT_TIMEOUT, FSM_NO_CONDITION, TEL_STATE_DISCONNECTED, actionBlah, FSM_END);
fsmTransition(l_hState, TELCMD_PLAY_FILES, FSM_NO_CONDITION, FSM_ST_SAME, actionBlah, actionBlah, FSM_END);
fsmTransition(l_hState, TELCMD_STOP_PLAY_FILES, FSM_NO_CONDITION, FSM_ST_SAME, actionBlah, FSM_END);
fsmTransition(l_hState, TELEVENT_TDX_CST, FSM_NO_CONDITION, FSM_ST_SAME, actionBlah, FSM_END);
fsmTransition(l_hState, TELEVENT_TDX_PLAY, (void*)condBlah, FSM_ST_SAME, actionBlah, actionBlah, FSM_END);
fsmTransition(l_hState, TELEVENT_TDX_PLAY, (void*)condBlah, FSM_ST_SAME, actionBlah, FSM_END);
fsmTransition(l_hState, TELEVENT_TDX_PLAY, (void*)condBlah, TEL_STATE_DISCONNECTED, actionBlah, actionBlah, FSM_END);
// TEL_STATE_OFFERING
l_hState = fsmCreateState(g_TelFsm, TEL_STATE_OFFERING, entryBlah, FSM_NULL_EXIT);
fsmTransition(l_hState, TELEVENT_GCEV_ACCEPT, (void *)condBlah, FSM_ST_SAME, actionBlah, FSM_END);
fsmTransition(l_hState, TELEVENT_GCEV_ACCEPT, (void *)condBlah, TEL_STATE_DISCONNECTED, actionBlah, FSM_END);
fsmTransition(l_hState, TELEVENT_GCEV_ACCEPT, FSM_NO_CONDITION, TEL_STATE_ACCEPTED, actionBlah, FSM_END);
// TEL_STATE_ACCEPTED
l_hState = fsmCreateState(g_TelFsm, TEL_STATE_ACCEPTED, FSM_NULL_ENTRY, FSM_NULL_EXIT);
// fsmTransition(l_hState, TELEVENT_GCEV_ANSWERED, (void *)condBlah, TEL_STATE_ANSWERED, actionBlah, actionBlah, FSM_END);
fsmTransition(l_hState, TELEVENT_GCEV_ANSWERED, FSM_NO_CONDITION, TEL_STATE_ANSWERED, actionBlah, FSM_END);
// TEL_STATE_CALL_ANSWERED
l_hState = fsmCreateState(g_TelFsm, TEL_STATE_ANSWERED, FSM_NULL_ENTRY, FSM_NULL_EXIT);
// fsmTransition(l_hState, TELCMD_DROP, FSM_NO_CONDITION, TEL_STATE_DISCONNECTED, actionBlah, FSM_END);
fsmTransition(l_hState, TELCMD_SEND_DIGITS, FSM_NO_CONDITION, FSM_ST_SAME, actionBlah, FSM_END);
fsmTransition(l_hState, TELCMD_PLAY_FILES, FSM_NO_CONDITION, FSM_ST_SAME, actionBlah, FSM_END);
fsmTransition(l_hState, TELCMD_STOP_PLAY_FILES, FSM_NO_CONDITION, FSM_ST_SAME, actionBlah, FSM_END);
fsmTransition(l_hState, TELEVENT_TDX_DIAL, FSM_NO_CONDITION, FSM_ST_SAME, actionBlah, FSM_END);
fsmTransition(l_hState, TELEVENT_TDX_CST, FSM_NO_CONDITION, FSM_ST_SAME, actionBlah, FSM_END);
fsmTransition(l_hState, TELEVENT_TDX_PLAY, (void*)condBlah, FSM_ST_SAME, actionBlah, actionBlah, FSM_END);
fsmTransition(l_hState, TELEVENT_TDX_PLAY, (void*)condBlah, FSM_ST_SAME, actionBlah, FSM_END);
fsmTransition(l_hState, TELEVENT_TDX_PLAY, (void*)condBlah, TEL_STATE_DISCONNECTED, actionBlah, actionBlah, FSM_END);
// TEL_STATE_WAIT_PLAY
// l_hState = fsmCreateState(g_TelFsm, TEL_STATE_WAIT_PLAY, FSM_NULL_ENTRY, FSM_NULL_EXIT);
// fsmTransition(l_hState, TELEVENT_TDX_PLAY, (void*)condBlah, FSM_ST_SAME, actionBlah, actionBlah, FSM_END);
// fsmTransition(l_hState, TELEVENT_TDX_PLAY, FSM_NO_CONDITION, TEL_STATE_DISCONNECTED, actionBlah, actionBlah, FSM_END);
// TEL_STATE_STOPCHANNEL
l_hState = fsmCreateState(g_TelFsm, TEL_STATE_STOPCHANNEL, FSM_NULL_ENTRY, FSM_NULL_EXIT);
fsmTransition(l_hState, TELEVENT_TDX_NOSTOP, FSM_NO_CONDITION, TEL_STATE_DISCONNECTED, actionBlah, actionBlah, FSM_END);
fsmTransition(l_hState, TELEVENT_TDX_PLAY, FSM_NO_CONDITION, TEL_STATE_DISCONNECTED, actionBlah, actionBlah, FSM_END);
// TEL_STATE_DISCONNECTED
l_hState = fsmCreateState(g_TelFsm, TEL_STATE_DISCONNECTED, FSM_NULL_ENTRY, FSM_NULL_EXIT);
fsmTransition(l_hState, TELEVENT_GCEV_DROPCALL, FSM_NO_CONDITION, TEL_STATE_CALL_DROPPED, actionBlah, actionBlah, FSM_END);
// TEL_STATE_CALL_DROPPED
l_hState = fsmCreateState(g_TelFsm, TEL_STATE_CALL_DROPPED, FSM_NULL_ENTRY, FSM_NULL_EXIT);
fsmTransition(l_hState, TELEVENT_GCEV_RELEASECALL, FSM_NO_CONDITION, TEL_STATE_INBOUNDWAITING, actionBlah, FSM_END);
if (fsmHasCreateErrorOccurred(g_TelFsm))
{
return FSM_FALSE;
}
if (!fsmVerifyFsm(g_TelFsm,verifyTelFSMCallback))
{
return FSM_FALSE;
}
return FSM_TRUE;
}
FSM_BOOL actionBlah(FSM_APP_CONTEXT a_AppContext, void* a_pAppMsg)
{
return FSM_TRUE;
}
void entryBlah(FSM_APP_CONTEXT a_AppContext)
{
}
void exitBlah(FSM_APP_CONTEXT a_AppContext)
{
}
FSM_BOOL condBlah(FSM_APP_CONTEXT a_AppContext, void* a_pAppMsg)
{
return FSM_TRUE;
}
<file_sep>
int LED = 13;
int xStep = 2;
int xDir = 3;
int xMS1 = 4;
int xMS2 = 5;
int yStep = 6;
int yDir = 7;
int yMS1 = 8;
int yMS2 = 9;
int steps;
int dir;
int theDelay;
void setup()
{
pinMode(LED, OUTPUT); // sets the digital pin as output
digitalWrite(xStep,LOW);
pinMode(xStep, OUTPUT);
digitalWrite(xDir,LOW);
pinMode(xDir, OUTPUT);
digitalWrite(xMS1,LOW);
pinMode(xMS1, OUTPUT);
digitalWrite(xMS2,LOW);
pinMode(xMS2, OUTPUT);
digitalWrite(yStep,LOW);
pinMode(yStep, OUTPUT);
digitalWrite(yDir,LOW);
pinMode(yDir, OUTPUT);
digitalWrite(yMS1,LOW);
pinMode(yMS1, OUTPUT);
digitalWrite(yMS2,LOW);
pinMode(yMS2, OUTPUT);
theDelay = 5000;
steps = 0;
dir = 0;
}
void loop()
{
digitalWrite(xStep, HIGH);
digitalWrite(LED, HIGH);
delayMicroseconds(theDelay);
digitalWrite(xStep, LOW);
digitalWrite(LED, LOW);
delayMicroseconds(theDelay);
if (++steps == 200)
{
steps = 0;
dir = dir ^ 1;
digitalWrite(xDir, dir);
delay(1000);
}
}
<file_sep>BOARD_TAG = ethernet
ARDUINO_LIBS =
include ../Arduino.mk
<file_sep>
unsigned short isrPulseCount = 0;
void add_pulse()
{
isrPulseCount++;
return;
}
ISR(INT0_vect)
{
isrPulseCount++;
}
ISR(INT1_vect, ISR_NAKED)
{
uint8_t s;
asm (
"push __tmp_reg__" "\n\t"
"in __tmp_reg__,__SREG__" "\n\t"
"push r26" "\n\t"
"push r27" "\n\t"
::);
asm (
"adiw %0,1" "\n\t"
: "=x" (isrPulseCount)
: "0" (isrPulseCount));
asm (
"pop r27" "\n\t"
"pop r26" "\n\t"
"out __SREG__,__tmp_reg__" "\n\t"
"pop __tmp_reg__" "\n\t"
"reti" "\n\t"
::);
}
void setup()
{
// attach interrupt to pin2, send output pin of TSL230R to arduino 2
// call handler on each rising pulse
// attachInterrupt(0, add_pulse, RISING);
}
void loop()
{
}
<file_sep>/*
Blink
Turns on an LED on for one second, then off for one second, repeatedly.
This example code is in the public domain.
*/
#include "fsm.h"
#define EVENT_X \
X(EVENT1) \
X(EVENT2) \
X(EVENT3) \
X(EVENT4) \
X(EVENT5) \
#define X(a) a,
typedef enum
{
EVENT_X
EVENT_MAX
} st_eventid_t;
#undef X
#define STATE_ID_X \
X(STATE_ANY) \
X(STATE_1) \
X(STATE_2) \
#define X(a) a,
typedef enum
{
STATE_ID_X
STATE_ID_MAX
} st_stateid_t;
#undef X
void entryAction0(FSM_APP_CONTEXT a_AppContext);
void entryAction1(FSM_APP_CONTEXT a_AppContext);
void exitAction0(FSM_APP_CONTEXT a_AppContext);
void exitAction2(FSM_APP_CONTEXT a_AppContext);
FSM_BOOL condTrue(FSM_APP_CONTEXT a_AppContext, void* a_pAppMsg);
FSM_BOOL condFalse(FSM_APP_CONTEXT a_AppContext, void* a_pAppMsg);
FSM_BOOL actionTrue(FSM_APP_CONTEXT a_AppContext, void* a_pAppMsg);
FSM_BOOL actionFalse(FSM_APP_CONTEXT a_AppContext, void* a_pAppMsg);
FSM_HANDLE g_Fsm;
FSM_OBJECT_STATE state;
FSM_APP_CONTEXT context;
int _deb = 1;
unsigned int z = 0;
char* l_pObject = NULL;
int led = 13;
int ledVal = LOW;
// the setup routine runs once when you press reset:
void setup() {
pinMode(led, OUTPUT);
Serial.begin(9600);
buildFSM();
fsmSetStartState(&state, STATE_1, STATE_1);
}
// the loop routine runs over and over again forever:
void loop() {
//if (_deb)
// Serial.println("loop");
#if 0
fsmExecute(g_Fsm, &state, EVENT1, context, NULL);
fsmExecute(g_Fsm, &state, EVENT3, context, NULL);
fsmExecute(g_Fsm, &state, EVENT1, context, NULL);
fsmExecute(g_Fsm, &state, EVENT3, context, NULL);
fsmExecute(g_Fsm, &state, EVENT1, context, NULL);
fsmExecute(g_Fsm, &state, EVENT3, context, NULL);
fsmExecute(g_Fsm, &state, EVENT1, context, NULL);
fsmExecute(g_Fsm, &state, EVENT3, context, NULL);
fsmExecute(g_Fsm, &state, EVENT1, context, NULL);
fsmExecute(g_Fsm, &state, EVENT3, context, NULL);
#else
fsmExecute(g_Fsm, &state, EVENT1, context, NULL);
delay(100);
fsmExecute(g_Fsm, &state, EVENT3, context, NULL);
delay(100);
#endif
}
void verifyFSMCallback(int iStateId, FSM_VERIFY_ERROR eFsmVerifyErr)
{
}
FSM_BOOL buildFSM(void)
{
FSM_HANDLE l_hState;
if (NULL == (g_Fsm = fsmCreateFsm()))
{
Serial.println("CreateError");
return FSM_FALSE;
}
// ANY STATE
// l_hState = fsmCreateAnyState(g_Fsm);
// fsmTransition(l_hState, EVENT4, (void*)condTrue, STATE_2, actionTrue, actionTrue, FSM_END);
// STATE_1
l_hState = fsmCreateState(g_Fsm, STATE_1, entryAction0, exitAction0);
fsmTransition(l_hState, EVENT1, (void*)condFalse, STATE_2, actionTrue, FSM_END);
fsmTransition(l_hState, EVENT1, (void*)condTrue, STATE_2, actionTrue, FSM_END);
fsmTransition(l_hState, EVENT2, (void*)condTrue, STATE_2, actionTrue, FSM_END);
fsmTransition(l_hState, EVENT3, (void*)condFalse, STATE_2, actionTrue, FSM_END);
fsmTransition(l_hState, EVENT4, (void*)condFalse, STATE_2, actionTrue, FSM_END);
fsmCatchTransition(l_hState, STATE_2, actionTrue, FSM_END);
// STATE_2
l_hState = fsmCreateState(g_Fsm, STATE_2, entryAction1, exitAction1);
fsmTransition(l_hState, EVENT3, (void*)condTrue, STATE_1, actionTrue, FSM_END);
fsmTransition(l_hState, EVENT4, FSM_NO_CONDITION, FSM_ST_SAME, actionTrue, FSM_END);
fsmTransition(l_hState, EVENT4, FSM_NO_CONDITION, STATE_1, actionTrue, FSM_END);
fsmCatchTransition(l_hState, STATE_1, actionTrue, FSM_END);
if (fsmHasCreateErrorOccurred(g_Fsm))
{
Serial.println("CreateErrorOccurred");
return FSM_FALSE;
}
if (!fsmVerifyFsm(g_Fsm,verifyFSMCallback))
{
Serial.println("VerifyError");
return FSM_FALSE;
}
// Serial.println("Success");
return FSM_TRUE;
}
FSM_BOOL actionTrue(FSM_APP_CONTEXT a_AppContext, void* a_pAppMsg)
{
if (z++ == 10000)
{
ledVal = !ledVal;
digitalWrite(led, ledVal); // turn the LED on (HIGH is the voltage level)
z = 0;
}
if (_deb)
Serial.println("actionTrue");
return FSM_TRUE;
}
FSM_BOOL actionFalse(FSM_APP_CONTEXT a_AppContext, void* a_pAppMsg)
{
if (_deb)
Serial.println("actionFalse");
return FSM_FALSE;
}
void entryAction0(FSM_APP_CONTEXT a_AppContext)
{
if (_deb)
Serial.println("entryAction0");
}
void entryAction1(FSM_APP_CONTEXT a_AppContext)
{
if (_deb)
Serial.println("entryAction1");
}
void exitAction0(FSM_APP_CONTEXT a_AppContext)
{
if (_deb)
Serial.println("exitAction0");
}
void exitAction1(FSM_APP_CONTEXT a_AppContext)
{
if (_deb)
Serial.println("exitAction1");
}
FSM_BOOL condTrue(FSM_APP_CONTEXT a_AppContext, void* a_pAppMsg)
{
if (_deb)
Serial.println("condTrue");
return FSM_TRUE;
}
FSM_BOOL condFalse(FSM_APP_CONTEXT a_AppContext, void* a_pAppMsg)
{
if (_deb)
Serial.println("condFalse");
return FSM_FALSE;
}
<file_sep>
#include "Wire.h"
#include "i2cLCD.h"
#define SPEED_8MHZ
//#define __LCD__
//#define __SERIAL__
// these are checked for in the main program
volatile unsigned long timerCount;
volatile boolean counterReady;
volatile unsigned long RedMaxCount = 0;
volatile unsigned long IRMaxCount = 0;
// internal to counting routine
unsigned long overflowCount;
unsigned int timerTicks;
unsigned int timerPeriod;
// initialize the library with the numbers of the interface pins
i2cLCD lcd(0);
#define LED_RED 0
#define LED_IR 1
unsigned int theLED;
// Pin # of the pushbutton
int PBPin = 8;
boolean buttonIsPushed = false;
void startCounting (unsigned int ms)
{
counterReady = false; // time not up yet
timerPeriod = ms; // how many 1 mS counts to do
timerTicks = 0; // reset interrupt counter
overflowCount = 0; // no overflows yet
if (theLED == LED_RED)
{
digitalWrite(2, LOW);
digitalWrite(3, HIGH);
}
else
{
digitalWrite(3, LOW);
digitalWrite(2, HIGH);
}
// reset Timer 1 and Timer 2
TCCR1A = 0;
TCCR1B = 0;
TCCR2A = 0;
TCCR2B = 0;
// Timer 1 - counts events on pin D5
TIFR1 = 0xff; // Clear timer1 interupts
TIMSK1 = _BV (TOIE1); // interrupt on Timer 1 overflow
// Timer 2 - gives us our 1 mS counting interval
// 16 MHz clock (62.5 nS per tick) - prescaled by 128
// counter increments every 8 uS.
// So we count 125 of them, giving exactly 1000 uS (1 mS)
TCCR2A = _BV (WGM21); // CTC mode
OCR2A = 124; // count up to 125 (zero relative!!!!)
// Timer 2 - interrupt on match (ie. every 1 mS)
TIMSK2 = _BV (OCIE2A); // enable Timer2 Interrupt
TCNT1 = 0; // Both counters to zero
TCNT2 = 0;
// Reset prescalers
GTCCR = _BV (PSRASY); // reset prescaler now
// start Timer 2
#ifdef SPEED_8MHZ
TCCR2B = _BV (CS22); // prescaler of 64
#else
TCCR2B = _BV (CS20) | _BV (CS22); // prescaler of 128
#endif
// start Timer 1
// External clock source on T1 pin (D5). Clock on rising edge.
TCCR1B = _BV (CS10) | _BV (CS11) | _BV (CS12);
}
ISR (TIMER1_OVF_vect)
{
++overflowCount; // count number of Counter1 overflows
}
//******************************************************************
// Timer2 Interrupt Service is invoked by hardware Timer 2 every 1ms = 1000 Hz
// 16Mhz / 128 / 125 = 1000 Hz
ISR (TIMER2_COMPA_vect)
{
// grab counter value before it changes any more
unsigned int timer1CounterValue;
timer1CounterValue = TCNT1; // see datasheet, page 117 (accessing 16-bit registers)
// Reset the max if the button has been pressed
if (digitalRead(PBPin) == LOW)
{
// is the first time we've sensed the button being pushed
if (!buttonIsPushed)
{
RedMaxCount = 0;
IRMaxCount = 0;
}
buttonIsPushed = true;
}
else
buttonIsPushed = false;
// see if we have reached timing period
if (++timerTicks < timerPeriod)
return; // not yet
// if just missed an overflow
if (TIFR1 & TOV1)
overflowCount++;
// end of gate time, measurement ready
TCCR1A = 0; // stop timer 1
TCCR1B = 0;
TCCR2A = 0; // stop timer 2
TCCR2B = 0;
TIMSK1 = 0; // disable Timer1 Interrupt
TIMSK2 = 0; // disable Timer2 Interrupt
// calculate total count
timerCount = (overflowCount << 16) + timer1CounterValue; // each overflow is 65536 more
if (theLED == LED_RED)
{
if (timerCount > RedMaxCount)
RedMaxCount = timerCount;
}
else
{
if (timerCount > IRMaxCount)
IRMaxCount = timerCount;
}
counterReady = true; // set global flag for end count period
}
void setup () {
#ifdef __SERIAL__
Serial.begin(115200);
Serial.println("Frequency Counter");
#endif
#ifdef __LCD__
// set up the LCD's number of columns and rows:
lcd.begin(16,2);
// Print a message to the LCD.
lcd.print("Count: ");
lcd.setCursor(0, 1);
// 01234567890123456
lcd.print("R I ");
#endif
pinMode(2, OUTPUT);
digitalWrite(2, LOW);
pinMode(3, OUTPUT);
digitalWrite(3, LOW);
theLED = LED_RED;
RedMaxCount = 0;
IRMaxCount = 0;
} // end of setup
void loop () {
// stop Timer 0 interrupts from throwing the count out
byte oldTCCR0A = TCCR0A;
byte oldTCCR0B = TCCR0B;
TCCR0A = 0; // stop timer 0
TCCR0B = 0;
Serial.println ((unsigned int) theLED);
startCounting (250); // how many mS to count for
while (!counterReady)
{}
// adjust counts by counting interval to give frequency in Hz
float frq = (timerCount * 1000.0) / timerPeriod;
#ifdef __SERIAL__
Serial.print ("Frequency: ");
Serial.println ((unsigned long) frq);
#endif
#ifdef __LCD__
lcd.setCursor(7, 0);
lcd.print(" ");
lcd.setCursor(7, 0);
lcd.print(timerCount);
lcd.setCursor(2, 1);
lcd.print(" ");
lcd.setCursor(2, 1);
lcd.print(RedMaxCount);
lcd.setCursor(10, 1);
lcd.print(" ");
lcd.setCursor(10, 1);
lcd.print(IRMaxCount);
#endif
// restart timer 0
TCCR0A = oldTCCR0A;
TCCR0B = oldTCCR0B;
if (theLED == LED_RED)
theLED = LED_IR;
else
theLED = LED_RED;
#ifdef __SERIAL__
// let serial stuff finish
delay(200);
#endif
}
<file_sep>
// include the library code:
#include <Wire.h>
#include <Adafruit_MCP23017.h>
#include <Adafruit_RGBLCDShield.h>
#include <PString.h>
//#include <TimerOne.h>
#define SPEED_8MHZ
//#define __SERIAL__
// initialize the library
Adafruit_RGBLCDShield lcd = Adafruit_RGBLCDShield();
char numBuffer[17];
PString numString(numBuffer, sizeof(numBuffer));
float clockFreq = 16000000.0;
float freq;
boolean freqChanged;
int cursorPos;
bool calcTimerValues(float freq, word* firstTimerVal, int* numTimerIntervals, word* lastTimerVal);
#define DEFAULT_LONGPRESS_LEN 25 // Min nr of loops for a long press
#define DELAY 20 // Delay per loop in ms
class StrobeTimer
{
public:
void Init(word pulseTimerVal);
void SetTimerVals(word firstTimerVal, int numTimerIntervals, word lastTimerVal);
void GetTimerVals(word* firstTimerVal, int* numTimerIntervals, word* lastTimerVal);
bool SetFreq(float freq);
void Start(void);
void Stop(void);
void StrobeISR(void);
protected:
unsigned char clockSelectBits;
char oldSREG;
word m_FirstTimerVal;
int m_NumIntervals;
word m_LastTimerVal;
word m_PulseTimerVal;
bool m_PulseInterval;
word m_CurFirstTimerVal;
int m_CurNumIntervals;
word m_CurLastTimerVal;
};
StrobeTimer StrobeTimer1; // preinstatiate
ISR(TIMER1_COMPA_vect) // interrupt service routine
{
StrobeTimer1.StrobeISR();
}
void StrobeTimer::Init(word pulseTimerVal)
{
// Set COM1A to 0 - No Output on Match
// WGM(13:10) to 4 - CTC mode
// CS1(2:0) to 1 - No Prescale)
TCCR1A = 0;
TCCR1B = _BV(WGM12);
clockSelectBits = _BV(CS10);
m_PulseTimerVal = pulseTimerVal;
}
bool StrobeTimer::SetFreq(float freq)
{
word timerVal = 65535;
word minTimerVal = 32768;
long numClocks = long (clockFreq / freq + 0.5) - m_PulseTimerVal;
int numIntervals = int(numClocks/timerVal);
word lastVal = numClocks % timerVal;
if (numIntervals != 0)
{
if (lastVal < minTimerVal)
{
word delta = minTimerVal - lastVal;
int decrement = delta / numIntervals + 1;
timerVal -= decrement;
numIntervals = int (numClocks /timerVal);
lastVal = numClocks % timerVal;
}
}
SetTimerVals(timerVal, numIntervals, lastVal);
return true;
}
void StrobeTimer::GetTimerVals(word* firstTimerVal, int* numTimerIntervals, word* lastTimerVal)
{
*firstTimerVal = m_FirstTimerVal;
*numTimerIntervals = m_NumIntervals;
*lastTimerVal = m_LastTimerVal;
return;
}
void StrobeTimer::SetTimerVals(word firstTimerVal, int numTimerIntervals, word lastTimerVal)
{
// Disable Interrupts
oldSREG = SREG;
cli();
m_FirstTimerVal = firstTimerVal;
m_NumIntervals = numTimerIntervals;
m_LastTimerVal = lastTimerVal;
SREG = oldSREG;
}
void StrobeTimer::Start(void)
{
// Disable Interrupts
oldSREG = SREG;
cli();
m_CurFirstTimerVal = m_FirstTimerVal;
m_CurNumIntervals = m_NumIntervals;
m_CurLastTimerVal = m_LastTimerVal;
// Set the counter value
TCNT1 = 0;
OCR1A = m_CurFirstTimerVal;
SREG = oldSREG;
// Setup the ISR and the interrupt mask
TIMSK1 = _BV(OCIE1A);
// Start the timer
TCCR1B |= clockSelectBits;
}
void StrobeTimer::Stop(void)
{
// Stop the timer
TCCR1B &= ~(_BV(CS12) | _BV(CS11) | _BV(CS10));
}
void StrobeTimer::StrobeISR(void)
{
if (m_PulseInterval)
{
OCR1A = m_PulseTimerVal;
m_CurFirstTimerVal = m_FirstTimerVal;
m_CurNumIntervals = m_NumIntervals;
m_CurLastTimerVal = m_LastTimerVal;
m_PulseInterval = false;
}
else if (0!=m_CurNumIntervals--)
{
// if still counting intervals disable output pin change
// TCCR1A &= ~(_BV(COM1A1) | _BV(COM1A0));
TCCR1A &= ~(_BV(COM1A0));
OCR1A = m_CurFirstTimerVal;
}
else
{
// Next match causes output to go low
// TCCR1A |= _BV(COM1A1) | _BV(COM1A0);
TCCR1A |= _BV(COM1A0);
OCR1A = m_CurLastTimerVal;
m_CurFirstTimerVal = m_FirstTimerVal;
m_CurNumIntervals = m_NumIntervals;
m_CurLastTimerVal = m_LastTimerVal;
m_PulseInterval = true;
}
}
//////////////////////////////////////////////////////////////////////////////
enum { EV_NONE=0, EV_SHORTPRESS, EV_LONGPRESS };
//////////////////////////////////////////////////////////////////////////////
// Class definition
class ButtonHandler {
public:
// Constructor
ButtonHandler(uint8_t buttonMask, int longpress_len=DEFAULT_LONGPRESS_LEN);
// Initialization done after construction, to permit static instances
void init();
// Handler, to be called in the loop()
int handle(uint8_t buttonState);
protected:
boolean was_pressed; // previous state
int pressed_counter; // press running duration
const uint8_t buttonMask; // mask of the button
const int longpress_len; // longpress duration
};
ButtonHandler::ButtonHandler(uint8_t mask, int lp)
: buttonMask(mask), longpress_len(lp)
{
}
void ButtonHandler::init()
{
was_pressed = false;
pressed_counter = 0;
}
int ButtonHandler::handle(uint8_t buttonState)
{
int event;
int now_pressed = buttonState & buttonMask;
if (!now_pressed && was_pressed) {
// handle release event
if (pressed_counter < longpress_len)
event = EV_SHORTPRESS;
else
event = EV_LONGPRESS;
}
else
event = EV_NONE;
// update press running duration
if (now_pressed)
++pressed_counter;
else
pressed_counter = 0;
// remember state, and we're done
was_pressed = now_pressed;
return event;
}
//////////////////////////////////////////////////////////////////////////////
// Instanciate button objects
ButtonHandler buttonUp(BUTTON_UP);
ButtonHandler buttonDown(BUTTON_DOWN, DEFAULT_LONGPRESS_LEN*2);
ButtonHandler buttonLeft(BUTTON_LEFT);
ButtonHandler buttonRight(BUTTON_RIGHT);
void setup () {
word firstTimerVal;
int numTimerIntervals;
word lastTimerVal;
freq = 100.0;
cursorPos = 3;
freqChanged = true;
#ifdef __SERIAL__
Serial.begin(115200);
Serial.println("Strobe Control");
#endif
// init buttons
buttonUp.init();
buttonDown.init();
buttonLeft.init();
buttonRight.init();
// set up the LCD's number of columns and rows:
lcd.begin(16,2);
// Print a message to the LCD.
// 0123456789012345
lcd.print("Freq: ");
lcd.cursor();
lcd.setCursor(cursorPos + 6, 0);
pinMode(9, OUTPUT);
StrobeTimer1.Init(800);
StrobeTimer1.SetFreq(freq);
StrobeTimer1.Start();
} // end of setup
float blah[8] = { 1000.0, 100.0, 10.0, 1.0, 0.0, 0.1, 0.01, 0.001 };
void loop () {
// handle button
uint8_t buttonState = lcd.readButtons();
int upEvent = buttonUp.handle(buttonState);
int downEvent = buttonDown.handle(buttonState);
int leftEvent = buttonLeft.handle(buttonState);
int rightEvent = buttonRight.handle(buttonState);
if (leftEvent == EV_SHORTPRESS)
{
if (cursorPos > 0)
cursorPos--;
}
if (rightEvent == EV_SHORTPRESS)
{
if (cursorPos < 7)
cursorPos++;
}
if (upEvent == EV_SHORTPRESS)
{
freq += blah[cursorPos];
if (freq > 2000.0)
freq = 2000.0;
freqChanged = true;
}
if (downEvent == EV_SHORTPRESS)
{
float dec = blah[cursorPos];
if (freq < 2.0 * dec)
{
if (cursorPos < 7)
cursorPos++;
}
freq -= dec;
if (freq < 0.0)
freq = 0.1;
freqChanged = true;
}
if (freqChanged)
{
word firstTimerVal;
int numTimerIntervals;
word lastTimerVal;
StrobeTimer1.SetFreq(freq);
StrobeTimer1.GetTimerVals(&firstTimerVal, &numTimerIntervals, &lastTimerVal);
numString.begin();
numString.print(firstTimerVal);
numString.print(" ");
numString.print(numTimerIntervals);
numString.print(" ");
numString.print(lastTimerVal);
numString.print(" ");
lcd.setCursor(0,1);
lcd.print(numString);
numString.begin();
numString.print(freq, 3);
lcd.setCursor(6,0);
lcd.print(" ");
lcd.setCursor(14 - numString.length(),0);
lcd.print(numString);
freqChanged = false;
#ifdef __SERIAL__
Serial.println(12 - numString.length());
Serial.println(numString);
#endif
}
lcd.setCursor(cursorPos + 6, 0);
#ifdef __SERIAL__
// let serial stuff finish
delay(200);
#endif
delay(DELAY);
}
<file_sep>
UNAME_S := $(shell uname -s)
ifeq ($(UNAME_S),Linux)
# linux config
ARDUINO_DIR = /opt/arduino
ARDUINO_PORT = /dev/ttyACM0
AVR_TOOLS_PATH = $(ARDUINO_DIR)/hardware/tools/avr/bin
AVRDUDE_CONF = $(ARDUINO_DIR)/hardware/tools/avrdude
endif
ifeq ($(UNAME_S),Darwin)
# Mac config
ARDUINO_DIR = /Applications/Arduino.app/Contents/Resources/Java
ARDUINO_PORT = /dev/tty.usbmodem1411
AVR_TOOLS_PATH = $(ARDUINO_DIR)/hardware/tools/avr/bin
AVRDUDE_CONF = $(ARDUINO_DIR)/hardware/tools/avr/etc/avrdude
endif
<file_sep>#include <MemoryFree.h>
// On Arduino Duemilanove with ATmega328:
//
// Reported free memory with str commented out:
// 1824 bytes
//
// Reported free memory with str and Serial.println(str) uncommented:
// 1810
//
// Difference: 14 bytes (13 ascii chars + null terminator)
// 14-bytes string
//char str[] = "Hello, world!";
//#define malloc pvPortMalloc
void setup() {
Serial.begin(9600);
}
char* b;
void loop() {
//Serial.println(str);
Serial.print("freeMemory()=");
Serial.println(xfreeMemory());
//b = new char [8];
//malloc(8);
delay(1000);
}
extern unsigned int __heap_start;
extern void *__brkval;
/*
* The free list structure as maintained by the
* avr-libc memory allocation routines.
*/
struct __freelist {
size_t sz;
struct __freelist *nx;
};
/* The head of the free list structure */
extern struct __freelist *__flp;
int xfreeListSize() {
struct __freelist* current;
int total = 0;
for (current = __flp; current; current = current->nx) {
total += 2; /* Add two bytes for the memory block's header */
total += (int) current->sz;
}
return total;
}
int xfreeMemory() {
int free_memory;
Serial.println((int)__brkval);
Serial.println((int)&__heap_start);
Serial.println((int)&free_memory);
if ((int)__brkval == 0) {
free_memory = ((int)&free_memory) - ((int)&__heap_start);
} else {
free_memory = ((int)&free_memory) - ((int)__brkval);
free_memory += xfreeListSize();
}
return free_memory;
}
<file_sep>
BOARD_TAG = uno
ARDUINO_LIBS = Wire Wire/utility PString Adafruit_RGBLCDShield TimerOne
include ../Arduino.mk
<file_sep>#include <Ethernet.h>
#include <EthernetUdp.h>
#include <SPI.h>
#include <OSCMessage.h>
#include <DHT.h>
#include <Barometer.h>
#include <Twitter.h>
#define TWITTER
int IsTime(unsigned long *timeMark, unsigned long timeInterval);
EthernetUDP Udp;
// the Arduino's IP
IPAddress ip(192, 168, 1, 101);
// destination IP
IPAddress outIp(192, 168, 1, 44);
const unsigned int outPort = 7110;
// you can find this written on the board of some Arduino Ethernets or shields
byte mac[] = { 0x90, 0xA2, 0xDA, 0x00, 0x30, 0x89 };
byte gateway[] = { 192, 168, 1, 1 };
byte subnet[] = { 255, 255, 255, 0 };
#ifdef TWITTER
#include "TwitterToken.h"
unsigned long twitterTimeMark = 0;
unsigned long twitterTimeInterval = 120;
Twitter twitter(TwitterToken);
#endif
// Temperature & Humidity Sensor
// AM2302 Seonsor on Grove board SEN51035P
// type is DHT22
#define DHTPIN 14
DHT dht(DHTPIN, DHT22);
// Barometer Sensor
// Bosch BMP085 Sensor on Grove Board SEN05291
Barometer myBarometer;
void setup()
{
Ethernet.begin(mac, ip, gateway, subnet);
Udp.begin(8888);
dht.begin();
myBarometer.init();
}
void loop()
{
float temp;
float humidity;
float pressure;
OSCMessage msg("/analog/0");
Udp.beginPacket(outIp, outPort);
msg.add((int32_t)analogRead(0));
msg.send(Udp);
msg.empty();
Udp.endPacket();
Udp.beginPacket(outIp, outPort);
msg.setAddress("/weather/temp0");
temp = dht.readTemperature();
msg.add(temp);
msg.send(Udp);
msg.empty();
Udp.endPacket();
Udp.beginPacket(outIp, outPort);
msg.setAddress("/weather/humidity");
humidity = dht.readHumidity();
msg.add(humidity);
msg.send(Udp);
msg.empty();
Udp.endPacket();
//Get the temperature, bmp085ReadUT MUST be called first
temp = myBarometer.bmp085GetTemperature(myBarometer.bmp085ReadUT());
//Get the temperature
pressure = myBarometer.bmp085GetPressure(myBarometer.bmp085ReadUP());
Udp.beginPacket(outIp, outPort);
msg.setAddress("/weather/pressure");
msg.add(pressure);
msg.send(Udp);
msg.empty();
Udp.endPacket();
Udp.beginPacket(outIp, outPort);
msg.setAddress("/weather/temp1");
msg.add(temp);
msg.send(Udp);
msg.empty();
Udp.endPacket();
#ifdef TWITTER
if (IsTime(&twitterTimeMark, twitterTimeInterval))
{
if (twitter.post("Test Tweet"))
{
int status = twitter.wait();
if (status == 200)
{
Serial.println("OK");
}
else
{
Serial.print("failed: code ");
Serial.print(status);
}
}
twitterTimeMark = 0;
}
#endif
// delay(20);
}
#define TIMECTL_MAXTICKS 4294967295UL
#define TIMECTL_INIT 0
int IsTime(unsigned long *timeMark, unsigned long timeInterval)
{
unsigned long timeCurrent;
unsigned long timeElapsed;
int result=false;
timeCurrent=millis();
// Rollover?
if(timeCurrent<*timeMark)
{
//elapsed=all the ticks to overflow + all the ticks since overflow
timeElapsed=(TIMECTL_MAXTICKS-*timeMark)+timeCurrent;
}
else
{
timeElapsed=timeCurrent-*timeMark;
}
if(timeElapsed>=timeInterval)
{
*timeMark=timeCurrent;
result=true;
}
return(result);
}
| bbc8c7642fc7587a56fd0d3b634fac5c820bdb38 | [
"C",
"Python",
"Makefile",
"C++"
] | 18 | C | gdhamp/Arduino | de0053925aec079ff3b2e996f6b2a7e95c8e55bb | 847d0182c12f6aa930c15588de84e5bb3124e0dc |
refs/heads/master | <file_sep>"""cookies_sty URL Configuration
The `urlpatterns` list routes URLs to views. For more information please see:
https://docs.djangoproject.com/en/2.0/topics/http/urls/
Examples:
Function views
1. Add an import: from my_app import views
2. Add a URL to urlpatterns: path('', views.home, name='home')
Class-based views
1. Add an import: from other_app.views import Home
2. Add a URL to urlpatterns: path('', Home.as_view(), name='home')
Including another URLconf
1. Import the include() function: from django.urls import include, path
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
"""
from django.contrib import admin
from django.urls import path
from django.conf.urls import url,include
from a import views
urlpatterns = [
url('index',views.index),
url('login',views.login),
url('4',views.user_list),
# url('3-\d+\\w+',views.san),
url('simpletag',views.simpletag),
# url('3-\d+\\w+',views.san),
# url('3',views.San.as_view()),
url('3_(?P<nid>\d+)_(?P<name>\w+)',views.san,{'bbb':333},name='test1'),
]
<file_sep>from django.shortcuts import render,redirect
# Create your views here.
USER_DIC = {
'zhoutao':{'password':'<PASSWORD>'},
'jack':{'password':'<PASSWORD>'},
}
from django.urls import reverse
def san(request,*args,**kwargs):
v = reverse('test1',args=(30,'asdf'))
print(v)
print(args,kwargs)
return render(request,'3.html')
def auth(func): #用户认证装饰器 func = index ,return func前做一些判断
def inner(request,*args,**kwargs):
v = request.COOKIES.get('username')
if not v:
return redirect('/a/login')
return func(request,*args,**kwargs)
return inner
@auth
def index(request):
v = request.COOKIES.get('username')
return render(request,'index.html',{'username':v})
def login(request):
if request.method == 'GET':
return render(request, 'login.html')
if request.method == 'POST':
u = request.POST.get('username')
p = request.POST.get('password')
print(type(p))
u_dic = USER_DIC.get(u)
print(u,p,u_dic)
if not u_dic: #用户不存在
return render(request,'login.html')
if u_dic['password'] == p: #用户名密码都匹配redirect index
res = redirect('/a/index')
res.set_cookie('username',u)
return res
else:
return redirect('/a/login')
LIST = []
for i in range(100):
LIST.append(i)
from a.pange_auto import Page
def user_list(request):
current_page = request.GET.get('p',1)
current_page = int(current_page)
print(current_page)
val = request.COOKIES.get('per_page_count',10)
print(val)
val = int(val)
page_obj = Page(current_page,len(LIST),val)
date = LIST[page_obj.start:page_obj.end]
page_str = page_obj.page_str("4")
return render(request,'4.html',{'li':date,'page_str': page_str})
def simpletag(request):
return render(request,'3.html')
| b226ff28845658008407397d9861ccece72e3358 | [
"Python"
] | 2 | Python | 248808194/cookies_sty | 4a5b66363a60627748f0780b6450e9629ea60b36 | dfe7ab5211c4d6a136c112899f49cf694c6b4137 |
refs/heads/master | <repo_name>tomaspavlic/exercise-timer<file_sep>/ExerciseTimer/Constants.swift
//
// Constants.swift
// ExerciseTimer
//
// Created by <NAME> on 15/02/16.
// Copyright © 2016 <NAME>. All rights reserved.
//
import UIKit
let kThemeBlueColor = UIColor(red: 36.0/255.0, green: 54.0/255.0, blue: 78.0/255.0, alpha: 1)<file_sep>/ExerciseTimer/Time.swift
//
// Time.swift
// ExerciseTimer
//
// Created by <NAME> on 20/02/16.
// Copyright © 2016 <NAME>. All rights reserved.
//
import Foundation
class Time: NSObject, NSCoding {
private var time: Int = 0
var overallTime: Int {
get {
return time
}
set {
time = newValue
progressTime = newValue
}
}
var progressTime: Int = 0
var progressRatio: Double {
get {
return Double(progressTime) / Double(time)
}
}
init(seconds: Int) {
super.init()
overallTime = seconds
}
func subtract(value: Int) -> Int {
progressTime -= value
return progressTime
}
// MARK: - NSCoding implementaion
required convenience init?(coder decoder: NSCoder) {
let time = decoder.decodeIntegerForKey("time")
self.init(seconds: time)
}
func encodeWithCoder(aCoder: NSCoder) {
aCoder.encodeInt(Int32(time), forKey: "time")
}
}<file_sep>/ExerciseTimer/CircularProgressView.swift
//
// CirculasProgressView.swift
// TestApp
//
// Created by borec on 2/9/16.
// Copyright © 2016 borec. All rights reserved.
//
import UIKit
@IBDesignable class CircularProgressView: UIView {
private var progressCircle: CAShapeLayer!
private var unfilledProgressCircle: CAShapeLayer!
private var circle: UIView!
@IBInspectable var lineWidth: CGFloat = 2.5 {
didSet {
progressCircle.lineWidth = lineWidth
}
}
@IBInspectable var unfilledColor: UIColor = UIColor.clearColor() {
didSet {
unfilledProgressCircle.strokeColor = unfilledColor.CGColor
}
}
@IBInspectable var filledColor: UIColor = UIColor.blueColor() {
didSet {
progressCircle.strokeColor = filledColor.CGColor
}
}
@IBInspectable var percentage: CGFloat = 0 {
didSet {
progressCircle.strokeEnd = percentage
}
}
override func drawRect(rect: CGRect) {
#if TARGET_INTERFACE_BUILDER
setup()
#endif
circle.layer.addSublayer(unfilledProgressCircle)
circle.layer.addSublayer(progressCircle)
addSubview(circle)
sendSubviewToBack(circle)
}
override init(frame: CGRect) {
super.init(frame: frame)
setup()
}
required init?(coder aDecoder: NSCoder) {
super.init(coder: aDecoder)
setup()
}
/**
Set progress of circular progress with animation.
- Parameter progress: The progress of progress circular
*/
func setProgress(progress: CGFloat) {
let drawAnimation = CABasicAnimation(keyPath: "strokeEnd")
drawAnimation.duration = 0.5
drawAnimation.fromValue = progressCircle.strokeEnd
drawAnimation.toValue = progress
drawAnimation.timingFunction = CAMediaTimingFunction(name: kCAMediaTimingFunctionEaseInEaseOut)
progressCircle.strokeEnd = progress
progressCircle.addAnimation(drawAnimation, forKey: "drawCircleAnimation")
}
func reset(animated: Bool) {
if animated {
let drawAnimation = CABasicAnimation(keyPath: "strokeEnd")
drawAnimation.duration = 1.5
drawAnimation.fromValue = progressCircle.strokeEnd
drawAnimation.toValue = 1
drawAnimation.timingFunction = CAMediaTimingFunction(name: kCAMediaTimingFunctionEaseInEaseOut)
progressCircle.strokeEnd = 1
progressCircle.addAnimation(drawAnimation, forKey: "drawCircleAnimation")
} else {
progressCircle.strokeEnd = 1
}
}
/**
Setup all necessary views to display circular progress view.
*/
func setup() {
circle = UIView()
circle.frame = CGRectMake(0, 0, self.frame.width, self.frame.height)
let centerPoint = CGPoint(x: circle.frame.width / 2, y: circle.frame.width / 2)
let cicrleRadius: CGFloat = circle.frame.width / 2 - lineWidth
let circlePath = UIBezierPath(arcCenter: centerPoint, radius: cicrleRadius,
startAngle: CGFloat(-0.5 * M_PI), endAngle: CGFloat(1.5 * M_PI), clockwise: true)
progressCircle = CAShapeLayer()
progressCircle.path = circlePath.CGPath;
progressCircle.strokeColor = filledColor.CGColor
progressCircle.fillColor = UIColor.clearColor().CGColor
progressCircle.lineWidth = lineWidth
progressCircle.strokeStart = 0
progressCircle.strokeEnd = percentage
progressCircle.lineCap = kCALineCapRound
unfilledProgressCircle = CAShapeLayer()
unfilledProgressCircle.path = circlePath.CGPath;
unfilledProgressCircle.strokeColor = unfilledColor.CGColor
unfilledProgressCircle.fillColor = UIColor.clearColor().CGColor
unfilledProgressCircle.lineWidth = lineWidth
unfilledProgressCircle.strokeStart = 0
unfilledProgressCircle.strokeEnd = 1
}
}
<file_sep>/ExerciseTimer/CircleView.swift
//
// CircleView.swift
// ExerciseTimer
//
// Created by <NAME> on 14/02/16.
// Copyright © 2016 <NAME>. All rights reserved.
//
import UIKit
@IBDesignable public class CircleView: UIView {
@IBInspectable var borderWidth: CGFloat = 0 {
didSet {
layer.borderWidth = borderWidth
}
}
@IBInspectable var borderColor: UIColor = kThemeBlueColor {
didSet {
layer.borderColor = borderColor.CGColor
}
}
public required init?(coder aDecoder: NSCoder) {
super.init(coder: aDecoder)
setup()
}
public override init(frame: CGRect) {
super.init(frame: frame)
}
public override func prepareForInterfaceBuilder() {
setup()
}
func setup() {
layer.cornerRadius = self.frame.width / 2
layer.borderColor = borderColor.CGColor
layer.borderWidth = borderWidth
}
/*
// Only override drawRect: if you perform custom drawing.
// An empty implementation adversely affects performance during animation.
override func drawRect(rect: CGRect) {
// Drawing code
}
*/
}
<file_sep>/ExerciseTimer/Int.swift
//
// Int.swift
// ExerciseTimer
//
// Created by <NAME> on 18/02/16.
// Copyright © 2016 <NAME>. All rights reserved.
//
import Foundation
extension Int {
var hours: String {
return "\(self / (60 * 60))"
}
var minutes: String {
return String(format: "%02d", (self % (60 * 60) / 60))
}
var seconds: String {
return String(format: "%02d", (self % (60 * 60) % 60))
}
}<file_sep>/ExerciseTimer/ViewController.swift
//
// ViewController.swift
// ExerciseTimer
//
// Created by <NAME> on 10/02/16.
// Copyright © 2016 <NAME>. All rights reserved.
//
import UIKit
import AudioToolbox
class ViewController: UIViewController {
// MARK: Outlets
@IBOutlet weak var circularProgress: CircularProgressView!
@IBOutlet weak var timersTable: UITableView!
@IBOutlet weak var hoursLabel: UILabel!
@IBOutlet weak var minutesLabel: UILabel!
@IBOutlet weak var secondsLabel: UILabel!
@IBOutlet weak var startButton: UIButton!
@IBOutlet weak var resetButton: DCRoundedButton!
@IBOutlet weak var addButton: DCRoundedButton!
@IBOutlet weak var saveButton: DCRoundedButton!
// MARK: Private variables
private var timer: NSTimer?
private var timeCollection = TimeCollection()
private var isRunning = false
// Pan gesture move increment
let STEP_SIZE = 2
let SECONDS_THRESHOLD = 10
// MARK: Funtions
override func viewDidLoad() {
super.viewDidLoad()
setNeedsStatusBarAppearanceUpdate()
resetButton.setTitle("\u{f01e}", forState: .Normal)
addButton.setTitle("\u{f067}", forState: .Normal)
saveButton.setTitle("\u{f0c7}", forState: .Normal)
// Set circular progress to initial value, startup animation
circularProgress.reset(true)
timeCollection.loadFromUserDefaults()
setTime(timeCollection.time.overallTime)
}
/**
Prefer .LightContent status bar
*/
override func preferredStatusBarStyle() -> UIStatusBarStyle {
return .LightContent
}
/**
Set ASD to format 0h00m00s.
Parameter seconds: The count of seconds.
*/
func setTime(seconds: Int) {
hoursLabel.text = seconds.hours
minutesLabel.text = seconds.minutes
secondsLabel.text = seconds.seconds
if seconds < SECONDS_THRESHOLD {
secondsLabel.textColor = UIColor(red: 169.0/255.0, green: 68.0/255.0, blue: 54.0/255.0, alpha: 1)
} else {
secondsLabel.textColor = UIColor(red: 117.0/255.0, green: 189.0/255.0, blue: 138.0/255.0, alpha: 1)
}
}
/**
Start timer to count down seconds for each time in timers queue.
*/
func startCountDown() {
let time = timeCollection.time
let currentTime = time.subtract(1)
let progress = time.progressRatio
setTime(currentTime)
circularProgress.setProgress(CGFloat(progress))
if time.progressTime == 0 {
if timeCollection.next() {
AudioServicesPlaySystemSound(1000)
timersTable.reloadData()
} else {
resetTimer()
}
}
}
/**
Reset timer to initial values
*/
func resetTimer() {
timer?.invalidate()
circularProgress.reset(true)
timeCollection.reset()
setTime(timeCollection.time.overallTime)
timersTable.reloadData()
}
// MARK: Actions
@IBAction func start(sender: AnyObject) {
if isRunning {
isRunning = false
timer?.invalidate()
startButton.setTitle("Continue", forState: .Normal)
} else {
startButton.setTitle("Pause", forState: .Normal)
// resetTimer()
isRunning = true
timer = NSTimer.scheduledTimerWithTimeInterval(1, target: self, selector: "startCountDown", userInfo: nil, repeats: true)
}
}
@IBAction func reset(sender: AnyObject) {
isRunning = false
resetTimer()
startButton.setTitle("Start", forState: .Normal)
}
@IBAction func add(sender: AnyObject) {
let newTime = timeCollection.append()
setTime(newTime.overallTime)
timersTable.reloadData()
}
@IBAction func save(sender: AnyObject) {
timeCollection.saveToUserDefaults()
}
}
// MARK: - UIGestureRecognizerDelegate
extension ViewController: UIGestureRecognizerDelegate {
@IBAction func pan(sender: UIPanGestureRecognizer) {
if sender.state == .Changed {
let velocity = sender.velocityInView(self.view)
if (velocity.y > 0) {
if timeCollection.time.overallTime > 0 {
timeCollection.time.overallTime -= STEP_SIZE
}
} else {
timeCollection.time.overallTime += STEP_SIZE
}
setTime(timeCollection.time.overallTime)
circularProgress.reset(false)
}
if sender.state == .Ended {
timersTable.reloadData()
}
}
}
// MARK: - UITableViewDataSource, UITableViewDelegate
extension ViewController: UITableViewDataSource, UITableViewDelegate {
func numberOfSectionsInTableView(tableView: UITableView) -> Int {
return 1
}
func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return timeCollection.times.count
}
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCellWithIdentifier("timerCell", forIndexPath: indexPath) as! TimerTableViewCell
// Configure table cell
let lapNumber = indexPath.row + 1
cell.configureCell(timeCollection.times[indexPath.row].overallTime, lapNumber: lapNumber)
return cell
}
func tableView(tableView: UITableView, willDisplayCell cell: UITableViewCell, forRowAtIndexPath indexPath: NSIndexPath) {
if indexPath.row == timeCollection.pointer {
cell.selected = true
}
}
func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {
let overallTime = timeCollection.times[indexPath.row].overallTime
timeCollection.pointer = indexPath.row
setTime(overallTime)
tableView.reloadData()
}
}
<file_sep>/README.md
# exercise-timer


<file_sep>/ExerciseTimer/TimerTableViewCell.swift
//
// TimeCollectionViewCell.swift
// ExerciseTimer
//
// Created by <NAME> on 11/02/16.
// Copyright © 2016 <NAME>. All rights reserved.
//
import UIKit
class TimerTableViewCell: UITableViewCell {
@IBOutlet weak var lapLabel: UILabel!
@IBOutlet weak var timeLabel: UILabel!
@IBOutlet weak var circle: CircleView!
private let circleColor = UIColor(red: 36.0/255.0, green: 54.0/255.0, blue: 78.0/255.0, alpha: 1)
override func setSelected(selected: Bool, animated: Bool) {
if selected {
circle.backgroundColor = circleColor
} else {
circle.backgroundColor = UIColor.clearColor()
}
}
func configureCell(seconds: Int, lapNumber: Int) {
timeLabel.text = "\(seconds.hours):\(seconds.minutes):\(seconds.seconds)"
lapLabel.text = "\(lapNumber) Lap"
circle.backgroundColor = UIColor.clearColor()
}
}
<file_sep>/ExerciseTimer/TimeCollection.swift
//
// TimeCollection.swift
// ExerciseTimer
//
// Created by <NAME> on 21/02/16.
// Copyright © 2016 <NAME>. All rights reserved.
//
import Foundation
class TimeCollection {
var pointer = 0
var times = [Time]()
var time: Time {
get {
return times[pointer]
}
}
init() {
times.append(Time(seconds: 0))
}
func append() -> Time {
times.append(Time(seconds: 0))
pointer = times.count - 1
return time
}
func next() -> Bool {
if pointer + 1 < times.count {
pointer++
// Skip to next time if current equals zero
if times[pointer].overallTime == 0 {
return next()
}
return true
}
return false
}
func reset() {
pointer = 0
// Set progress time to initial value.
for time in times {
time.progressTime = time.overallTime
}
}
func saveToUserDefaults() {
let defaults = NSUserDefaults.standardUserDefaults()
let data = NSKeyedArchiver.archivedDataWithRootObject(times)
defaults.setObject(data, forKey: "times")
defaults.synchronize()
}
func loadFromUserDefaults() {
let defaults = NSUserDefaults.standardUserDefaults()
if let data = defaults.objectForKey("times") as? NSData {
times = NSKeyedUnarchiver.unarchiveObjectWithData(data) as! [Time]
}
defaults.synchronize()
}
} | 60e32442d272f3f1516349fbadbd5da32c9408c4 | [
"Swift",
"Markdown"
] | 9 | Swift | tomaspavlic/exercise-timer | c1bc6123a8e53b4b7e1a7f9d2c41999282ca4081 | 64b45b062bdc4ced83411f149bd326cefe90c8bd |
refs/heads/master | <file_sep>import gql from 'graphql-tag';
import { expect } from 'chai';
import { graphqlToMongo } from '../src/graphql-to-mongo';
describe('GraphQL to Mongo', () => {
it('should support simple queries', () => {
// Arrange
const query = gql`
{
myCollection {
type (eq: "foo.bar.Baz")
body {
id
tenantId (eq: "something")
name
}
}
}
`;
// Act
const result = graphqlToMongo(query);
// Assert
expect(result).to.deep.equal([
{
collection: 'myCollection',
query: {
'type': { '$eq': 'foo.bar.Baz' },
'body.tenantId': { $eq: 'something' }
},
fields: {
'type': 1,
'body.id': 1,
'body.tenantId': 1,
'body.name': 1,
}
}
]);
});
it('should support variables', () => {
// Arrange
const query = gql`
{
myOtherCollection {
outerField {
nestedField (eq: $myVar)
}
}
}
`;
// Act
const result = graphqlToMongo(query, { myVar: 42 });
// Assert
expect(result).to.deep.equal([
{
collection: 'myOtherCollection',
query: {
'outerField.nestedField': { $eq: 42 }
},
fields: {
'outerField.nestedField': 1
}
}
])
});
it('should support limit and skip at the root', () => {
// Arrange
const query = gql`
{
users (limit: $limit, skip: $offset) {
firstName
lastName
}
}
`;
// Act
const result = graphqlToMongo(query, { limit: 100, offset: 10 });
// Assert
expect(result).to.deep.equal([
{
collection: 'users',
limit: 100,
skip: 10,
query: {},
fields: {
'firstName': 1,
'lastName': 1,
}
}
]);
});
it('should not support arguments inside a document', () => {
// Arrange
const query = gql`
{
users {
firstName
lastName
addresses (limit: 20) {
city
state
}
}
}
`;
// Act / Assert
expect(() => graphqlToMongo(query)).to.throw(`Arguments are not supported at sub-document level`);
});
it(`should not support collection level arguments that don't make sense`, () => {
// Arrange
const query = gql`
{
users (foo: "Bar") {
firstName
lastName
}
}
`;
// Act / Assert
expect(() => graphqlToMongo(query)).to.throw(`Argument 'foo' is not a valid collection-level argument.`);
});
it(`should not support field level arguments that don't make sense`, () => {
// Arrange
const query = gql`
{
users {
firstName (derp: "Bar")
lastName
}
}
`;
// Act / Assert
expect(() => graphqlToMongo(query)).to.throw(`Argument 'derp' is not a valid field-level argument.`);
});
});
<file_sep>import * as chaiAsPromised from 'chai-as-promised';
import gql from 'graphql-tag';
import { expect, use } from 'chai';
import { mongoTestServer } from './util/mongo-test-server';
import { Collection, Db } from 'mongodb';
import { MongoGraphQLClient } from '../src';
import { graphqlClient } from '../src/mongo-grqphql-client-factory';
use(chaiAsPromised);
describe('MongoGraphQLClient', () => {
const server = mongoTestServer();
let connection: Db;
let users: Collection<any>;
let cities: Collection<any>;
let client: MongoGraphQLClient;
before(async () => {
await server.start();
});
after(async () => {
await server.stop();
});
beforeEach(async () => {
connection = await server.getConnection('test-db');
client = graphqlClient.forConnection(connection);
users = await connection.collection('users');
cities = await connection.collection('cities');
});
afterEach(async () => {
await connection.dropDatabase();
});
describe('findOne', () => {
it('should throw an error if null document', async () => {
// Act / Assert
await expect(client.findOne(null)).to.be.rejectedWith('Must pass either document or string');
});
it('should find a matching document', async () => {
// Arrange
const docs = generateUsers(5);
await users.insertMany(docs);
const query = gql`
{
users {
_id (eq: $id)
name
address {
line1
line2
}
}
}
`;
// Act
const results = await client.findOne(query, { id: 3 });
// Assert
expect(results).to.deep.equal({
data: {
users: {
_id: 3,
name: 'User 3',
address: {
line1: 'Something 3',
line2: 'Other thing 3'
}
}
},
errors: undefined
});
});
});
describe('find', () => {
beforeEach(async() => {
const docs = generateUsers(6);
await users.insertMany(docs);
const cityDocs = [
{
_id: 1,
name: 'Miami'
},
{
_id: 2,
name: '<NAME>'
},
{
_id: 3,
name: 'Tampa'
},
];
await cities.insertMany(cityDocs);
});
it('should throw an error if null document', async () => {
// Act / Assert
await expect(client.find(null)).to.be.rejectedWith('Must pass either document or string');
});
it('should find multiple documents', async () => {
// Arrange
const query = gql`
{
users {
_id
name
age (gte: $age)
}
}
`;
// Act
const results = await client.find(query, { age: 21 });
// Assert
expect(results.data.users.length).to.equal(3);
expect(results.data.users).to.deep.equal([
{
_id: 4,
name: 'User 4',
age: 21,
},
{
_id: 5,
name: 'User 5',
age: 22,
},
{
_id: 6,
name: 'User 6',
age: 23,
},
]);
});
it('should find multiple documents across multiple collections', async () => {
// Arrange
const query = gql`
{
users {
_id
name
}
cities {
_id
name
}
}
`;
// Act
const results = await client.find(query);
// Assert
expect(results.data.users.length).to.equal(6);
expect(results.data.cities.length).to.equal(3);
expect(results.data.cities).to.deep.equal([
{
_id: 1,
name: 'Miami'
},
{
_id: 2,
name: '<NAME>'
},
{
_id: 3,
name: 'Tampa'
}
]);
});
describe('when using limit', () => {
it('should limit returned results', async () => {
// Arrange
const query = gql`
{
users (limit: 3) {
_id
name
}
}
`;
// Act
const results = await client.find(query);
// Assert
expect(results.data.users.length).to.equal(3);
expect(results.data.users).to.deep.equal([
{
_id: 1,
name: 'User 1',
},
{
_id: 2,
name: 'User 2',
},
{
_id: 3,
name: 'User 3',
},
]);
});
});
describe('when using skip', () => {
it('should offset result set', async () => {
// Arrange
const query = gql`
{
users (limit: 3, skip: 2) {
_id
name
}
}
`;
// Act
const results = await client.find(query);
// Assert
expect(results.data.users.length).to.equal(3);
expect(results.data.users).to.deep.equal([
{
_id: 3,
name: 'User 3',
},
{
_id: 4,
name: 'User 4',
},
{
_id: 5,
name: 'User 5',
},
]);
});
});
describe('when whitelisting collections', () => {
beforeEach(async () => {
client = graphqlClient.forConnection(connection, {
whitelist: ['users']
});
});
it('should throw if trying to access non whitelisted collection', async () => {
// Arrange
const query = gql`
{
cities {
_id
name
}
}
`;
// Act
await expect(client.find(query)).to.be.rejectedWith(`Can not query collection 'cities'`);
});
});
});
});
function generateUsers(count: number): any[] {
return Array
.from(Array(count))
.map((val, i) => i + 1)
.map(index => ({
_id: index,
name: `User ${index}`,
age: 17 + index,
address: {
line1: `Something ${index}`,
line2: `Other thing ${index}`,
city: 'Miami',
state: 'FL',
zip: 33173
},
}));
}
| 70e0f1e22b34ff96fe18749f018d902af67b1d8a | [
"TypeScript"
] | 2 | TypeScript | NishiGaba/graphql-anywhere-mongodb | e9c06db34b3eedaa0aa3bb644d24065c180dc124 | da24eed5c827c8a88661dc5553ed033678fc6807 |
refs/heads/master | <repo_name>iskakov/TrrpLab1<file_sep>/Trrp(Lab1)/MainForm/MainWin.xaml.cs
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Shapes;
namespace Trrp_Lab1_.MainForm
{
/// <summary>
/// Логика взаимодействия для MainWin.xaml
/// </summary>
public partial class MainWin : Window
{
private string token;
string vers = "v=5.62";
public MainWin(string token)
{
InitializeComponent();
this.token = token;
}
private void loadButt_Click(object sender, RoutedEventArgs e)
{
string url = "https://api.vk.com/method/account.getProfileInfo?";
// Создаём объект WebClient
using (WebClient webClient = new WebClient())
{
webClient.Encoding = UnicodeEncoding.UTF8;
// Выполняем запрос по адресу и получаем ответ в виде строки
string responsik = webClient.DownloadString(url + "&access_token=" + token + "&" + vers);
responsik = responsik.Substring(12, responsik.Length - 13);
var obj = JsonConvert.DeserializeObject<JObject>(responsik);
status.Text = obj.Value<string>("status");
}
}
private void saveButt_Click(object sender, RoutedEventArgs e)
{
string url = "https://api.vk.com/method/account.saveProfileInfo?";
using (WebClient webClient = new WebClient())
{
url += "status=" + status.Text;
webClient.Encoding = UnicodeEncoding.UTF8;
string responsik = webClient.DownloadString(url + "&access_token=" + token + "&" + vers);
responsik = responsik.Substring(12, responsik.Length - 13);
MessageBox.Show(responsik);
}
}
private void loadButtPost_Click(object sender, RoutedEventArgs e)
{
string url = "https://api.vk.com/method/wall.get?";
using (WebClient webClient = new WebClient())
{
webClient.Encoding = UnicodeEncoding.UTF8;
string responsik = webClient.DownloadString(url + "count=1" + "&access_token=" + token + "&" + "filter=owner" + "&" + vers);
responsik = responsik.Substring(34, responsik.Length - 37);
var obj = JsonConvert.DeserializeObject<JObject>(responsik);
MessageBox.Show(obj.Value<string>("text"));
}
}
private void saveButtPost_Click(object sender, RoutedEventArgs e)
{
string url = "https://api.vk.com/method/wall.post?";
using (WebClient webClient = new WebClient())
{
webClient.Encoding = UnicodeEncoding.UTF8;
string query = url + "friends_only=0" + "&" + "message=" + post.Text + "&access_token=" + token + "&" + vers;
string responsik = webClient.DownloadString(query);
responsik = responsik.Substring(12, responsik.Length - 13);
var obj = JsonConvert.DeserializeObject<JObject>(responsik);
MessageBox.Show(obj.Value<string>("post_id"));
}
}
private void delButtPost_Click(object sender, RoutedEventArgs e)
{
string url = "https://api.vk.com/method/wall.get?";
string url2 = "https://api.vk.com/method/wall.delete?";
using (WebClient webClient = new WebClient())
{
webClient.Encoding = UnicodeEncoding.UTF8;
string responsik = webClient.DownloadString(url + "count=1" + "&access_token=" + token + "&" + "filter=owner" + "&" + vers);
responsik = responsik.Substring(34, responsik.Length - 38);
var obj = JsonConvert.DeserializeObject<JObject>(responsik);
var id = obj.Value<string>("id");
responsik = webClient.DownloadString(url2 + "post_id="+ id + "&access_token=" + token + "&" + vers);
}
}
}
}
<file_sep>/Trrp(Lab1)/MainWindow.xaml.cs
using System;
using System.Collections.Generic;
using System.Configuration;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
using Trrp_Lab1_.Auth;
namespace Trrp_Lab1_
{
/// <summary>
/// Логика взаимодействия для MainWindow.xaml
/// </summary>
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
}
private void Button_Click(object sender, RoutedEventArgs e)
{
var s = "https://" + ConfigurationManager.AppSettings.Get("url") + "/authorize?client_id=" + ConfigurationManager.AppSettings.Get("idClient") + "&display=page&scope="+ ConfigurationManager.AppSettings.Get("scope") + "&response_type=code&v=5.2";
var forem = new WebBrooser(s);
forem.Show();
this.Close();
}
}
}
<file_sep>/Trrp(Lab1)/Auth/WebBrooser.xaml.cs
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Net;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Shapes;
using Trrp_Lab1_.MainForm;
namespace Trrp_Lab1_.Auth
{
/// <summary>
/// Логика взаимодействия для WebBrooser.xaml
/// </summary>
public partial class WebBrooser : Window
{
public WebBrooser(string uri)
{
InitializeComponent();
// web.Source = new Uri("vk.com/logout");
web.Source = new Uri(uri);
}
private void web_Navigated(object sender, System.Windows.Navigation.NavigationEventArgs e)
{
var s = web.Source.Fragment.Split('=');
if (s.Count() == 2)
{
WebRequest request = WebRequest.Create("https://oauth.vk.com/access_token?client_id=7230625&client_secret=<KEY>&code=" + s[1]);
request.Method = "GET";
WebResponse response = request.GetResponse();
string res = "";
using (Stream stream = response.GetResponseStream())
{
using (StreamReader reader = new StreamReader(stream))
{
res = reader.ReadToEnd();
}
}
response.Close();
var obj = JsonConvert.DeserializeObject<JObject>(res);
var s23 = obj.Value<string>("access_token");
if (s23 != null)
{
var form = new MainWin(s23);
form.Show();
this.Close();
}
else
{
MessageBox.Show("НЕ достаточно прав");
var formAuth = new MainWindow();
formAuth.Show();
this.Close();
}
}
}
}
}
| 88b361201614460d7427148c1eca8940cafce179 | [
"C#"
] | 3 | C# | iskakov/TrrpLab1 | 21480af4f3077eda7fd7913ef096483a9c46f25b | 4e9db23d03911dceede106b0b453ed56c9afc9ce |
refs/heads/master | <file_sep>#include "protocol_check.h"
#define IPPROTO_TCP 0X06
#define ETHERTYPE_IP 0X0800
int ip_check(unsigned short type)
{
return type==ETHERTYPE_IP ? 1: 0 ;
}
int tcp_check(unsigned short protocol)
{
return protocol==IPPROTO_TCP ? 1: 0;
}
<file_sep>all : netfilter_test
netfilter_test: main.o printarr.o swap_endian.o protocol_check.o
g++ -g -o netfilter_test main.o printarr.o protocol_check.o swap_endian.o -lnetfilter_queue
swap_endian.o:
g++ -g -c -o swap_endian.o swap_endian.cpp
protocol_check.o:
g++ -g -c -o protocol_check.o protocol_check.cpp
printarr.o:
g++ -g -c -o printarr.o printarr.c
main.o:
g++ -g -c -o main.o main.c
clean:
rm -f netfilter_test
rm -f *.o
<file_sep>int swap_word_endian(unsigned short swap);<file_sep>int ip_check(unsigned short type);
int tcp_check(unsigned short protocol);<file_sep>int printarr(unsigned char* arr, int length );<file_sep>#include "printarr.h"
#include <stdio.h>
int printarr(unsigned char* arr, int length )
{
int i;
for (int i = 0; i < length; ++i)
{
printf("%2x ",arr[i]);
}
printf("\n");
return 0;
}<file_sep>#include "swap_endian.h"
int swap_word_endian(unsigned short swap)
{
return (swap << 8 | swap >> 8);
} | bbf5651f7f00d9fb2d6665cabe1432acb1a7c1d1 | [
"C",
"Makefile",
"C++"
] | 7 | C++ | HSUABI/netfilter_test | 49f937593aff20535d5ed1e54ff3ce5eab5cd44c | a181f6647cf1e37043d2434818b257d75d5d39b2 |
refs/heads/master | <file_sep>package com.example.library.controller;
import com.example.library.entity.Author;
import com.example.library.entity.Book;
import com.example.library.entity.User;
import com.example.library.model.AuthorSaveResponse;
import com.example.library.model.BookSaveResponse;
import com.example.library.model.UserSaveResponse;
import com.example.library.repository.AuthorRepository;
import com.example.library.repository.BookRepository;
import com.example.library.repository.UserRepository;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class ControllerSaveNewInformation {
private BookRepository bookRepository;
private AuthorRepository authorRepository;
private UserRepository userRepository;
public ControllerSaveNewInformation(BookRepository bookRepository, AuthorRepository authorRepository, UserRepository userRepository) {
this.bookRepository = bookRepository;
this.authorRepository = authorRepository;
this.userRepository = userRepository;
}
@PostMapping("/library/authors/save")
public AuthorSaveResponse saveAuthor(@RequestBody Author request) {
Author author = new Author();
author.setFirstName(request.getFirstName());
author.setSecondName(request.getSecondName());
author = authorRepository.save(author);
AuthorSaveResponse response = new AuthorSaveResponse();
response.setAuthor(author);
response.setId(author.getId());
return response;
}
@PostMapping("/library/users/save")
public UserSaveResponse saveUser(@RequestBody User request) {
User user = new User();
user.setFirstName(request.getFirstName());
user.setSecondName(request.getSecondName());
user = userRepository.save(user);
UserSaveResponse response = new UserSaveResponse();
response.setUser(user);
response.setId(user.getId());
return response;
}
@PostMapping("/library/books/save")
public BookSaveResponse saveBooks(@RequestBody Book request) {
Book book = new Book();
book.setBookTitle(request.getBookTitle());
book.setAuthor(request.getAuthor());
book = bookRepository.save(book);
Author author = authorRepository.getById(book.getAuthor().getId());
BookSaveResponse response = new BookSaveResponse();
response.setBook(book);
response.setAuthor(author);
return response;
}
}
<file_sep># Проект Сервиса библиотеки
### Описание проекта
Данный проект позволяет работать с несколькими связанными таблицами:
- таблица с данными о пользователях библиотеки,
- таблица с информацией об авторах,
- таблица с информацией о книгах, которые имеются в библиотеке.
Каждая книга связана с автором, также содержится информация о пользователе, который в данный момент читает выбранную книгу.
С помощью данного сервиса Вы можете получить списки с информацией, которая хранится в базе данных через get запросы с использованием параметров:
- информация о книгах, которые читает выбранный пользователь;
- информация обо всех книгах автора, которые записаны в базе данных библиотеки;
- информация обо всех пользователях библиотеки, которые читают книги выбранного автора.
Имеется возможность отправить по сети и записать данные в БД через post запросы:
- информация о новых авторах;
- информация о новых книгах;
- информация о новых пользователях библиотеки.
### Используемые технологии
- Gradle
- Spring
- MySql
- junit
```
Вы можете скопировать базу данных для тестовой проверки сервиса с помощью файлов
*.sql в папке "sqlDunp" для работы с базой данных MySql
```
### Описание работы с проектом
Пример post запроса для сохранения новой книги в базе данных:
```
POST http://localhost:8080/library/books/save
Content-Type: application/json
{
"bookTitle": "<NAME>",
"author": {
"id": 2
}
}
```
Пример post запроса для сохранения нового автора в базе данных:
```
POST http://localhost:8080/library/authors/save
Content-Type: application/json
{
"firstName": "Николай",
"secondName": "Гумилев"
}
```
Пример post запроса для сохранения нового пользователя в базе данных:
```
POST http://localhost:8080/library/users/save
Content-Type: application/json
{
"firstName": "Андрей",
"secondName": "Пухов"
}
```
Пример get запроса для получения всех книг, которые читает выбранный пользователь
```
GET http://localhost:8080/library/users/1/books
```
Пример get запроса для получения всех книг автора
```
GET http://localhost:8080/library/authors/2/books
```
Пример get запроса для получения пользователей, которые читают выбранного автора
```
GET http://localhost:8080/library/authors/2/users"
```
### Описание тестов
Функционал покрыт тестами
Для запуска тестов используйте команду:
```
gradle clean test
```
## Автор проекта
<NAME>
<file_sep>package com.example.library;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.autoconfigure.web.servlet.AutoConfigureMockMvc;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.web.servlet.MockMvc;
import org.springframework.test.web.servlet.request.MockMvcRequestBuilders;
import org.springframework.transaction.annotation.Transactional;
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status;
@SpringBootTest
@AutoConfigureMockMvc
class LibraryApplicationTests {
@Autowired
MockMvc mockMvc;
@Test
void getAllBooksTest() throws Exception {
mockMvc.perform(MockMvcRequestBuilders.get("/library/users/1/books"))
.andExpect(status().isOk()
);
}
@Test
void getAllBooksFromAuthorTest() throws Exception {
mockMvc.perform(MockMvcRequestBuilders.get("/library/authors/1/books"))
.andExpect(status().isOk()
);
}
@Test
void getAllUsersByAuthorTest() throws Exception {
mockMvc.perform(MockMvcRequestBuilders.get("/library/authors/2/users"))
.andExpect(status().isOk()
);
}
@Test
@Transactional
public void testAuthorSave() throws Exception {
mockMvc.perform(MockMvcRequestBuilders
.post("/library/authors/save")
.content("{ " +
"\"firstName\": \"Александр\", " +
"\"secondName\":\"Пушкин\"" +
"}")
.contentType("application/json")
).andExpect(status().isOk());
}
@Test
@Transactional
public void tesUserSave() throws Exception {
mockMvc.perform(MockMvcRequestBuilders
.post("/library/users/save")
.content("{ " +
"\"firstName\": \"Михаил\", " +
"\"secondName\":\"Михайлов\"" +
"}")
.contentType("application/json")
).andExpect(status().isOk());
}
@Test
@Transactional
public void tesBookSave() throws Exception {
mockMvc.perform(MockMvcRequestBuilders
.post("/library/books/save")
.content("{ " +
"\"bookTitle\": \"<NAME>\", " +
"\"author\": { \"id\": 2 }" +
"}"
)
.contentType("application/json")
).andExpect(status().isOk());
}
}
<file_sep>create table book
(
id bigint auto_increment
primary key,
book_title varchar(255) null,
author_id bigint null,
user_id bigint null,
constraint FK1wxwagv6cm3vjrxqhmv884hir
foreign key (user_id) references user (id),
constraint FKklnrv3weler2ftkweewlky958
foreign key (author_id) references author (id)
);
INSERT INTO library.book (id, book_title, author_id, user_id) VALUES (1, 'Узкая дорога на дальний север', 1, null);
INSERT INTO library.book (id, book_title, author_id, user_id) VALUES (2, 'Война и мир', 2, 1);
INSERT INTO library.book (id, book_title, author_id, user_id) VALUES (3, '<NAME>', 2, 1);<file_sep>create table author
(
id bigint auto_increment
primary key,
first_name varchar(255) null,
second_name varchar(255) null
);
INSERT INTO library.author (id, first_name, second_name) VALUES (1, 'Ричард', 'Флэнаган');
INSERT INTO library.author (id, first_name, second_name) VALUES (2, 'Лев', 'Толстой');
INSERT INTO library.author (id, first_name, second_name) VALUES (3, 'Леонид', 'Андреев');<file_sep>create table user
(
id bigint auto_increment
primary key,
first_name varchar(255) null,
second_name varchar(255) null
);
INSERT INTO library.user (id, first_name, second_name) VALUES (1, 'Дмитрий', 'Дмитриев');
INSERT INTO library.user (id, first_name, second_name) VALUES (2, 'Александра', 'Александрова');<file_sep>package com.example.library.repository;
import com.example.library.entity.Book;
import org.springframework.data.jpa.repository.JpaRepository;
import java.util.List;
public interface BookRepository extends JpaRepository<Book, Long> {
List<Book> findAll();
List<Book> findAllByAuthor_Id(Long authorId);
List<Book> findAllByUser_Id(Long userId);
Book getById(Long bookId);
}
<file_sep>package com.example.library.repository;
import com.example.library.entity.Author;
import org.springframework.data.jpa.repository.JpaRepository;
public interface AuthorRepository extends JpaRepository<Author, Long> {
Author getById(Long authorId);
}
<file_sep>package com.example.library.model;
import com.example.library.entity.User;
import java.io.Serializable;
public class UserSaveResponse implements Serializable {
private User user;
private long id;
public User getUser() {
return user;
}
public void setUser(User user) {
this.user = user;
}
public long getId() {
return id;
}
public void setId(long id) {
this.id = id;
}
@Override
public String toString() {
return "UserSaveResponse{" +
"user=" + user +
", id=" + id +
'}';
}
}
| 03c187b5fb56e286124e6e38b83613f1c87b8bc0 | [
"Markdown",
"Java",
"SQL"
] | 9 | Java | Kryazhova/library | 68e253264ce5ccae0a36e093d78956d046423ed1 | 47d321fc38b5ea052df086325365465a4885791c |
refs/heads/master | <repo_name>imonahashan/PHP71-day19<file_sep>/view.php
<?php
require_once 'vendor/autoload.php';
use App\classes\Student;
Student::addition();
//
////if(isset($_POST['btn'])){
////// $demo = new App\classes\Demo();
//// $res =$demo->wordCharacterCount($_POST);
////}
use App\classes\Demo;
if(isset($_POST['btn'])){
$res = demo::wordCharacterCount($_POST);
}
?>
<form action="" method="post">
<table>
<tr>
<th>Enter your String</th>
<td><input type="text" name="given_string" size="50"/></td>
</tr>
<tr>
<th></th>
<td><input type="submit" name="btn" value="Submit"/></td>
</tr>
<tr>
<th>total number of word</th>
<td><input type="text" value="<?php echo $res['wordLength'] ?>" readonly/></td>
</tr>
<tr>
<th>total number of character</th>
<td><input type="text" value="<?php echo $res['stringLength'] ?>" readonly/></td>
</tr>
</table>
</form>
<file_sep>/test/app/classes/Demo.php
<?php
namespace App\classes;
class Demo
{
function wordCharacterCount($data){
$stringLength = strlen($data['given_string']);
$wordLength = str_word_count($data['given_string']);
$res = [
'stringLength' => $stringLength,
'wordLength' => $wordLength,
];
return $res;
}
} | 10c11918d598ae9177945e175dfb4685826d3066 | [
"PHP"
] | 2 | PHP | imonahashan/PHP71-day19 | abda961df9423dd47ca2ea99efb3b33b21dfdd39 | b0e7e931a1b2b07fe6df173aa5b79169f25e8a69 |
refs/heads/main | <repo_name>keith-gamble/ignition-auto-trace<file_sep>/README.md
# ignition-auto-trace
A python script that will automatically add trace loggers to any ignition project
The script will take any script with pre-existing functions like so:
```
def myFunction(param1, param2, param3, **param4):
return foo
def mySecondFunction(example="TEST"):
return example
```
and automatically add everything necessary to handle trace logging throughout.
```
logger = system.util.getLogger("my
def myFunction(param1, param2, **args):
logger.trace("Folder.Script.myFunction(param1=%s, param2=%s, args=%s)" % (param1, param2, args))
return foo
def mySecondFunction(example="TEST"):
logger.trace("Folder.Script.mySecondFunction(example=%s)" % (example))
return example
```
<file_sep>/script.py
import os
import re
myProjectPath = "Insert Ignition Directory Here"
myProjectName = "MyProject"
scriptPath = '%s/projects/%s/ignition/script-python' % (myProjectPath, myProjectName)
def checkIfFunction(line):
return line.startswith('def ')
def getTabs(line):
return ''.join(["\t" for tab in range(line.rstrip().count('\t'))])
def verifyTabInsteadOfSpace(line):
if line.startswith(" "):
return line.replace(" ", "\t")
return line
def getScriptPath(line, subdir):
return subdir.replace(scriptPath, '').replace('/', '.')[1:]
def createFunctionPath(line, subdir):
functionName = re.search('def (.*)\(', line).group(1)
scriptFolder = getScriptPath(line, subdir)
return "%s.%s" % (scriptFolder, functionName)
def getParameterArray(line):
parameterString = parameterString = re.search('\((.*)\):', line).group(1)
parameterArray = [param.split('=')[0].replace("\n", "").replace('\t', '').replace('*', '').strip() for param in parameterString.split(',')]
if parameterArray == ['']:
parameterArray = []
return parameterArray
def createParameters(line):
parameterArray = getParameterArray(line)
parameterFormatString = ', '.join([param + "=%s" for param in parameterArray])
parameterFormatParameters = ', '.join(parameterArray)
return '%s)" %% (%s)' % (parameterFormatString, parameterFormatParameters)
def checkForParameters(line):
parameterArray = getParameterArray(line)
return len(parameterArray) > 0
def buildLogger(line, subdir):
function = createFunctionPath(line, subdir)
parameters = createParameters(line)
if checkForParameters(line):
logger = 'logger.trace("%s(%s)\n' % (function, parameters)
else:
logger = 'logger.trace("%s()")\n' % function
return logger
for subdir, dirs, files in os.walk(scriptPath):
for fileName in files:
if fileName.endswith('.py'):
filePath = os.path.join(subdir, fileName)
with open(filePath, "r") as file:
lastRowIsFunction = False
logger = None
data = file.readlines()
for index, line in enumerate(data):
line = verifyTabInsteadOfSpace(line)
# Check for the logger existing, if not then create it!
if index == 0:
logger = getScriptPath(line, subdir)
data[index] = 'logger = system.util.getLogger("%s")\n' % logger
# Verify we dont get duplicate loggers for no reason
elif line == data[0]:
data[index] = "\n"
elif checkIfFunction(line):
logger = buildLogger(line, subdir)
defTabs = getTabs(line)
lastRowIsFunction = True
elif lastRowIsFunction:
# Replace a line if its already a logger
if 'logger.trace' in line:
data[index] = defTabs + "\t" + logger
# Add a new line if no logger is present
else:
data.insert(index, defTabs + "\t" + logger)
lastRowIsFunction = False
defTabs = None
logger = None
else:
data[index] = line
with open(filePath, 'w') as file:
file.writelines(data)
| b6b014d35e09e4b4d5211fe0d060b9c3bc8a67b1 | [
"Markdown",
"Python"
] | 2 | Markdown | keith-gamble/ignition-auto-trace | 586246393be256eb56e6c4fc9930a1e8c74b599d | 75a4f9ca0ccd2ee20a97e000c913ca7fa5bb091d |
refs/heads/master | <repo_name>ritasoorsk/veebiprogrammeerimine<file_sep>/tund3/foto.php
<?php
$picsDir = "../pics/";
$picfiles = [];
$allfiles = scandir($picsDir);
//var_dump($allfiles)
$picfiles = array_slice($allfiles, 2);
//var_dump($picfiles)
$picCount = count($picfiles);
$picNum = mt_rand(0, ($picCount -1));
$picfiles = $picfiles[$picNum];
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Rita</title>
</head>
<body>
<h1>
Foto
</h1>
<p>See leht on loodud õppetöö raames ning ei sisalda mingit tõsiseltvõetavat sisu.</p>
<img src="<?php echo $picsDir .$picfiles; ?>">
</body>
</html><file_sep>/tund3/avaleht.php
<?php
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title><NAME> veebiprogrammeerimine</title>
</head>
<body>
<h1>
Avaleht
</h1>
<p>See leht on loodud õppetöö raames ning ei sisalda mingit tõsiseltvõetavat sisu.</p>
<p> Meie opime <a href="http://www.tlu.ee">tallinna ülikoolis</a>.</p>
<p> Minu esimene php leht asub <a href="../esimene.php">siin</a>.</p>
<p> Minu sõbra Tim'i leht asub <a href="../../../~jaantim/veebiproge">siin</a>.</p>
<p> Pilte näeb <a href="foto.php">siin</a>.</p>
</body>
</html><file_sep>/esimene.php
<?php
//see on kommentaar, järgmisena paar muutujat
$myName = "Andrus";
$myFamilyName = "Rinde";
//vaatame, mis kell on ja määrame päeva osa
$hourNow = date("H");
//echo $hourNow;
$partOfDay = "";
if ( $hourNow < 8){ // < > <= >= !=
$partOfDay = "varajane hommik";
}
if ( $hourNow >= 8 and $hourNow < 16){
$partOfDay = "koolipäev";
}
if ($hourNow >= 16){
$partOfDay = "vaba aeg";
}
//echo $partOfDay;
//vaatame, kaua on koolipäeva lõpuni aega jäänud
$timeNow = strtotime(date("d.m.Y H:i:s"));
//echo $timeNow;
$schoolDayEnd = strtotime(date("d.m.Y" ." " ."15:45"));
//echo $schoolDayEnd;
$toTheEnd = $schoolDayEnd - $timeNow;
echo (round($toTheEnd / 60));
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title><NAME> veebiprogrammeerimine</title>
</head>
<body>
<h1>
<?php
echo $myName ." " .$myFamilyName;
?>
veebiprogrammeerimine</h1>
<p>See leht on loodud õppetöö raames ning ei sisalda mingit tõsiseltvõetavat sisu.</p>
<?php
echo "<p>See on esimene jupp PHP abil väljastatud teksti!</p>";
echo "<p>Täna on ";
echo date("d.m.Y") .", kell lehe avamisel oli " .date("H:i:s");
echo ", käes on " . $partOfDay .".</p>";
for ($i = 0; $i < 5; $i ++){
echo "miu";
}
?>
</body>
</html> | 1bef553c5acbff94aefb2ffb7c55da9c08c1273b | [
"PHP"
] | 3 | PHP | ritasoorsk/veebiprogrammeerimine | 073965aaa3e896b98c31fd4530a5e3e474dc1b20 | 8663931ff41da499519996eed3fbd59b9e4f0c41 |
refs/heads/master | <file_sep>var fmodule = require('./file-base-module2.js');
console.log(fmodule.test());
console.log(fmodule.testingg());
<file_sep>let canvas = require('canvas');
<file_sep>var myname = function (name) {
console.log(name);
};
myname(12);
<file_sep>interface = Myname{
name:string
}
var myname = (name:string)=>{
console.log(name)
}
myname(12);
<file_sep>var fs = require("fs");
/*fs.unlink('demo.txt', (err)=> {
if(err) throw err;
console.log("file deleted");
});*/
fs.rename('demo.txt', 'demo-rename.txt', (err)=> {
if(err) throw err;
console.log("file deleted");
});
<file_sep>var events = require("events");
var eventEmitter = new events.EventEmitter();
eventEmitter.on('sneha-birthday', function() {
console.log('sneha ka birthday.');
});
eventEmitter.emit('sneha-birthday');
| fed43816d6c0f11a9a7c437fb23096804beeae7b | [
"JavaScript",
"TypeScript"
] | 6 | JavaScript | prafulG/node-study | 036d018e956ed7f573416281ca4f6ebc01cf48fd | 84e2855b6f8f0eb5656c2704569ed3f4f6d13f7d |
refs/heads/main | <file_sep>using System;
using System.Threading;
using System.Threading.Tasks;
using Light.GuardClauses;
using LinqToDB.Data;
using Synnotech.DatabaseAbstractions;
namespace Synnotech.Linq2Db.MsSqlServer
{
/// <summary>
/// Represents an adapter for the Linq2Db <see cref="DataConnectionTransaction" /> that
/// implements <see cref="IAsyncTransaction" />. The transaction will be
/// implicitly rolled back when commit was not called and the transaction is disposed.
/// </summary>
public sealed class Linq2DbTransaction : IAsyncTransaction
{
/// <summary>
/// Initializes a new instance of <see cref="Linq2DbTransaction" />.
/// </summary>
/// <param name="dataConnectionTransaction">The data connection transaction that will be wrapped by this instance.</param>
/// <exception cref="ArgumentNullException">Thrown when <paramref name="dataConnectionTransaction"/> is null.</exception>
public Linq2DbTransaction(DataConnectionTransaction dataConnectionTransaction) =>
DataConnectionTransaction = dataConnectionTransaction.MustNotBeNull(nameof(dataConnectionTransaction));
private DataConnectionTransaction DataConnectionTransaction { get; }
/// <summary>
/// Disposes the underlying transaction. It will also be rolled back if
/// <see cref="CommitAsync"/> was not called up to this point.
/// </summary>
public ValueTask DisposeAsync() => DataConnectionTransaction.DisposeAsync();
/// <summary>
/// Disposes the underlying transaction. It will also be rolled back if
/// <see cref="CommitAsync"/> was not called up to this point.
/// </summary>
public void Dispose() => DataConnectionTransaction.Dispose();
/// <summary>
/// Commits all changes to the database.
/// </summary>
public Task CommitAsync(CancellationToken cancellationToken = default) => DataConnectionTransaction.CommitAsync(cancellationToken);
}
}<file_sep># This repo is deprecated
Please visit [Synnotech.Linq2Db](https://github.com/Synnotech-AG/Synnotech.Linq2Db) for the current implementation.
# Synnotech.Linq2Db.MsSqlServer
*Extensions for Linq2Db that target Microsoft SQL Server*
[](https://www.synnotech.de/)
[](https://github.com/Synnotech-AG/Synnotech.Linq2Db.MsSqlServer/blob/main/LICENSE)
[](https://www.nuget.org/packages/Synnotech.Linq2Db.MsSqlServer/)
# How to install
Synnotech.Linq2Db.MsSqlServer is compiled against [.NET Standard 2.0 and 2.1](https://docs.microsoft.com/en-us/dotnet/standard/net-standard) and thus supports all major plattforms like .NET 5, .NET Core, .NET Framework 4.6.1 or newer, Mono, Xamarin, UWP, or Unity.
Synnotech.Linq2Db.MsSqlServer is available as a [NuGet package](https://www.nuget.org/packages/Synnotech.Linq2Db.MsSqlServer/) and can be installed via:
- **Package Reference in csproj**: `<PackageReference Include="Synnotech.Linq2Db.MsSqlServer" Version="2.0.0" />`
- **dotnet CLI**: `dotnet add package Synnotech.Linq2Db.MsSqlServer`
- **Visual Studio Package Manager Console**: `Install-Package Synnotech.Linq2Db.MsSqlServer`
# What does Synnotech.Linq2Db.MsSqlServer offer you?
Synnotech.Linq2Db.MsSqlServer implements the session abstractions of [Synnotech.DatabaseAbstractions](https://github.com/Synnotech-AG/Synnotech.DatabaseAbstractions) for Linq2Db 3.3.0 or newer, targeting Microsoft.Data.SqlClient. This allows you to simplify the code in your data access layer. Furthermore, Synnotech.Linq2Db.MsSqlServer allows you to configure your DI container with one call when you want to use the Synnotech default settings.
# Default configuration
Synnotech.Linq2Db.MsSqlServer provides an extension method for `IServiceCollection` to easily get you started in e.g. ASP.NET Core Apps. Simply call `AddLinq2DbForSqlServer`:
```csharp
public void ConfigureService(IServiceCollection services)
{
// All other services like MVC are left out for brevity's sake
services.AddLinq2DbForSqlServer();
}
```
The method will do the following:
1. Load the `Linq2DbSettings` from the `IConfiguration` instance that is already present in the DI container and register it as a singleton.
1. Create a Linq2Db `IDataProvider` for MS SQL Server and register it as a singleton.
1. Create an instance of `LinqToDbConnectionOptions` which configures the data provider, connection string, and trace level, and register it as a singleton.
1. Register the `DataConnection` with a transient lifetime (by default). The `LinqToDbConnectionOptions` singleton will be passed into the data connection.
1. Register a `Func<DataConnection>` as a singleton, which allows to resolve a data connection dynamically in code (this is also a required dependency for the `ISessionFactory<T>` implementation).
You can configure LinqToDb via your appsettings.json file
```jsonc
{
// other configuration sections are left out for brevity's sake
"database": {
"connectionString": "Server=(localdb)\\MsSqlLocalDB;Database=MyDatabase;Integrated Security=True",
"sqlServerVersion": "v2017", // Corresponds to LinqToDB's SqlServerVersion enumeration, default value is v2017 if left out
"traceLevel": "Off" // Corresponds to System.Diagnostic.TraceLevel, used for logging SQL statements generated by LinqToDb
}
}
```
When you set `traceLevel` to a value other than `TraceLevel.Off`, your services also need to have an `ILogger<T>` (from Microsoft.Extensions.Logging) registered. It will be used for data connection tracing. We recommend `TraceLevel.Info` to log all SQL statements in situations where you need to inspect the generated SQL statements, otherwise leave it off because it has a severe impact on performance and log file size.
Please note: the configuration is only loaded once during startup. If you change the database settings, you need to restart your web app.
`AddLinq2DbForSqlServer` has several optional parameters that you can supply:
- `createMappings`: a delegate that can be used to configure the Linq2DB mapping schema. You do not need to provide this delegate when you use attributes on your data access model classes. However, we highly encourage you to not use attributes but use a single method were you define the mapping configuration (this makes it easier to customize or replace the data access layer).
- `configurationSectionName`: the section name that is used to retrieve the `Linq2DbSettings` from the `IConfiguration` instance already registered with the DI container. The default value is "database".
- `dataConnectionLifetime`: the enumeration value indicating the service lifetime for `DataConnection`. The default value is `ServiceLifetime.Transient`.
- `registerFactoryDelegateForDataConnection`: the value indicating whether a `Func<DataConnection>` should be registered with the DI Container. The default value is `true`. You can set this value to false if you use a proper DI container like [LigthInject](https://github.com/seesharper/LightInject) that supports [Function Factories](https://www.lightinject.net/#function-factories).
If you don't want to use `AddLinq2DbForSqlServer`, you might still want to reuse its internal functionality. Just take a look at the source code of `Linq2DbSettings`, `CreateSqlServerDataProvider`, `CreateLinq2DbConnectionOptions`, and `LogLinq2DbMessage`.
# Writing custom sessions
When writing code that performs I/O with MS SQL Server, we usually write custom abstractions, containing a single method for each I/O request. The following sections show you how to design abstractions, implement them, and call them in client code.
## Sessions that only read data
The following code snippets show the example for an ASP.NET Core controller that represents an HTTP GET operation for contacts.
Your I/O abstraction should simply derive from `IAsyncReadOnlySession` and offer the corresponding I/O call to load contacts:
```csharp
public interface IGetContactsSession : IAsyncDisposable
{
Task<List<Contact>> GetContactsAsync(int skip, int take);
}
```
To implement this interface, you should derive from the `AsyncReadOnlySession` class of Synnotech.Linq2Db.MsSqlServer:
```csharp
public sealed class LinqToDbGetContactsSession : AsyncReadOnlySession, IGetContactsSession
{
public LinqToDbGetContactsSession(DataConnection dataConnection) : base(dataConnection) { }
public Task<List<Contact>> GetContactsAsync(int skip, int take) =>
DataConnection.GetTable<Contacts>()
.OrderBy(contact => contact.LastName)
.Skip(skip)
.Take(take)
.ToListAsync();
}
```
`AsyncReadOnlySession` implements `IAsyncReadOnlySession`, `IDisposable` and `IAsyncDisposable` for you and provides LinqToDb's `DataConnection` via a protected property. This reduces the code you need to write in your session for your specific use case.
You can then consume your session via the abstraction in client code. Check out the following ASP.NET Core controller for example:
```csharp
[ApiController]
[Route("api/contacts")]
public sealed class GetContactsController : ControllerBase
{
public GetContactsController(Func<IGetContactsSession> createSession) =>
CreateSession = createSession;
private Func<IGetContractsSession> CreateSession { get; }
[HttpGet]
public async Task<ActionResult<List<ContactDto>>> GetContacts(int skip, int take)
{
if (this.CheckPagingParametersForErrors(skip, take, out var badResult))
return badResult;
await using var session = CreateSession();
var contacts = await session.GetContactsAsync(skip, take);
return ContactDto.FromContacts(contacts);
}
}
```
In this example, a `Func<IGetContactsSession>` is injected into the controller. This factory delegate is used to instantiate the session once the parameters are validated. We recommend that you do not register your session as "scoped", but rather as transient with your DI container (because it's the controllers responsibility to properly open and close the session). This allows you to test if the session is disposed correctly without setting up the whole ASP.NET Core ecosystem to instantiate the controller.
For this to work, we suggest that you use a DI container like [LightInject](https://github.com/seesharper/LightInject) that automatically provides you with [function factories](https://www.lightinject.net/#function-factories) once you have registered a type. If you use a DI container that does not support this feature, you can simply register the function factory yourself (typically as a singleton).
```csharp
services.AddTransient<IGetContactsSession, LinqToDbGetContactsSession>();
// The next call is not necessary if your DI container can automatically resolve
// Func<T> when T is already registered. LightInject is able to do this.
services.AddSingleton<Func<IGetContactsSession>>(container => container.GetRequiredService<IGetContactsSession>);
```
## Sessions that manipulate data
If your session requires the `SaveChangesAsync` method, or you want to handle individual transactions, you can derive from the `IAsyncSession` interface or `IAsyncTransactionalSession` interface, respectively. We recommend that you open sessions that derive from `IAsyncSession` via an `ISessionFactory<T>`. All of these APIs support aborting async operations via cancellation tokens.
### Example for updating an existing record with IAsyncSession
The abstraction might look like this:
```csharp
public interface IUpdateContactSession : IAsyncSession
{
Task<Contact?> GetContactAsync(int id);
Task UpdateContactAsync(Contact contact);
}
```
The class that implements this interface should derive from `AsyncSession`, which provides the same members as `AsyncReadOnlySession` plus a `SaveChangesAsync` method that commits the internal transaction:
```csharp
public sealed class LinqToDbUpdateContactSession : AsyncSession, IUpdateContactSession
{
public Task<Contact?> GetContactAsync(int id) =>
#nullable disable
DataConnection.GetTable<Contact>()
.FirstOrDefaultAsync(contact => contact.Id == id);
#nullable restore
public Task UpdateContactAsync(Contact contact) => DataConnection.UpdateAsync(contact);
}
```
You should register a factory for your session with your DI container:
```csharp
services.AddSessionFactoryFor<IUpdateContactSession, LinqToDbUpdateContactSession>();
```
Your controller could then use the factory to open the session asynchronously:
```csharp
[ApiController]
[Route("api/contacts/update")]
public sealed class UpdateContactController : ControllerBase
{
public UpdateContactController(ISessionFactory<IUpdateContactSession> sessionFactory,
ContactValidator validator)
{
SessionFactory = sessionFactory;
Validator = validator;
}
private ISessionFactory<IUpdateContactSession> SessionFactory { get; }
private ContactValidator Validator { get; }
[HttpPut]
public async Task<IActionResult> UpdateContact(ContactDto contactDto)
{
if (this.CheckForErrors(contactDto, Validator, out var badResult))
return badResult;
// The session factory opens the connection asynchronously and starts a transaction.
// Disposing the session will automatically rollback the transaction if SaveChangesAsync
// is not called.
await using var session = await SessionFactory.OpenSessionAsync();
var contact = await session.GetContactAsync(contactDto.Id);
if (contact == null)
return NotFound();
contactDto.UpdateContact(contact); // Or use an object-to-object mapper
await session.UpdateContactAsync(contact);
await session.SaveChangesAsync(); // This commits the underlying transaction
return NoContent();
}
}
```
Please note the following things about the session factory:
- `LinqToDbUpdateContactSession` does not have a constructor that takes a `DataConnection`. This is done because the data connection needs to be initialized asynchronously (open the connection asynchronously, start the transaction asynchronously) before being passed
to the `AsyncSession`. However, constructors in C# / .NET cannot run asynchronously. This job is performed by the implementation of `ISessionFactory<T>`. You can opt out of this feature by using the constructor of `AsyncSession` that actually takes a data connection. This data connection must be open and reference a transaction before being passed.
- The implementation for `ISessionFactory<T>` will always create a transient instance of the target session (i.e. your session must have a default constructor). If you don't want transient instances, you need to opt out of `ISessionFactory` (although we do not recommend this - we think it is the controller's responsibility to handle the session during an HTTP request).
- You should only use `ISessionFactory<T>` in scenarios where you use `IAsyncSession`. If your session is read-only (i.e. no transaction required) or when you handle transactions yourself via `IAsyncTransactionalSession`, you will not be able to use the session factory (as asynchronous opening is not required).
### Handling Transactions Individually
If you need to handle transactions individually, (e.g. because you want to handle a large amount of data in batches and have a transaction per batch), you can derive from the `IAsyncTransactionalSession` interface:
```csharp
public interface IUpdateProductsSession : IAsyncTransactionalSession
{
Task<int> GetProductCountAsync();
Task<List<Product>> GetProductBatchAsync(int skip, int take);
Task UpdateProductAsync(Product product);
}
```
`IAsyncTransactionalSession` has no `SaveChangesAsync` method, but a `BeginTransactionAsync` method that you can use to start individual transactions.
The implementation of this session could look like this:
```csharp
public sealed class LinqToDbUpdateProductsSession : AsyncTransactionalSession, IUpdateProductsSession
{
public LinqToDbUpdateProductsSession(DataConnection dataConnection) : base(dataConnection) { }
public Task<int> GetProductsCountAsync() => DataConnection.GetTable<Product>().CountAsync();
public Task<List<Product>> GetProductBatchAsync(int skip, int take) =>
DataConnection.GetTable<Product>()
.OrderBy(product => product.Id)
.Skip(skip)
.Take(take)
.ToListAsync();
public Task UpdateProductAsync(Product product) => DataConnection.UpdateAsync(product);
}
```
Your job that updates all products might look like this:
```csharp
public sealed class UpdateAllProductsJob
{
public UpdateAllProductsJob(Func<IUpdateProductsSession> createSession, ILogger logger)
{
CreateSession = createSession;
Logger = logger;
}
private Func<IUpdateProductsSession> CreateSession { get; }
private ILogger Logger { get; }
public async Task UpdateProductsAsync()
{
await using var session = CreateSession();
var numberOfProducts = await session.GetProductsCountAsync();
const int batchSize = 100;
var skip = 0;
while (skip < numberOfProducts)
{
IAsyncTransaction? transaction = null;
try
{
transaction = session.BeginTransactionAsync();
var products = session.GetProductBatchAsync(skip, batchSize);
foreach (var product in products)
{
if (product.TryPerformDailyUpdate(Logger))
await session.UpdateProductAsync(product);
}
await transaction.CommitAsync();
}
catch (Exception exception)
{
Logger.Error(exception, "Batch {From} to {To} could not be updated properly", skip + 1, batchSize + skip);
}
finally
{
if (transaction != null)
await transaction.DisposeAsync();
}
skip += batchSize;
}
}
}
```
In the example above, the job gets a delegate `Func<IUpdateProductsSession>` injected that can be used to create a session. In `UpdateProductsAsync`, the session is created and the number of products is determined. The products are then updated in batches with size 100. In each batch, a new transaction is started and committed at the end. The transaction is disposed in the finally block before a new batch begins.
*Please keep in mind*: neither LinqToDB nor Synnotech.DatabaseAbstractions support nested transactions. You should always start a single transaction, commit and dispose it, and only afterwards create a new transaction. If you create a new transaction before committing it, your current transaction will be disposed (and implicitly rolled back).
# General recommendations
1. All I/O should be abstracted. You should create abstractions that are specific for your use cases.
2. Your custom abstractions should derive from `IAsyncReadOnlySession` (when they only read data from SQL Server) or from `IAsyncSession` (when they also manipulate data and therefore need a transaction). Only use `IAsyncTransactionalSession` when you need to handle several transactions within a single session.
3. Prefer async I/O over sync I/O. Threads that wait for a database query to complete can handle other requests in the meantime when the query is performed asynchronously. This prevents thread starvation under high load and allows your web service to scale better. Synnotech.Linq2Db.MsSqlServer currently does not support synchronous sessions for this reason.
4. In case of web apps, we do not recommend using the DI container to dispose of the session. Instead, it is the controller's responsibility to do that. This way you can easily test the controller without running the whole ASP.NET Core infrastructure in your tests. To make your life easier, use an appropriate DI container like [LightInject](https://github.com/seesharper/LightInject) instead of Microsoft.Extensions.DependencyInjection. These more sophisticated DI containers provide you with more features, e.g. [Function Factories](https://www.lightinject.net/#function-factories).
# Trivia
- The SQL Client, originally available in the System.Data.SqlClient namespace, is now actually developed in a new project called [Microsoft.Data.SqlClient](https://github.com/dotnet/sqlclient). Both exist next to each other, but only Microsoft.Data.SqlClient will receive new features.
- As of May 2021, almost all calls to SQL Server are implemented in an async fashion. For transactions, this is not the case. The corresponding classes (in Microsoft.Data.SqlClient as well as in System.Data.SqlClient) do not support operations to begin, commit, rollback, and dispose transactions asynchronously. There are members for that on `DbTransaction`, but these simply call the synchronous methods. It remains to be seen when transactions will support asynchronous I/O. Synnotech.Linq2Db.MsSqlServer still calls transactions asynchronously because the overhead in a method that needs to be async anyway (for opening the session, loading, inserting, and updating) is negligible.
# Migration Guides
## From 1.0.0 to 2.0.0
The following changes require recompilation. The surface areas of the APIs were either extended or stayed the same.
- `AsyncReadOnlySession` now directly implements `IAsyncReadOnlySession` instead of `IAsyncDisposable` and `IDisposable`
- `AsyncSession<T>`, `AsyncTransactionalSession<T>`, and `Linq2DbTransaction` now support an optional cancellation token on their async APIs.
<file_sep>namespace Synnotech.Linq2Db.MsSqlServer.Tests
{
public sealed class Employee
{
public int Id { get; set; }
public string Name { get; set; } = string.Empty;
public int Age { get; set; }
}
}<file_sep>using System;
using System.Threading;
using System.Threading.Tasks;
using Light.GuardClauses;
using LinqToDB.Data;
using Microsoft.Data.SqlClient;
using Synnotech.DatabaseAbstractions;
namespace Synnotech.Linq2Db.MsSqlServer
{
/// <summary>
/// Represents a factory that creates a data connection, opens a connection to
/// the target database asynchronously and then starts a transaction asynchronously.
/// </summary>
/// <typeparam name="TAbstraction">The abstraction that your session implements.</typeparam>
/// <typeparam name="TImplementation">The Linq2Db session implementation that performs the actual database I/O.</typeparam>
/// <typeparam name="TDataConnection">Your custom data connection subtype that you use in your solution.</typeparam>
public class SessionFactory<TAbstraction, TImplementation, TDataConnection> : ISessionFactory<TAbstraction>
where TAbstraction : IAsyncSession
where TImplementation : AsyncSession<TDataConnection>, TAbstraction, new()
where TDataConnection : DataConnection
{
/// <summary>
/// Initializes a new instance of <see cref="SessionFactory{TAbstraction,TImplementation,TDataConnection}"/>.
/// </summary>
/// <param name="createDataConnection">The delegate that initializes a new data connection.</param>
/// <exception cref="ArgumentNullException">Thrown when <paramref name="createDataConnection"/> is null.</exception>
public SessionFactory(Func<TDataConnection> createDataConnection) =>
CreateDataConnection = createDataConnection.MustNotBeNull(nameof(createDataConnection));
private Func<TDataConnection> CreateDataConnection { get; }
/// <summary>
/// Creates a new data connection, opens a connection to the target database asynchronously
/// and starts a transaction. The data connection is then passed to a new session instance.
/// </summary>
/// <exception cref="SqlException">Thrown when an SQL error occurred when opening the session or starting the transaction.</exception>
public async Task<TAbstraction> OpenSessionAsync(CancellationToken cancellationToken = default)
{
var dataConnection = CreateDataConnection();
var session = new TImplementation();
await dataConnection.BeginTransactionAsync(session.TransactionLevel, cancellationToken);
session.SetDataConnection(dataConnection);
return session;
}
}
/// <summary>
/// Represents a factory that creates a data connection, opens a connection to
/// the target database asynchronously and then starts a transaction asynchronously.
/// </summary>
/// <typeparam name="TAbstraction">The abstraction that your session implements.</typeparam>
/// <typeparam name="TImplementation">The Linq2Db session implementation that performs the actual database I/O.</typeparam>
public sealed class SessionFactory<TAbstraction, TImplementation> : SessionFactory<TAbstraction, TImplementation, DataConnection>
where TAbstraction : IAsyncSession
where TImplementation : AsyncSession, TAbstraction, new()
{
/// <summary>
/// Initializes a new instance of <see cref="SessionFactory{TAbstraction,TImplementation}"/>.
/// </summary>
/// <param name="createDataConnection">The delegate that initializes a new data connection.</param>
/// <exception cref="ArgumentNullException">Thrown when <paramref name="createDataConnection"/> is null.</exception>
public SessionFactory(Func<DataConnection> createDataConnection) : base(createDataConnection) { }
}
}<file_sep>using System;
using System.Collections.Generic;
using System.Threading.Tasks;
using FluentAssertions;
using LinqToDB;
using LinqToDB.Data;
using Microsoft.Extensions.DependencyInjection;
using Xunit;
using Xunit.Abstractions;
namespace Synnotech.Linq2Db.MsSqlServer.Tests
{
public sealed class AsyncReadOnlySessionTests : BaseMsSqlIntegrationTest
{
public AsyncReadOnlySessionTests(ITestOutputHelper output) : base(output) { }
[Fact]
public static void MustImplementIDisposable() =>
typeof(AsyncReadOnlySession<>).Should().Implement<IDisposable>();
[Fact]
public static void MustImplementIAsyncDisposable() =>
typeof(AsyncReadOnlySession<>).Should().Implement<IAsyncDisposable>();
[SkippableFact]
public async Task LoadData()
{
SkipTestIfNecessary();
await using var session = PrepareContainer().AddTransient<EmployeeSession>()
.BuildServiceProvider()
.GetRequiredService<EmployeeSession>();
var employees = await session.GetEmployeesAsync();
var expectedEmployees = new[]
{
new Employee { Id = 1, Name = "<NAME>", Age = 42 },
new Employee { Id = 2, Name = "<NAME>", Age = 29 },
new Employee { Id = 3, Name = "<NAME>", Age = 39 }
};
employees.Should().BeEquivalentTo(expectedEmployees, options => options.WithStrictOrdering());
}
private sealed class EmployeeSession : AsyncReadOnlySession
{
public EmployeeSession(DataConnection dataConnection) : base(dataConnection) { }
public Task<List<Employee>> GetEmployeesAsync() => DataConnection.GetTable<Employee>().ToListAsync();
}
}
}<file_sep>using System;
using System.Diagnostics;
using Light.GuardClauses;
using Light.GuardClauses.Exceptions;
using LinqToDB.DataProvider.SqlServer;
using Microsoft.Extensions.Configuration;
namespace Synnotech.Linq2Db.MsSqlServer
{
/// <summary>
/// Represents the default settings for Linq2Db that are used in a setup with Microsoft SQL Server.
/// </summary>
public class Linq2DbSettings
{
/// <summary>
/// The default section name within the <see cref="IConfiguration" /> where settings are loaded from.
/// </summary>
public const string DefaultSectionName = "database";
/// <summary>
/// Gets or sets the connection string to the target database.
/// </summary>
public string ConnectionString { get; set; } = string.Empty;
/// <summary>
/// Gets or sets the target version that the Linq2Db data provider will target. The default value is SqlServerVersion.v2017.
/// </summary>
public SqlServerVersion SqlServerVersion { get; set; } = SqlServerVersion.v2017;
/// <summary>
/// Gets or sets the value indicating whether SQL statements will be logged. The default value is Off.
/// </summary>
public TraceLevel TraceLevel { get; set; } = TraceLevel.Off;
/// <summary>
/// Loads the <see cref="Linq2DbSettings"/> settings from configuration.
/// </summary>
/// <param name="configuration">The configuration instance where the settings are loaded from.</param>
/// <param name="sectionName">The name of the section that represents the Linq2Db settings.</param>
/// <exception cref="ArgumentNullException">Thrown when <paramref name="configuration"/> or <paramref name="sectionName"/> is null.</exception>
/// <exception cref="ArgumentException">Thrown when <paramref name="sectionName"/> is an empty string or contains only whitespace.</exception>
/// <exception cref="InvalidOperationException">Thrown when the settings could not be loaded (most likely because the section is not present in the configuration).</exception>
public static Linq2DbSettings FromConfiguration(IConfiguration configuration, string sectionName = DefaultSectionName) =>
FromConfiguration<Linq2DbSettings>(configuration, sectionName);
/// <summary>
/// Loads the Linq2Db settings from configuration.
/// </summary>
/// <typeparam name="T">The type of Linq2Db settings that will be used to load the settings.</typeparam>
/// <param name="configuration">The configuration instance where the settings are loaded from.</param>
/// <param name="sectionName">The name of the section that represents the Linq2Db settings.</param>
/// <exception cref="ArgumentNullException">Thrown when <paramref name="configuration"/> or <paramref name="sectionName"/> is null.</exception>
/// <exception cref="ArgumentException">Thrown when <paramref name="sectionName"/> is an empty string or contains only whitespace.</exception>
/// <exception cref="InvalidOperationException">Thrown when the settings could not be loaded (most likely because the section is not present in the configuration).</exception>
public static T FromConfiguration<T>(IConfiguration configuration, string sectionName = DefaultSectionName)
{
configuration.MustNotBeNull(nameof(configuration));
sectionName.MustNotBeNullOrWhiteSpace(nameof(sectionName));
return configuration.GetSection(sectionName)
.Get<T?>() ?? throw new InvalidConfigurationException($"Linq2Db settings could not be retrieved from configuration section \"{sectionName}\".");
}
}
}<file_sep>using System.Threading.Tasks;
using Light.EmbeddedResources;
using Light.GuardClauses;
using Light.GuardClauses.Exceptions;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using Serilog;
using Synnotech.MsSqlServer;
using Synnotech.Xunit;
using Xunit;
using Xunit.Abstractions;
namespace Synnotech.Linq2Db.MsSqlServer.Tests
{
public abstract class BaseMsSqlIntegrationTest : IAsyncLifetime
{
protected BaseMsSqlIntegrationTest(ITestOutputHelper output) => Logger = output.CreateTestLogger();
private bool AreDatabaseTestsEnabled => TestSettings.Configuration.GetValue<bool>("database:areTestsEnabled");
private ILogger? Logger { get; }
protected string ConnectionString
{
get
{
var connectionString = TestSettings.Configuration["database:connectionString"];
if (connectionString.IsNullOrWhiteSpace())
throw new InvalidConfigurationException("You must set \"database:connectionString\" when \"database:areTestsEnabled\" is set to true in testsettings.");
return connectionString;
}
}
public async Task InitializeAsync()
{
if (!AreDatabaseTestsEnabled)
return;
await Database.DropAndCreateDatabaseAsync(ConnectionString);
await Database.ExecuteNonQueryAsync(ConnectionString, this.GetEmbeddedResource("Database.sql"));
}
public Task DisposeAsync() => Task.CompletedTask;
protected void SkipTestIfNecessary() => Skip.IfNot(AreDatabaseTestsEnabled);
protected IServiceCollection PrepareContainer()
{
var services = new ServiceCollection().AddLinq2DbForSqlServer(DatabaseMappings.CreateMappings)
.AddSingleton(TestSettings.Configuration);
if (Logger != null)
services.AddLogging(builder => builder.AddSerilog(Logger));
return services;
}
}
}<file_sep>using System.Threading.Tasks;
using FluentAssertions;
using LinqToDB;
using Microsoft.Extensions.DependencyInjection;
using Synnotech.DatabaseAbstractions;
using Xunit;
using Xunit.Abstractions;
namespace Synnotech.Linq2Db.MsSqlServer.Tests
{
public sealed class AsyncSessionTests : BaseMsSqlIntegrationTest
{
public AsyncSessionTests(ITestOutputHelper output) : base(output) { }
[Fact]
public static void MustImplementIAsyncSession() =>
typeof(AsyncSession<>).Should().Implement<IAsyncSession>();
[SkippableFact]
public async Task LoadAndUpdateData()
{
SkipTestIfNecessary();
var container = PrepareContainer().AddSessionFactoryFor<IEmployeeSession, EmployeeSession>()
.BuildServiceProvider();
var sessionFactory = container.GetRequiredService<ISessionFactory<IEmployeeSession>>();
const string newName = "<NAME>";
await using (var session = await sessionFactory.OpenSessionAsync())
{
var noLongerJohn = await session.GetEmployeeAsync(1);
noLongerJohn.Name = newName;
await session.UpdateEmployeeAsync(noLongerJohn);
await session.SaveChangesAsync();
}
await using (var session = await sessionFactory.OpenSessionAsync())
{
var margaret = await session.GetEmployeeAsync(1);
margaret.Name.Should().Be(newName);
}
}
private interface IEmployeeSession : IAsyncSession
{
Task<Employee> GetEmployeeAsync(int id);
Task UpdateEmployeeAsync(Employee employee);
}
private sealed class EmployeeSession : AsyncSession, IEmployeeSession
{
public Task<Employee> GetEmployeeAsync(int id) =>
DataConnection.GetTable<Employee>().FirstAsync(e => e.Id == id);
public Task UpdateEmployeeAsync(Employee employee) =>
DataConnection.UpdateAsync(employee);
}
}
}<file_sep>using System;
using Light.GuardClauses;
using Light.GuardClauses.Exceptions;
using LinqToDB.Data;
using Microsoft.Data.SqlClient;
namespace Synnotech.Linq2Db.MsSqlServer
{
/// <summary>
/// Provides extension methods for <see cref="DataConnection" />.
/// </summary>
public static class DataConnectionExtensions
{
/// <summary>
/// Creates a <see cref="SqlCommand" /> from the DB connection that is associated
/// with the specified <paramref name="dataConnection" />. If the data connection
/// is also associated with a transaction, it will be attached to the command.
/// </summary>
/// <param name="dataConnection">The Linq2Db data connection that is used to create the command.</param>
/// <exception cref="ArgumentNullException">Thrown when <paramref name="dataConnection" /> is null.</exception>
/// <exception cref="TypeCastException">Thrown when <paramref name="dataConnection" /> is not configured to use a <see cref="SqlConnection" /> internally.</exception>
public static SqlCommand CreateSqlCommand(this DataConnection dataConnection)
{
dataConnection.MustNotBeNull(nameof(dataConnection));
var sqlConnection = dataConnection.Connection.MustBeOfType<SqlConnection>(nameof(dataConnection), $"{nameof(dataConnection)} is not configured with a {typeof(SqlConnection)}.");
var command = sqlConnection.CreateCommand();
if (dataConnection.Transaction != null)
command.Transaction = (SqlTransaction) dataConnection.Transaction;
return command;
}
}
}<file_sep>using System;
using System.Threading;
using System.Threading.Tasks;
using LinqToDB.Data;
using Synnotech.DatabaseAbstractions;
namespace Synnotech.Linq2Db.MsSqlServer
{
/// <summary>
/// Represents an asynchronous session to MS SQL Server via a Linq2Db data connection.
/// This session can be used to start and commit several transactions individually by
/// calling <see cref="BeginTransactionAsync" />. Disposing this session will also
/// dispose the underlying data connection.
/// Beware: you must not derive from this class and introduce other references to disposable objects.
/// Only DataConnection will be disposed.
/// </summary>
/// <typeparam name="TDataConnection">Your database context type that derives from <see cref="DataConnection" />.</typeparam>
public abstract class AsyncTransactionalSession<TDataConnection> : AsyncReadOnlySession<TDataConnection>, IAsyncTransactionalSession
where TDataConnection : DataConnection
{
/// <summary>
/// Initializes a new instance of <see cref="AsyncTransactionalSession{TDataConnection}" />.
/// </summary>
/// <param name="dataConnection">The Linq2Db data connection used for database access.</param>
/// <exception cref="ArgumentNullException">Thrown when <paramref name="dataConnection" /> is null.</exception>
protected AsyncTransactionalSession(TDataConnection dataConnection) : base(dataConnection) { }
/// <summary>
/// Begins a new transaction asynchronously. You must dispose the returned transaction by yourself.
/// The session will not track any of the transactions that are created via this method.
/// Furthermore, you should ensure that a previous transaction has been committed before
/// calling this method again - Linq2Db will dispose the active transaction and create a
/// new one internally.
/// </summary>
public async Task<IAsyncTransaction> BeginTransactionAsync(CancellationToken cancellationToken = default)
{
var dataConnectionTransaction = await DataConnection.BeginTransactionAsync(cancellationToken);
return new Linq2DbTransaction(dataConnectionTransaction);
}
}
/// <summary>
/// Represents an asynchronous session to MS SQL Server via a Linq2Db data connection.
/// This session can be used to start and commit several transactions individually by
/// calling BeginTransactionAsync. Disposing this session will also dispose the underlying data connection.
/// Beware: you must not derive from this class and introduce other references to disposable objects.
/// Only DataConnection will be disposed.
/// </summary>
public abstract class AsyncTransactionalSession : AsyncTransactionalSession<DataConnection>
{
/// <summary>
/// Initializes a new instance of <see cref="AsyncTransactionalSession" />.
/// </summary>
/// <param name="dataConnection">The Linq2Db data connection used for database access.</param>
/// <exception cref="ArgumentNullException">Thrown when <paramref name="dataConnection" /> is null.</exception>
protected AsyncTransactionalSession(DataConnection dataConnection) : base(dataConnection) { }
}
}<file_sep>CREATE TABLE Employees(
Id INT IDENTITY(1, 1) CONSTRAINT PK_Employees PRIMARY KEY CLUSTERED,
[Name] NVARCHAR(50) NOT NULL,
Age INT NOT NULL
);
INSERT INTO Employees ([Name], Age)
VALUES ('<NAME>', 42);
INSERT INTO Employees ([Name], Age)
VALUES ('<NAME>', 29);
INSERT INTO Employees ([Name], Age)
VALUES ('<NAME>', 39);<file_sep>using System.Threading.Tasks;
using FluentAssertions;
using LinqToDB;
using LinqToDB.Data;
using Microsoft.Extensions.DependencyInjection;
using Synnotech.DatabaseAbstractions;
using Xunit;
using Xunit.Abstractions;
namespace Synnotech.Linq2Db.MsSqlServer.Tests
{
public sealed class AsyncTransactionalSessionTests : BaseMsSqlIntegrationTest
{
public AsyncTransactionalSessionTests(ITestOutputHelper output) : base(output) { }
[Fact]
public static void MustImplementITransactionalSession() =>
typeof(AsyncTransactionalSession<>).Should().Implement<IAsyncTransactionalSession>();
[SkippableFact]
public async Task LoadAndSaveData()
{
SkipTestIfNecessary();
var container = PrepareContainer().AddTransient<Session>()
.BuildServiceProvider();
int newEmployeeId;
await using (var session = container.GetRequiredService<Session>())
await using (var transaction = await session.BeginTransactionAsync())
{
var newEmployee = new Employee { Name = "Mr. X", Age = 142 };
newEmployeeId = await session.InsertEmployeeAsync(newEmployee);
await transaction.CommitAsync();
}
await using (var session = container.GetRequiredService<Session>())
{
var employee = await session.GetEmployeeAsync(newEmployeeId);
var expectedEmployee = new Employee { Name = "Mr. X", Age = 142, Id = newEmployeeId };
employee.Should().BeEquivalentTo(expectedEmployee);
}
}
private sealed class Session : AsyncTransactionalSession
{
public Session(DataConnection dataConnection) : base(dataConnection) { }
public Task<Employee> GetEmployeeAsync(int id) =>
DataConnection.GetTable<Employee>().FirstAsync(e => e.Id == id);
public Task<int> InsertEmployeeAsync(Employee employee) =>
DataConnection.InsertWithInt32IdentityAsync(employee);
}
}
}<file_sep>using System;
using System.Data;
using System.Threading;
using System.Threading.Tasks;
using Light.GuardClauses;
using LinqToDB.Data;
using Synnotech.DatabaseAbstractions;
namespace Synnotech.Linq2Db.MsSqlServer
{
/// <summary>
/// Represents an asynchronous session to MS SQL Server via a Linq2Db data connection.
/// This session wraps a transaction which should be already started before the <see cref="DataConnection" />
/// is passed to this constructor. Calling <see cref="SaveChangesAsync" /> will commit the transaction.
/// Disposing the session will implicitly roll-back the transaction if SaveChangesAsync was not called beforehand.
/// Beware: you must not derive from this class and introduce other references to disposable objects.
/// Only the <see cref="DataConnection" /> will be disposed.
/// To easily set each session up, take a look at <see cref="ServiceCollectionExtensions.AddSessionFactoryFor{TAbstraction,TImplementation,TDataConnection}" />
/// and use the <see cref="AsyncSession{TDataConnection}(IsolationLevel)" /> constructor to define the transaction level (default is <see cref="IsolationLevel.Serializable" />.
/// </summary>
/// <typeparam name="TDataConnection">Your database context type that derives from <see cref="DataConnection" />.</typeparam>
public abstract class AsyncSession<TDataConnection> : IAsyncSession
where TDataConnection : DataConnection
{
private TDataConnection? _dataConnection;
/// <summary>
/// Initializes a new instance of <see cref="AsyncSession{TDataConnection}" />. Use this constructor if you want
/// to pass the initialized data connection with an associated transaction directly from your subclass.
/// We do not recommend calling this constructor in DI scenarios, instead use the other constructor
/// and use <see cref="ServiceCollectionExtensions.AddSessionFactoryFor{TAbstraction,TImplementation,TDataConnection}" />
/// to register your session with the DI container.
/// </summary>
/// <param name="dataConnection">
/// The Linq2Db data connection used for database access. There already must be an transaction associated with this data connection
/// when this constructor is called (i.e. you should call DataConnection.BeginTransactionAsync beforehand).
/// </param>
/// <exception cref="ArgumentNullException">Thrown when <paramref name="dataConnection" /> is null.</exception>
protected AsyncSession(TDataConnection dataConnection) => SetDataConnection(dataConnection);
/// <summary>
/// Initializes a new instance of <see cref="AsyncSession{TDataConnection}" />. Use this constructor
/// if you want to use the <see cref="ServiceCollectionExtensions.AddSessionFactoryFor{TAbstraction,TImplementation,TDataConnection}" />
/// method to register your sessions with the DI container.
/// </summary>
/// <param name="transactionLevel">The transaction level that should be applied to the underlying transaction (optional). Defaults to <see cref="IsolationLevel.Serializable" />.</param>
protected AsyncSession(IsolationLevel transactionLevel = IsolationLevel.Serializable) =>
TransactionLevel = transactionLevel;
/// <summary>
/// Gets the Linq2Db data connection.
/// </summary>
protected TDataConnection DataConnection =>
_dataConnection ?? throw new InvalidOperationException("You must not retrieve the data connection before it is set. Check the constructors for more details.");
internal IsolationLevel TransactionLevel { get; private set; }
/// <summary>
/// Disposes the Linq2Db data connection. If <see cref="SaveChangesAsync" /> has not been called,
/// then the internal transaction will be rolled back implicitly by Linq2Db.
/// </summary>
public void Dispose() => DataConnection.Dispose();
/// <summary>
/// Disposes the Linq2Db data connection. If <see cref="SaveChangesAsync" /> has not been called,
/// then the internal transaction will be rolled back implicitly by Linq2Db.
/// </summary>
public ValueTask DisposeAsync() => DataConnection.DisposeAsync();
/// <summary>
/// Commits the internal transaction.
/// </summary>
public Task SaveChangesAsync(CancellationToken cancellationToken = default) => DataConnection.CommitTransactionAsync(cancellationToken);
internal void SetDataConnection(TDataConnection dataConnection)
{
_dataConnection = dataConnection.MustNotBeNull(nameof(dataConnection));
Check.InvalidOperation(dataConnection.Transaction == null, "A transaction must have been started before the data connection is passed to AsyncSession");
TransactionLevel = dataConnection.Transaction!.IsolationLevel;
}
}
/// <summary>
/// Represents an asynchronous session to MS SQL Server via a Linq2Db data connection.
/// This session wraps a transaction which should be already started before the <see cref="DataConnection" />
/// is passed to this constructor. Calling SaveChangesAsync will commit the transaction.
/// Disposing the session will implicitly roll-back the transaction if SaveChangesAsync was not called beforehand.
/// Beware: you must not derive from this class and introduce other references to disposable objects.
/// Only the <see cref="DataConnection" /> will be disposed.
/// To easily set each session up, take a look at <see cref="ServiceCollectionExtensions.AddSessionFactoryFor{TAbstraction,TImplementation}" />
/// and use the <see cref="AsyncSession(IsolationLevel)" /> constructor to define the transaction level (default is <see cref="IsolationLevel.Serializable" />.
/// </summary>
public abstract class AsyncSession : AsyncSession<DataConnection>
{
/// <summary>
/// Initializes a new instance of <see cref="AsyncSession" />. Use this constructor if you want
/// to pass the initialized data connection with an associated transaction directly from your subclass.
/// We do not recommend calling this constructor in DI scenarios, instead use the other constructor
/// and use <see cref="ServiceCollectionExtensions.AddSessionFactoryFor{TAbstraction,TImplementation}" />
/// to register your session with the DI container.
/// </summary>
/// <param name="dataConnection">
/// The Linq2Db data connection used for database access. There already must be an transaction associated with this data connection
/// when this constructor is called (i.e. you should call DataConnection.BeginTransactionAsync beforehand).
/// </param>
/// <exception cref="ArgumentNullException">Thrown when <paramref name="dataConnection" /> is null.</exception>
protected AsyncSession(DataConnection dataConnection) : base(dataConnection) { }
/// <summary>
/// Initializes a new instance of <see cref="AsyncSession" />. Use this constructor
/// if you want to use the <see cref="ServiceCollectionExtensions.AddSessionFactoryFor{TAbstraction,TImplementation}" />
/// method to register your sessions with the DI container.
/// </summary>
/// <param name="transactionLevel">The transaction level that should be applied to the underlying transaction (optional). Defaults to <see cref="IsolationLevel.Serializable" />.</param>
protected AsyncSession(IsolationLevel transactionLevel = IsolationLevel.Serializable) : base(transactionLevel) { }
}
}<file_sep>using System;
using System.Threading.Tasks;
using Light.GuardClauses;
using LinqToDB.Data;
using Synnotech.DatabaseAbstractions;
namespace Synnotech.Linq2Db.MsSqlServer
{
/// <summary>
/// Represents an asynchronous database session via a Linq2Db data connection. This session
/// is only used to read data (i.e. no data is inserted or updated), thus SaveChangesAsync
/// is not available. No transaction is needed while this session is active.
/// Beware: you must not derive from this class and introduce other references to disposable objects.
/// Only the <see cref="DataConnection" /> will be disposed.
/// </summary>
/// <typeparam name="TDataConnection">Your database context type that derives from <see cref="DataConnection" />.</typeparam>
public abstract class AsyncReadOnlySession<TDataConnection> : IAsyncReadOnlySession
where TDataConnection : DataConnection
{
/// <summary>
/// Initializes a new instance of <see cref="AsyncReadOnlySession{TDataConnection}" />.
/// </summary>
/// <param name="dataConnection">The Linq2Db data connection used for database access.</param>
/// <exception cref="ArgumentNullException">Thrown when <paramref name="dataConnection" /> is null.</exception>
protected AsyncReadOnlySession(TDataConnection dataConnection) =>
DataConnection = dataConnection.MustNotBeNull(nameof(dataConnection));
/// <summary>
/// Gets the Linq2Db data connection.
/// </summary>
protected TDataConnection DataConnection { get; }
/// <summary>
/// Disposes the Linq2Db data connection.
/// </summary>
public void Dispose() => DataConnection.Dispose();
/// <summary>
/// Disposes the Linq2Db data connection.
/// </summary>
public ValueTask DisposeAsync() => DataConnection.DisposeAsync();
}
/// <summary>
/// Represents an asynchronous database session via a Linq2Db data connection. This session
/// is only used to read data (i.e. no data is inserted or updated), thus SaveChangesAsync
/// is not available. No transaction is needed while this session is active.
/// Beware: you must not derive from this class and introduce other references to disposable objects.
/// Only the DataConnection will be disposed.
/// </summary>
public abstract class AsyncReadOnlySession : AsyncReadOnlySession<DataConnection>
{
/// <summary>
/// Initializes a new instance of <see cref="AsyncReadOnlySession" />.
/// </summary>
/// <param name="dataConnection">The Linq2Db data connection used for database access.</param>
/// <exception cref="ArgumentNullException">Thrown when <paramref name="dataConnection" /> is null.</exception>
protected AsyncReadOnlySession(DataConnection dataConnection) : base(dataConnection) { }
}
}<file_sep>using System;
using System.Diagnostics;
using Light.GuardClauses;
using LinqToDB.Configuration;
using LinqToDB.Data;
using LinqToDB.DataProvider;
using LinqToDB.DataProvider.SqlServer;
using LinqToDB.Mapping;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;
using Synnotech.DatabaseAbstractions;
namespace Synnotech.Linq2Db.MsSqlServer
{
/// <summary>
/// Provides extension methods to setup Linq2Db in a DI Container that supports <see cref="IServiceCollection" />.
/// </summary>
public static class ServiceCollectionExtensions
{
/// <summary>
/// Registers several Linq2Db types with the DI container, especially a <see cref="DataConnection" /> (using a transient lifetime by default). The data connection
/// is instantiated by passing a singleton instance of <see cref="LinqToDbConnectionOptions" /> which is created from <see cref="Linq2DbSettings" />.
/// The latter is also available as a singleton and retrieved from the <see cref="IConfiguration" /> instance (which should already be registered with the DI container).
/// Then a <see cref="IDataProvider" /> using Microsoft.Data.SqlClient internally is created and registered as a singleton as well. The <paramref name="createMappings" />
/// delegate is applied to the mapping schema of the data provider.
/// </summary>
/// <param name="services">The collection that is used to register all necessary types with the DI container.</param>
/// <param name="createMappings">
/// The delegate that manipulates the mapping schema of the data provider (optional). Alternatively, you could use the Linq2Db attributes to configure
/// your model classes, but we strongly recommend that you use the Linq2Db <see cref="FluentMappingBuilder" /> to specify how model classes are mapped.
/// </param>
/// <param name="configurationSectionName">The name of the configuration section that is used to retrieve the <see cref="Linq2DbSettings"/>.</param>
/// <param name="dataConnectionLifetime">
/// The lifetime that is used for the data connection (optional). The default value is <see cref="ServiceLifetime.Transient" />. If you want to, you
/// can exchange it with <see cref="ServiceLifetime.Scoped" />.
/// </param>
/// <param name="registerFactoryDelegateForDataConnection">
/// The value indicating whether a <see cref="Func{DataConnection}" /> should also be registered with the DI container (optional). The default value is true.
/// You can set this value to false if you use a proper DI container like LightInject that offers function factories. https://www.lightinject.net/#function-factories
/// </param>
/// <exception cref="ArgumentNullException">Thrown when <paramref name="services" /> is null.</exception>
public static IServiceCollection AddLinq2DbForSqlServer(this IServiceCollection services,
Action<MappingSchema>? createMappings = null,
string configurationSectionName = Linq2DbSettings.DefaultSectionName,
ServiceLifetime dataConnectionLifetime = ServiceLifetime.Transient,
bool registerFactoryDelegateForDataConnection = true)
{
services.MustNotBeNull(nameof(services));
services.AddSingleton(container => Linq2DbSettings.FromConfiguration(container.GetRequiredService<IConfiguration>(), configurationSectionName))
.AddSingleton(container => CreateSqlServerDataProvider(container.GetRequiredService<Linq2DbSettings>().SqlServerVersion, createMappings))
.AddSingleton(container =>
{
var settings = container.GetRequiredService<Linq2DbSettings>();
return CreateLinq2DbConnectionOptions(container.GetRequiredService<IDataProvider>(),
settings.ConnectionString,
settings.TraceLevel,
container.GetService<ILogger<DataConnection>>());
})
.Add(new ServiceDescriptor(typeof(DataConnection), container => new DataConnection(container.GetRequiredService<LinqToDbConnectionOptions>()), dataConnectionLifetime));
if (registerFactoryDelegateForDataConnection)
services.AddSingleton<Func<DataConnection>>(container => container.GetRequiredService<DataConnection>);
return services;
}
/// <summary>
/// Creates an <see cref="IDataProvider" /> that uses Microsoft.Data.SqlClient internally.
/// </summary>
/// <param name="sqlServerVersion">The SQL Server version of the target database (optional). Defaults to <see cref="SqlServerVersion.v2017" />.</param>
/// <param name="createMappings">
/// The delegate that manipulates the mapping schema of the data provider (optional). Alternatively, you could use the Linq2Db attributes to configure
/// your model classes, but we strongly recommend that you use the Linq2Db <see cref="FluentMappingBuilder" /> to specify how model classes are mapped.
/// </param>
public static IDataProvider CreateSqlServerDataProvider(SqlServerVersion sqlServerVersion = SqlServerVersion.v2017, Action<MappingSchema>? createMappings = null)
{
var dataProvider = SqlServerTools.GetDataProvider(sqlServerVersion, SqlServerProvider.MicrosoftDataSqlClient);
createMappings?.Invoke(dataProvider.MappingSchema);
return dataProvider;
}
/// <summary>
/// Creates the default <see cref="LinqToDbConnectionOptions" />. <paramref name="traceLevel" /> and <paramref name="logger" />
/// are optional but need to be set together if a level other than <see cref="TraceLevel.Off" /> is used.
/// </summary>
/// <param name="dataProvider">The Linq2Db data provider used to create database-specific queries.</param>
/// <param name="connectionString">The connection string for the target database.</param>
/// <param name="traceLevel">The level that is used to log data connection messages (optional). Defaults to <see cref="TraceLevel.Off" />.</param>
/// <param name="logger">The logger for <see cref="DataConnection" /> when <paramref name="traceLevel" /> is set to a value other than <see cref="TraceLevel.Off" />.</param>
/// <exception cref="NullReferenceException">Thrown when <paramref name="dataProvider" /> or <paramref name="connectionString" /> are null.</exception>
/// <exception cref="ArgumentException">
/// Thrown when <paramref name="traceLevel" /> is set to a value other than <see cref="TraceLevel.Off" /> and <paramref name="logger" /> is null -
/// or when <paramref name="connectionString" /> is an empty string or contains only white space.
/// </exception>
public static LinqToDbConnectionOptions CreateLinq2DbConnectionOptions(IDataProvider dataProvider,
string connectionString,
TraceLevel traceLevel = TraceLevel.Off,
ILogger<DataConnection>? logger = null)
{
dataProvider.MustNotBeNull(nameof(dataProvider));
connectionString.MustNotBeNullOrWhiteSpace(nameof(connectionString));
var optionsBuilder = new LinqToDbConnectionOptionsBuilder().UseConnectionString(dataProvider, connectionString)
.WithTraceLevel(traceLevel);
if (traceLevel == TraceLevel.Off)
return optionsBuilder.Build();
if (logger == null)
throw new ArgumentException($"You must provide a logger when traceLevel is set to \"{traceLevel}\".", nameof(logger));
return optionsBuilder.WithTraceLevel(traceLevel)
.WriteTraceWith(logger.LogLinq2DbMessage)
.Build();
}
/// <summary>
/// Uses an <see cref="ILogger" /> instance to log a Linq2Db data connection trace message.
/// The different trace levels are mapped to the different log levels.
/// </summary>
public static void LogLinq2DbMessage(this ILogger logger, string? message, string? category, TraceLevel traceLevel)
{
logger.MustNotBeNull(nameof(logger));
if (message.IsNullOrWhiteSpace())
return;
switch (traceLevel)
{
case TraceLevel.Off:
break;
case TraceLevel.Error:
logger.LogError(message);
break;
case TraceLevel.Warning:
logger.LogWarning(message);
break;
case TraceLevel.Info:
logger.LogInformation(message);
break;
case TraceLevel.Verbose:
logger.LogDebug(message);
break;
default:
throw new ArgumentOutOfRangeException(nameof(traceLevel), traceLevel, $"The trace level \"{traceLevel}\" is unknown.");
}
}
/// <summary>
/// Registers an <see cref="ISessionFactory{TAbstraction}" /> for the specified session. You can inject this session factory
/// into client code to resolve your session asynchronously. When resolved, a new data connection is created, a connection to
/// the target database is opened asynchronously, and a transaction is started. The data connection is then passed to your
/// custom session type. See <see cref="SessionFactory{TAbstraction,TImplementation,TDataConnection}" /> for details.
/// <code>
/// public class MySessionClient
/// {
/// public MySessionClient(ISessionFactory<IMySession> sessionFactory) =>
/// SessionFactory = sessionFactory;
///
/// // IMySession must derive from IAsyncSession
/// private ISessionFactory<IMySession> SessionFactory { get; }
///
/// public async Task SomeMethod()
/// {
/// await using var session = await SessionFactory.OpenSessionAsync();
/// // do something useful with your session
/// }
/// }
/// </code>
/// </summary>
/// <typeparam name="TAbstraction">The interface that your session implements. It must implement <see cref="IAsyncSession" />.</typeparam>
/// <typeparam name="TImplementation">The Linq2Db session implementation that performs the actual database I/O. It must derive from <see cref="AsyncSession{TDataConnection}" />.</typeparam>
/// <typeparam name="TDataConnection">Your custom data connection subtype that you use in your solution.</typeparam>
/// <param name="services">The collection that holds all registrations for the DI container.</param>
/// <param name="factoryLifetime">The lifetime for the session factory. It's usually ok for them to be a singleton.</param>
/// <exception cref="ArgumentNullException">Thrown when <paramref name="services" /> is null.</exception>
public static IServiceCollection AddSessionFactoryFor<TAbstraction, TImplementation, TDataConnection>(this IServiceCollection services, ServiceLifetime factoryLifetime = ServiceLifetime.Singleton)
where TAbstraction : IAsyncSession
where TImplementation : AsyncSession<TDataConnection>, TAbstraction, new()
where TDataConnection : DataConnection
{
services.MustNotBeNull(nameof(services))
.Add(new ServiceDescriptor(typeof(ISessionFactory<TAbstraction>), typeof(SessionFactory<TAbstraction, TImplementation, TDataConnection>), factoryLifetime));
return services;
}
/// <summary>
/// Registers an <see cref="ISessionFactory{TAbstraction}" /> for the specified session. You can inject this session factory
/// into client code to resolve your session asynchronously. When resolved, a new data connection is created, a connection to
/// the target database is opened asynchronously, and a transaction is started. The data connection is then passed to your
/// custom session type. See <see cref="SessionFactory{TAbstraction,TImplementation,TDataConnection}" /> for details.
/// <code>
/// public class MySessionClient
/// {
/// public MySessionClient(ISessionFactory<IMySession> sessionFactory) =>
/// SessionFactory = sessionFactory;
///
/// // IMySession must derive from IAsyncSession
/// private ISessionFactory<IMySession> SessionFactory { get; }
///
/// public async Task SomeMethod()
/// {
/// await using var session = await SessionFactory.OpenSessionAsync();
/// // do something useful with your session
/// }
/// }
/// </code>
/// </summary>
/// <typeparam name="TAbstraction">The interface that your session implements. It must implement <see cref="IAsyncSession" />.</typeparam>
/// <typeparam name="TImplementation">The Linq2Db session implementation that performs the actual database I/O. It must derive from <see cref="AsyncSession{TDataConnection}" />.</typeparam>
/// <param name="services">The collection that holds all registrations for the DI container.</param>
/// <param name="factoryLifetime">The lifetime for the session factory. It's usually ok for them to be a singleton.</param>
/// <exception cref="ArgumentNullException">Thrown when <paramref name="services" /> is null.</exception>
public static IServiceCollection AddSessionFactoryFor<TAbstraction, TImplementation>(this IServiceCollection services, ServiceLifetime factoryLifetime = ServiceLifetime.Singleton)
where TAbstraction : IAsyncSession
where TImplementation : AsyncSession, TAbstraction, new() =>
services.AddSessionFactoryFor<TAbstraction, TImplementation, DataConnection>(factoryLifetime);
}
}<file_sep>using LinqToDB.Mapping;
namespace Synnotech.Linq2Db.MsSqlServer.Tests
{
public static class DatabaseMappings
{
public static void CreateMappings(MappingSchema mappingSchema)
{
var builder = mappingSchema.GetFluentMappingBuilder();
builder.Entity<Employee>()
.HasTableName("Employees")
.Property(e => e.Id).IsIdentity().IsPrimaryKey()
.Property(e => e.Name).HasLength(50).IsNullable(false)
.Property(e => e.Age).IsNullable(false);
}
}
} | ee68afbd399b4c8e2b89130a4245dac94c915e2c | [
"Markdown",
"C#",
"SQL"
] | 16 | C# | Synnotech-AG/Synnotech.Linq2Db.MsSqlServer | 6e3326a099d46924f566b1279bb6a18a4e717b50 | 46ca97be7e09907de21d27e81a6ca9bf25ed6c51 |
refs/heads/master | <repo_name>tinyu0105/-<file_sep>/找出最大最小值.cpp
#include<iostream>
using namespace std;
int main()
{
int A[]={1,3,2,89,53};
int i,min=A[0],max=A[0]; //先將最小值和最大值設為A[0]
int length=sizeof(A)/sizeof(int); //將陣列A的總長度(5*4)除以int型態的長度 (4)
cout<<"sizeof(A) are "<<sizeof(A)<<endl;
cout<<"sizeof(int) are "<<sizeof(int)<<endl;
cout<<"elements in array A are ";
for(i=0;i<length;i++)
{
cout<<A[i]<<" ";
//-------判斷最大最小值
if(A[i]>max)
{
max=A[i];
}
if(A[i]<min)
{
min=A[i];
}
}
cout<<endl<<" Maximum is "<<max;
cout<<endl<<" Minimum is "<<min;
return 0;
}
| 1c262d1a175f32df8343464f550a533cfd30e1d9 | [
"C++"
] | 1 | C++ | tinyu0105/- | d7f8dc95eee9b0fd1f16bfbe4293204014263b18 | 6073b9fa74305226cbdaeef5aa26c47f24ed737d |
refs/heads/master | <repo_name>Rundaingne/PairsRetake<file_sep>/PairsRetake/Models/Entity.swift
//
// Entity.swift
// PairsRetake
//
// Created by <NAME> on 5/27/19.
// Copyright © 2019 Rund LLC. All rights reserved.
//
import Foundation
class Entity: Codable {
var name: String
var grouping: String?
let timestamp: Date
init(name: String, grouping: String?, timestamp: Date = Date()) {
self.name = name
self.grouping = grouping
self.timestamp = timestamp
}
}
extension Entity: Equatable {
static func ==(lhs: Entity, rhs: Entity) -> Bool {
return lhs.name == rhs.name && lhs.grouping == rhs.grouping && lhs.timestamp == rhs.timestamp
}
}
<file_sep>/PairsRetake/Controllers/View Controllers/PairsTableViewController.swift
//
// PairsTableViewController.swift
// PairsRetake
//
// Created by <NAME> on 5/27/19.
// Copyright © 2019 Rund LLC. All rights reserved.
//
import UIKit
class PairsTableViewController: UITableViewController {
//MARK: -IBOutlets
@IBOutlet weak var entityNameTextField: UITextField!
@IBOutlet weak var entityGroupingTextField: UITextField!
let entities = EntityController.shared.entities
override func viewDidLoad() {
super.viewDidLoad()
}
// MARK: - Table view data source
override func numberOfSections(in tableView: UITableView) -> Int {
return EntityController.shared.pairs.count
}
override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
let pair = EntityController.shared.pairs[section]
return pair.count
}
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "pairCell", for: indexPath)
let pair = EntityController.shared.pairs[indexPath.section]
let entity = pair[indexPath.row]
cell.textLabel?.text = entity.name
cell.detailTextLabel?.text = entity.grouping
return cell
}
override func tableView(_ tableView: UITableView, titleForHeaderInSection section: Int) -> String? {
return "Group number: \(section + 1)"
}
func randomize(entities: [Entity]) {
//I need to first shuffle the array of entities, and then reload the data.
for _ in 0..<entities.count {
}
var copy = entities
copy.sort{_,_ in (arc4random() < arc4random())}
copy = entities
self.tableView.reloadData()
}
// func realRandomize(entities: [Entity]) {
//// var copy = entities
// var newEntities: [Entity] = []
// //I need to move things around in this array.
// for entity in entities {
// newEntities.insert(entity, at: 2)
// }
// EntityController.shared.entities = newEntities
// self.tableView.reloadData()
// }
//MARK: -Actions
@IBAction func addEntityButtonTapped(_ sender: UIButton) {
guard let name = entityNameTextField.text, name != "", let grouping = entityGroupingTextField.text else {return}
EntityController.shared.createEntity(name: name, grouping: grouping)
entityNameTextField.text = ""
entityGroupingTextField.text = ""
self.tableView.reloadData()
}
@IBAction func randomizePairsButtonTapped(_ sender: UIButton) {
randomize(entities: EntityController.shared.entities)
// realRandomize(entities: EntityController.shared.entities)
}
}
<file_sep>/PairsRetake/Controllers/Model Controllers/EntityController.swift
//
// EntityController.swift
// PairsRetake
//
// Created by <NAME> on 5/27/19.
// Copyright © 2019 Rund LLC. All rights reserved.
//
import Foundation
class EntityController {
static let shared = EntityController()
private init() {}
var entities: [Entity] = []
var pairs: [[Entity]] {
var shuffledEntities = entities.shuffled()
var bigArray: [[Entity]] = []
var smallArray: [Entity] = []
while !shuffledEntities.isEmpty {
if smallArray.count == 2 {
let copyArray = smallArray
bigArray.append(copyArray)
smallArray = []
}
smallArray.append(shuffledEntities.removeLast())
}
if !smallArray.isEmpty {
bigArray.append(smallArray)
}
return bigArray
}
// var realPairs: [[Entity]] {
// var newPairs: [[Entity]] = []
// var pair: [Entity] = []
// var copy = entities
// //Check if any entities are the same.
// let randomIndex = Int.random(in: 0..<copy.count)
// let original = copy.remove(at: randomIndex)
// while !copy.isEmpty {
// if pair.count == 2 {
// let copy = pair
//// pair.append(copy)
// pair = []
// }
// if original == copy.remove(at: randomIndex) {
// assert(false)
// } else {
// pair.append(copy.remove(at: randomIndex))
// }
//
//
// }
// return newPairs
// }
func createEntity(name: String, grouping: String?) {
let entity = Entity(name: name, grouping: grouping)
entities.append(entity)
save()
}
func deleteEntity(entity: Entity) {
guard let index = entities.firstIndex(of: entity) else {return}
entities.remove(at: index)
save()
}
func fileURL() -> URL {
let paths = FileManager.default.urls(for: .documentDirectory, in: .userDomainMask)
let documentsDirectory = paths[0]
let filename = "name.json"
let fullURL = documentsDirectory.appendingPathComponent(filename)
return fullURL
}
func save() {
let encoder = JSONEncoder()
do {
let data = try encoder.encode(entities)
try data.write(to: fileURL())
} catch {
print("There was an error in \(#function): \(error) \(error.localizedDescription)")
}
}
func load() {
let decoder = JSONDecoder()
do {
let data = try Data(contentsOf: fileURL())
let entities = try decoder.decode([Entity].self, from: data)
self.entities = entities
} catch {
print("There was an error in \(#function): \(error) \(error.localizedDescription)")
}
}
}
| a91429c8201bbebc7cfbb6d54503e5e6863d70f7 | [
"Swift"
] | 3 | Swift | Rundaingne/PairsRetake | a4e81582ed265e1c46671ca9552ccceb60f791a1 | 185d744044d7e68cd4b17634e8e8eeafaa34b6cd |
refs/heads/master | <file_sep>import argparse
import nmap
def main():
parser = argparse.ArgumentParser()
parser.add_argument('-H',dest='targetHost',type=str,help='目标主机')
parser.add_argument('-P',dest='targetPort',type=str,help='目标端口')
args = parser.parse_args()
targetHost = args.targetHost
targetPorts = str(args.targetPort).split(',')
if (targetHost == None) or (targetPorts[0] == None):
print('\n你必须传入一个主机名或地址及端口号')
exit(0)
#扫描开始--------------------
for targetPort in targetPorts:
nmapScan(targetHost,targetPort)
#---------------------------
def nmapScan(targetHost,targetPort):
nmScan = nmap.PortScanner()
nmScan.scan(targetHost,targetPort)
state = nmScan[targetHost]['tcp'][int(targetPort)]['state']
print('[*]' + targetHost + ' tcp/' + targetPort + ' ' + state)
if __name__ == '__main__':
main()
<file_sep>import argparse
import threading
import socket
from socket import *
screenLock = threading.Semaphore(value=1)
def main():
parser = argparse.ArgumentParser()
parser.add_argument('-H',dest='targetHost',type=str,help='目标主机')
parser.add_argument('-P',dest='targetPorts',type=int,nargs='+',help='目标端口')
args = parser.parse_args()
targetHost = args.targetHost
targetPorts = args.targetPorts
if (targetHost == None) or (targetPorts[0] == None):
print('\n你必须传入一个主机名或地址及端口号')
exit(0)
#扫描开始--------------------
print('连接主机' + targetHost)
portScan(targetHost,targetPorts)
#---------------------------
def connScan(targetHost,targetPort):
try:
connSkt = socket(AF_INET,SOCK_STREAM)
connSkt.connect((targetHost,targetPort))
connSkt.send("ViolentPython\r\n".encode())
results = connSkt.recv(100)
screenLock.acquire()
print('%d/TCP open' % targetPort)
print(str(results))
except:
screenLock.acquire()
#print('%d/TCP closed' % targetPort)
finally:
screenLock.release()
connSkt.close()
def portScan(targetHost,targetPorts):
try:
targetIP = gethostbyname(targetHost)
except:
print('Can not resolve %s: Unknow host' % targetHost)
return
try:
targetName = gethostbyaddr(targetIP)
print('Scan result for:' + targetName)
except:
print('Scan result for:' + targetIP)
setdefaulttimeout(1)
for targetPort in targetPorts:
#print('ScanPort:' + str(targetPort))
t = threading.Thread(target=connScan,args=(targetHost,targetPort))
t.start()
if __name__ == '__main__':
main()
<file_sep>import argparse
import nmap
nmScan = nmap.PortScanner()
phost = '*'
nmScan.scan(phost,'22')
print(nmScan.scaninfo())
#state = nmScan[targetHost]['tcp'][int(targetPort)]['state']
#print('[*]' + targetHost + ' tcp/' + targetPort + ' ' + state)
print('[*]' + phost + ' tcp/' + '22' + ' ' + 'State:%s' % nmScan[phost]['tcp'][int('22')])
<file_sep>#!/usr/bin/python3
# -*- coding: utf-8 -*-
import argparse
import socket
import threading
from socket import *
openNum = 0
threads = []
targetPorts = []
parser = argparse.ArgumentParser()
parser.add_argument('-H',dest='targetHost',type=str,help='目标主机')
#parser.add_argument('-P',dest='targetPorts',type=int,nargs='+',help='目标端口')
args = parser.parse_args()
targetHost = args.targetHost.strip()
#targetPorts = args.targetPorts
if targetHost == None:
print('\n你必须传入一个主机名或地址及端口号')
exit(0)
#测试命令行传参--------------
print(targetHost)
#---------------------------
def connScan(targetHost,targetPort):
global openNum
try:
connSkt = socket(AF_INET,SOCK_STREAM)
connSkt.connect((targetHost,targetPort))
print('%s 端口开放' % str(targetPort))
openNum = openNum + 1
lock.acquire()
print('%d/TCP open' % targetPort)
lock.release()
connSkt.close()
except:
pass
#print('%s端口关闭' % targetPort)
def portScan(targetHost,targetPort):
try:
targetIP = gethostbyname(targetHost)
except:
print('Can not resolve %s: Unknow host' % targetHost)
return
connScan(targetHost,targetPort)
def main():
for Ports in range(1,1081):
targetPorts.append(Ports)
setdefaulttimeout(1)
for p in targetPorts:
t = threading.Thread(target=portScan,args=(targetHost,p))
threads.append(t)
t.start()
for t in threads:
t.join()
print('端口测试完成,有%s个开放' % str(openNum))
if __name__ == '__main__':
main()
<file_sep>import requests,bs4
import io
import sys
import time
print('KITE')
#sys.stdout = io.TextIOWrapper(sys.stdout.buffer,encoding='utf-8') #改变标准输出的默认编码
#爬取天气网页
begintime = time.time()
res7 = requests.get('https://kite.com/docs/python/threading.Semaphore')
res7.encoding = 'utf-8'
res7.raise_for_status()
Webhtml7 = bs4.BeautifulSoup(res7.text,"html5lib")
print(Webhtml7)
endtime = time.time()
print('运行时间为:'+str(endtime-begintime)+'s')
<file_sep>#安装依赖包 pip install scapy-python3
from scapy.all import *
pcap = sniff(iface=conf.iface,count=50)
print(pcap)
print(conf.iface)
wrpcap('demo.pcap', pcap)
| bab43f89075a2a13d19326331679bb04813ccb81 | [
"Python"
] | 6 | Python | hfxssfff/Python_test | f76517e66b796281219fe8e14afbf98f8a0563dc | d1a6b84aa78951ff6c644e88ae03a528e49ac65b |
refs/heads/master | <file_sep>/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package interfaz;
import clases.Helper;
import javax.swing.JButton;
import javax.swing.JOptionPane;
import javax.swing.table.DefaultTableModel;
//import
/**
*
* @author trodrigu7
*/
public class Principal extends javax.swing.JFrame {
/**
* Creates new form Principal
*/
public Principal() {
initComponents();
JButton botonesH[] = {cmdCrear, cmdLImpiar};
JButton botonesD[] = {cmdLlenadoAuto, cmdLlenadoManual, cmdOperaciones};
Helper.habilitarBotones(botonesH);
Helper.deshabilitarBotones(botonesD);
}
/**
* This method is called from within the constructor to initialize the form.
* WARNING: Do NOT modify this code. The content of this method is always
* regenerated by the Form Editor.
*/
@SuppressWarnings("unchecked")
// <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents
private void initComponents() {
jPanel1 = new javax.swing.JPanel();
jLabel1 = new javax.swing.JLabel();
jPanel2 = new javax.swing.JPanel();
jLabel2 = new javax.swing.JLabel();
jLabel3 = new javax.swing.JLabel();
txtNumColumnas = new javax.swing.JTextField();
txtNumFilas = new javax.swing.JTextField();
jPanel3 = new javax.swing.JPanel();
cmdCrear = new javax.swing.JButton();
cmdLlenadoManual = new javax.swing.JButton();
cmdLlenadoAuto = new javax.swing.JButton();
cmdOperaciones = new javax.swing.JButton();
cmdLImpiar = new javax.swing.JButton();
jScrollPane1 = new javax.swing.JScrollPane();
tblTablaResultado = new javax.swing.JTable();
jScrollPane2 = new javax.swing.JScrollPane();
tblTablaInicial = new javax.swing.JTable();
cmbOperacion = new javax.swing.JComboBox();
jPanel4 = new javax.swing.JPanel();
jScrollPane3 = new javax.swing.JScrollPane();
txtResultado = new javax.swing.JTextArea();
setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
setResizable(false);
jPanel1.setLayout(new org.netbeans.lib.awtextra.AbsoluteLayout());
jLabel1.setFont(new java.awt.Font("Cambria Math", 1, 18)); // NOI18N
jLabel1.setText("Operaciones Matrices");
jPanel1.add(jLabel1, new org.netbeans.lib.awtextra.AbsoluteConstraints(440, 20, -1, -1));
jPanel2.setBorder(javax.swing.BorderFactory.createTitledBorder(null, "Datos Iniciales", javax.swing.border.TitledBorder.DEFAULT_JUSTIFICATION, javax.swing.border.TitledBorder.DEFAULT_POSITION, new java.awt.Font("Cambria Math", 1, 14))); // NOI18N
jPanel2.setLayout(new org.netbeans.lib.awtextra.AbsoluteLayout());
jLabel2.setFont(new java.awt.Font("Cambria Math", 0, 14)); // NOI18N
jLabel2.setText("N° Columnas:");
jPanel2.add(jLabel2, new org.netbeans.lib.awtextra.AbsoluteConstraints(150, 40, -1, 30));
jLabel3.setFont(new java.awt.Font("Cambria Math", 0, 14)); // NOI18N
jLabel3.setText("N° Filas:");
jPanel2.add(jLabel3, new org.netbeans.lib.awtextra.AbsoluteConstraints(20, 40, -1, 30));
txtNumColumnas.setFont(new java.awt.Font("Cambria Math", 0, 14)); // NOI18N
jPanel2.add(txtNumColumnas, new org.netbeans.lib.awtextra.AbsoluteConstraints(250, 40, 60, -1));
txtNumFilas.setFont(new java.awt.Font("Cambria Math", 0, 14)); // NOI18N
jPanel2.add(txtNumFilas, new org.netbeans.lib.awtextra.AbsoluteConstraints(80, 40, 50, -1));
jPanel1.add(jPanel2, new org.netbeans.lib.awtextra.AbsoluteConstraints(20, 60, 330, 90));
jPanel3.setBorder(javax.swing.BorderFactory.createTitledBorder(null, "Opciones", javax.swing.border.TitledBorder.DEFAULT_JUSTIFICATION, javax.swing.border.TitledBorder.DEFAULT_POSITION, new java.awt.Font("Cambria Math", 1, 14))); // NOI18N
jPanel3.setLayout(new org.netbeans.lib.awtextra.AbsoluteLayout());
cmdCrear.setFont(new java.awt.Font("Cambria Math", 0, 14)); // NOI18N
cmdCrear.setText("Crear");
cmdCrear.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
cmdCrearActionPerformed(evt);
}
});
jPanel3.add(cmdCrear, new org.netbeans.lib.awtextra.AbsoluteConstraints(40, 40, 90, 30));
cmdLlenadoManual.setFont(new java.awt.Font("Cambria Math", 0, 14)); // NOI18N
cmdLlenadoManual.setText("Manual");
cmdLlenadoManual.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
cmdLlenadoManualActionPerformed(evt);
}
});
jPanel3.add(cmdLlenadoManual, new org.netbeans.lib.awtextra.AbsoluteConstraints(160, 40, 90, 30));
cmdLlenadoAuto.setFont(new java.awt.Font("Cambria Math", 0, 14)); // NOI18N
cmdLlenadoAuto.setText("Automático");
cmdLlenadoAuto.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
cmdLlenadoAutoActionPerformed(evt);
}
});
jPanel3.add(cmdLlenadoAuto, new org.netbeans.lib.awtextra.AbsoluteConstraints(280, 40, 120, 30));
cmdOperaciones.setFont(new java.awt.Font("Cambria Math", 0, 14)); // NOI18N
cmdOperaciones.setText("Operación");
cmdOperaciones.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
cmdOperacionesActionPerformed(evt);
}
});
jPanel3.add(cmdOperaciones, new org.netbeans.lib.awtextra.AbsoluteConstraints(430, 40, 120, 30));
cmdLImpiar.setFont(new java.awt.Font("Cambria Math", 0, 14)); // NOI18N
cmdLImpiar.setText("Limpiar");
cmdLImpiar.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
cmdLImpiarActionPerformed(evt);
}
});
jPanel3.add(cmdLImpiar, new org.netbeans.lib.awtextra.AbsoluteConstraints(590, 40, 110, 30));
jPanel1.add(jPanel3, new org.netbeans.lib.awtextra.AbsoluteConstraints(350, 60, 740, 90));
tblTablaResultado.setModel(new javax.swing.table.DefaultTableModel(
new Object [][] {
},
new String [] {
}
));
jScrollPane1.setViewportView(tblTablaResultado);
jPanel1.add(jScrollPane1, new org.netbeans.lib.awtextra.AbsoluteConstraints(630, 160, -1, 260));
tblTablaInicial.setModel(new javax.swing.table.DefaultTableModel(
new Object [][] {
},
new String [] {
}
));
jScrollPane2.setViewportView(tblTablaInicial);
jPanel1.add(jScrollPane2, new org.netbeans.lib.awtextra.AbsoluteConstraints(20, 160, -1, 260));
cmbOperacion.setModel(new javax.swing.DefaultComboBoxModel(new String[] { "Recorrido1", "Recorrido2", "Recorrido3" }));
jPanel1.add(cmbOperacion, new org.netbeans.lib.awtextra.AbsoluteConstraints(490, 290, -1, -1));
jPanel4.setBorder(javax.swing.BorderFactory.createTitledBorder(null, "Resultado", javax.swing.border.TitledBorder.DEFAULT_JUSTIFICATION, javax.swing.border.TitledBorder.DEFAULT_POSITION, new java.awt.Font("Cambria Math", 1, 14))); // NOI18N
jPanel4.setLayout(new org.netbeans.lib.awtextra.AbsoluteLayout());
txtResultado.setColumns(20);
txtResultado.setRows(5);
jScrollPane3.setViewportView(txtResultado);
jPanel4.add(jScrollPane3, new org.netbeans.lib.awtextra.AbsoluteConstraints(20, 20, 650, 60));
jPanel1.add(jPanel4, new org.netbeans.lib.awtextra.AbsoluteConstraints(210, 430, 700, 100));
javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
getContentPane().setLayout(layout);
layout.setHorizontalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createSequentialGroup()
.addComponent(jPanel1, javax.swing.GroupLayout.PREFERRED_SIZE, 1112, javax.swing.GroupLayout.PREFERRED_SIZE)
.addGap(0, 0, Short.MAX_VALUE))
);
layout.setVerticalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createSequentialGroup()
.addComponent(jPanel1, javax.swing.GroupLayout.PREFERRED_SIZE, 558, javax.swing.GroupLayout.PREFERRED_SIZE)
.addGap(0, 0, Short.MAX_VALUE))
);
setSize(new java.awt.Dimension(1128, 597));
setLocationRelativeTo(null);
}// </editor-fold>//GEN-END:initComponents
private void cmdCrearActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_cmdCrearActionPerformed
// TODO add your handling code here:
int nf, nc;
DefaultTableModel tm, tm2;
nf = Integer.parseInt(txtNumFilas.getText());
nc = Integer.parseInt(txtNumColumnas.getText());
tm = (DefaultTableModel) tblTablaInicial.getModel();
tm2 = (DefaultTableModel) tblTablaResultado.getModel();
tm.setRowCount(nf);
tm.setColumnCount(nc);
tm2.setRowCount(nf);
tm2.setColumnCount(nc);
JButton botonesH[] = {cmdLlenadoAuto, cmdLlenadoManual, cmdLImpiar};
JButton botonesD[] = {cmdCrear, cmdOperaciones};
Helper.habilitarBotones(botonesH);
Helper.deshabilitarBotones(botonesD);
}//GEN-LAST:event_cmdCrearActionPerformed
private void cmdLlenadoAutoActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_cmdLlenadoAutoActionPerformed
// TODO add your handling code here:
int nf, nc, n;
nf = tblTablaInicial.getRowCount();
nc = tblTablaInicial.getColumnCount();
for (int i = 0; i < nf; i++) {
for (int j = 0; j < nc; j++) {
n = (int) (Math.random() * 50 + 1);
tblTablaInicial.setValueAt(n, i, j);
}
}
JButton botonesH[] = {cmdLImpiar, cmdOperaciones};
JButton botonesD[] = {cmdCrear, cmdLlenadoAuto, cmdLlenadoManual};
Helper.habilitarBotones(botonesH);
Helper.deshabilitarBotones(botonesD);
}//GEN-LAST:event_cmdLlenadoAutoActionPerformed
private void cmdOperacionesActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_cmdOperacionesActionPerformed
// TODO add your handling code here:
int op, cantPares;
op = cmbOperacion.getSelectedIndex();
Helper.limpiadoTabla(tblTablaResultado);
switch (op) {
case 0:
txtResultado.setText(Helper.recorrido1(tblTablaInicial));
break;
case 1:
txtResultado.setText(Helper.recorrido2(tblTablaInicial));
break;
case 2:
txtResultado.setText(Helper.recorrido3(tblTablaInicial));
break;
}
JButton botonesH[] = {cmdOperaciones, cmdLImpiar};
JButton botonesD[] = {cmdLlenadoAuto, cmdLlenadoManual, cmdCrear};
Helper.habilitarBotones(botonesH);
Helper.deshabilitarBotones(botonesD);
}//GEN-LAST:event_cmdOperacionesActionPerformed
private void cmdLImpiarActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_cmdLImpiarActionPerformed
// TODO add your handling code here:
txtNumFilas.setText("");
txtNumColumnas.setText("");
txtNumFilas.requestFocusInWindow();
cmbOperacion.setSelectedIndex(0);
txtResultado.setText("");
Helper.porDefectoTabla(tblTablaInicial);
Helper.porDefectoTabla(tblTablaResultado);
JButton botonesH[] = {cmdCrear, cmdLImpiar};
JButton botonesD[] = {cmdLlenadoAuto, cmdLlenadoManual, cmdOperaciones};
Helper.habilitarBotones(botonesH);
Helper.deshabilitarBotones(botonesD);
}//GEN-LAST:event_cmdLImpiarActionPerformed
private void cmdLlenadoManualActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_cmdLlenadoManualActionPerformed
// TODO add your handling code here:
int n;
int sw, res;
int nf, nc;
nf = tblTablaInicial.getRowCount();
nc = tblTablaInicial.getColumnCount();
for (int i = 0; i < nf; i++) {
for (int j = 0; j < nc; j++) {
do {
sw = 1;
try {
n = Integer.parseInt(JOptionPane.showInputDialog(this, "Digite el elemento en la posición [" + i + "] [" + j + "]").trim());
tblTablaInicial.setValueAt(n, i, j);
} catch (NumberFormatException e) {
Helper.mensaje(this, "Digite número valido", 3);
sw = 0;
} catch (NullPointerException e) {
res = JOptionPane.showConfirmDialog(this, "¿Seguro que deseas salir?", "Salir", JOptionPane.YES_NO_OPTION);
if (res == 0) {
sw = 1;
i = nf;
j = nc;
Helper.porDefectoTabla(tblTablaInicial);
Helper.porDefectoTabla(tblTablaResultado);
} else {
sw = 0;
}
}
} while (sw == 0);
}
}
JButton botonesH[] = {cmdLImpiar, cmdOperaciones};
JButton botonesD[] = {cmdCrear, cmdLlenadoAuto, cmdLlenadoManual};
Helper.habilitarBotones(botonesH);
Helper.deshabilitarBotones(botonesD);
}//GEN-LAST:event_cmdLlenadoManualActionPerformed
/**
* @param args the command line arguments
*/
public static void main(String args[]) {
/* Set the Nimbus look and feel */
//<editor-fold defaultstate="collapsed" desc=" Look and feel setting code (optional) ">
/* If Nimbus (introduced in Java SE 6) is not available, stay with the default look and feel.
* For details see http://download.oracle.com/javase/tutorial/uiswing/lookandfeel/plaf.html
*/
try {
for (javax.swing.UIManager.LookAndFeelInfo info : javax.swing.UIManager.getInstalledLookAndFeels()) {
if ("Nimbus".equals(info.getName())) {
javax.swing.UIManager.setLookAndFeel(info.getClassName());
break;
}
}
} catch (ClassNotFoundException ex) {
java.util.logging.Logger.getLogger(Principal.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (InstantiationException ex) {
java.util.logging.Logger.getLogger(Principal.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (IllegalAccessException ex) {
java.util.logging.Logger.getLogger(Principal.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (javax.swing.UnsupportedLookAndFeelException ex) {
java.util.logging.Logger.getLogger(Principal.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
}
//</editor-fold>
/* Create and display the form */
java.awt.EventQueue.invokeLater(new Runnable() {
public void run() {
new Principal().setVisible(true);
}
});
}
// Variables declaration - do not modify//GEN-BEGIN:variables
private javax.swing.JComboBox cmbOperacion;
private javax.swing.JButton cmdCrear;
private javax.swing.JButton cmdLImpiar;
private javax.swing.JButton cmdLlenadoAuto;
private javax.swing.JButton cmdLlenadoManual;
private javax.swing.JButton cmdOperaciones;
private javax.swing.JLabel jLabel1;
private javax.swing.JLabel jLabel2;
private javax.swing.JLabel jLabel3;
private javax.swing.JPanel jPanel1;
private javax.swing.JPanel jPanel2;
private javax.swing.JPanel jPanel3;
private javax.swing.JPanel jPanel4;
private javax.swing.JScrollPane jScrollPane1;
private javax.swing.JScrollPane jScrollPane2;
private javax.swing.JScrollPane jScrollPane3;
private javax.swing.JTable tblTablaInicial;
private javax.swing.JTable tblTablaResultado;
private javax.swing.JTextField txtNumColumnas;
private javax.swing.JTextField txtNumFilas;
private javax.swing.JTextArea txtResultado;
// End of variables declaration//GEN-END:variables
}
| 80508e28440665e9249cbfc9112cc677a9f244fa | [
"Java"
] | 1 | Java | trodriguez30/matricesAD | 650a74f10a23041c438c9273b7eb206879b04085 | c7cfbb800b47f1ab020e8a7c3a019f715644e643 |
refs/heads/master | <repo_name>WBreno9/vkcompute<file_sep>/src/VmaImpl.cpp
#include "vkrpch.h"
#define VMA_IMPLEMENTATION
#include <vk_mem_alloc.h><file_sep>/README.md
# vkcompute
Vulkan compute test
Use git submodule update --init beforing building
<file_sep>/src/main.cpp
#include "vkrpch.h"
#define VK_PANIC(result) \
if (result != VK_SUCCESS) { \
spdlog::error("PANIC AT: {}:{}", __LINE__, __FILE__); \
std::exit(EXIT_FAILURE); \
}
namespace vkc {
PFN_vkCreateDebugUtilsMessengerEXT vkCreateDebugUtilsMessengerEXT;
PFN_vkDestroyDebugUtilsMessengerEXT vkDestroyDebugUtilsMessengerEXT;
static VKAPI_ATTR VkBool32 validation_layer_callback(
VkDebugUtilsMessageSeverityFlagBitsEXT messageSeverity,
VkDebugUtilsMessageTypeFlagsEXT messageType,
const VkDebugUtilsMessengerCallbackDataEXT* pCallbackData,
void* pUserData) {
spdlog::debug("validation layer: {}", pCallbackData->pMessage);
return VK_FALSE;
}
VkDebugUtilsMessengerEXT create_debug_messenger(const VkInstance instance) {
VkDebugUtilsMessengerCreateInfoEXT messenger_create_info = {};
messenger_create_info.sType =
VK_STRUCTURE_TYPE_DEBUG_UTILS_MESSENGER_CREATE_INFO_EXT;
messenger_create_info.pfnUserCallback = validation_layer_callback;
messenger_create_info.messageType =
VK_DEBUG_UTILS_MESSAGE_TYPE_GENERAL_BIT_EXT |
VK_DEBUG_UTILS_MESSAGE_TYPE_VALIDATION_BIT_EXT |
VK_DEBUG_UTILS_MESSAGE_TYPE_PERFORMANCE_BIT_EXT;
messenger_create_info.messageSeverity =
VK_DEBUG_UTILS_MESSAGE_SEVERITY_VERBOSE_BIT_EXT |
VK_DEBUG_UTILS_MESSAGE_SEVERITY_WARNING_BIT_EXT |
VK_DEBUG_UTILS_MESSAGE_SEVERITY_ERROR_BIT_EXT;
vkCreateDebugUtilsMessengerEXT =
(PFN_vkCreateDebugUtilsMessengerEXT)vkGetInstanceProcAddr(
instance, "vkCreateDebugUtilsMessengerEXT");
vkDestroyDebugUtilsMessengerEXT =
(PFN_vkDestroyDebugUtilsMessengerEXT)vkGetInstanceProcAddr(
instance, "vkDestroyDebugUtilsMessengerEXT");
VkDebugUtilsMessengerEXT debug_messenger;
VK_PANIC(vkCreateDebugUtilsMessengerEXT(instance, &messenger_create_info,
nullptr, &debug_messenger));
return debug_messenger;
}
class MoveOnly {
public:
MoveOnly() = default;
MoveOnly(MoveOnly&& other) = default;
MoveOnly& operator=(MoveOnly&& other) = default;
MoveOnly(MoveOnly& other) = delete;
MoveOnly& operator=(MoveOnly) = delete;
};
struct Buffer {
VkBuffer handle_;
VmaAllocator allocator_;
VmaAllocation allocation_;
VmaAllocationInfo allocation_info_;
VmaMemoryUsage mem_usage_;
uint32_t size_;
uint32_t family_index_;
VkBufferCreateFlags buffer_usage_;
char* map_ptr_;
bool is_mapped_;
Buffer() = default;
Buffer(const VmaAllocator& allocator, uint32_t size,
VkBufferCreateFlags buffer_usage, VmaMemoryUsage mem_usage,
uint32_t family_index);
~Buffer();
char* map();
void unmap();
};
Buffer::Buffer(const VmaAllocator& allocator, uint32_t size,
VkBufferCreateFlags buffer_usage, VmaMemoryUsage mem_usage,
uint32_t family_index)
: allocator_(allocator),
mem_usage_(mem_usage),
size_(size),
family_index_(family_index),
buffer_usage_(buffer_usage),
is_mapped_(false),
map_ptr_(nullptr) {
VkBufferCreateInfo create_info = {};
create_info.sType = VK_STRUCTURE_TYPE_BUFFER_CREATE_INFO;
create_info.size = size;
create_info.usage = buffer_usage;
create_info.queueFamilyIndexCount = 1;
create_info.pQueueFamilyIndices = &family_index;
create_info.sharingMode = VK_SHARING_MODE_EXCLUSIVE;
VmaAllocationCreateInfo allocation_create_info = {};
allocation_create_info.usage = mem_usage;
VK_PANIC(vmaCreateBuffer(allocator_, &create_info, &allocation_create_info,
&handle_, &allocation_, &allocation_info_));
}
Buffer::~Buffer() {}
char* Buffer::map() {
if (is_mapped_) return map_ptr_;
if (mem_usage_ == VMA_MEMORY_USAGE_GPU_ONLY) {
spdlog::error("GPU only memory can't be mapped");
std::exit(EXIT_FAILURE);
}
VK_PANIC(vmaMapMemory(allocator_, allocation_,
reinterpret_cast<void**>(&map_ptr_)));
is_mapped_ = true;
return map_ptr_;
}
void Buffer::unmap() {
if (!is_mapped_) {
spdlog::error("Buffer isn't mapped");
std::exit(EXIT_FAILURE);
}
vmaUnmapMemory(allocator_, allocation_);
is_mapped_ = false;
map_ptr_ = nullptr;
}
struct DescriptorSet {
VkDescriptorSet handle_;
VkDescriptorSetLayout set_layout_;
std::vector<VkDescriptorSetLayoutBinding> bindings_;
VkDevice device_;
DescriptorSet() = default;
DescriptorSet(const VkDevice& device, VkDescriptorSet descriptor_set,
VkDescriptorSetLayout descriptor_set_layout,
std::vector<VkDescriptorSetLayoutBinding> bindings);
void update(uint32_t binding, uint32_t start_element,
uint32_t descriptor_count, uint32_t offset, uint64_t range,
const VkBuffer& buffer);
};
DescriptorSet::DescriptorSet(const VkDevice& device, VkDescriptorSet handle,
VkDescriptorSetLayout set_layout,
std::vector<VkDescriptorSetLayoutBinding> bindings)
: device_(device),
handle_(handle),
set_layout_(set_layout),
bindings_(bindings) {}
void DescriptorSet::update(uint32_t binding, uint32_t start_element,
uint32_t descriptor_count, uint32_t offset,
uint64_t range, const VkBuffer& buffer) {
VkDescriptorBufferInfo buffer_info = {};
buffer_info.buffer = buffer;
buffer_info.offset = offset;
buffer_info.range = range;
VkWriteDescriptorSet write_set = {};
write_set.sType = VK_STRUCTURE_TYPE_WRITE_DESCRIPTOR_SET;
write_set.descriptorCount = descriptor_count;
write_set.descriptorType =
bindings_.at(binding)
.descriptorType; // Only works if the bindings are sorted
write_set.dstBinding = binding;
write_set.dstArrayElement = start_element;
write_set.dstBinding = binding;
write_set.dstSet = handle_;
write_set.pBufferInfo = &buffer_info;
write_set.pImageInfo = nullptr;
write_set.pTexelBufferView = nullptr;
vkUpdateDescriptorSets(device_, 1, &write_set, 0, nullptr);
}
struct DescriptorPool {
VkDescriptorPool handle_;
std::vector<VkDescriptorPoolSize> pool_sizes_;
uint32_t max_sets_;
VkDevice device_;
DescriptorPool() = default;
DescriptorPool(const VkDevice& device, uint32_t max_sets,
const std::vector<VkDescriptorPoolSize>& pool_sizes);
void create();
DescriptorSet allocate_descriptor_set(
const std::vector<VkDescriptorSetLayoutBinding>& bindings);
};
DescriptorPool::DescriptorPool(
const VkDevice& device, uint32_t max_sets,
const std::vector<VkDescriptorPoolSize>& pool_sizes)
: device_(device), max_sets_(max_sets), pool_sizes_(pool_sizes) {
create();
}
void DescriptorPool::create() {
VkDescriptorPoolCreateInfo create_info = {};
create_info.sType = VK_STRUCTURE_TYPE_DESCRIPTOR_POOL_CREATE_INFO;
create_info.maxSets = max_sets_;
create_info.poolSizeCount = pool_sizes_.size();
create_info.pPoolSizes = pool_sizes_.data();
VK_PANIC(vkCreateDescriptorPool(device_, &create_info, nullptr, &handle_));
}
DescriptorSet DescriptorPool::allocate_descriptor_set(
const std::vector<VkDescriptorSetLayoutBinding>& bindings) {
// Keep the bindings sorted
auto bindings_sorted = bindings;
std::sort(bindings_sorted.begin(), bindings_sorted.end(),
[](const VkDescriptorSetLayoutBinding& b1,
const VkDescriptorSetLayoutBinding& b2) -> bool {
return (b1.binding < b2.binding);
});
VkDescriptorSetLayoutCreateInfo set_layout_info = {};
set_layout_info.sType = VK_STRUCTURE_TYPE_DESCRIPTOR_SET_LAYOUT_CREATE_INFO;
set_layout_info.bindingCount = bindings.size();
set_layout_info.pBindings = bindings.data();
VkDescriptorSetLayout set_layout;
VK_PANIC(vkCreateDescriptorSetLayout(device_, &set_layout_info, nullptr,
&set_layout));
VkDescriptorSetAllocateInfo alloc_info = {};
alloc_info.sType = VK_STRUCTURE_TYPE_DESCRIPTOR_SET_ALLOCATE_INFO;
alloc_info.descriptorPool = handle_;
alloc_info.descriptorSetCount = 1;
alloc_info.pSetLayouts = &set_layout;
VkDescriptorSet set;
VK_PANIC(vkAllocateDescriptorSets(device_, &alloc_info, &set));
return DescriptorSet(device_, set, set_layout, bindings);
}
struct Pipeline {
VkShaderModule shader_;
VkPipeline pipeline_;
VkPipelineLayout pipeline_layout_;
VkDevice device_;
Pipeline() = default;
Pipeline(const VkDevice& device);
void create(const std::vector<uint32_t>& program_src,
const VkDescriptorSetLayout& descriptor_set_layout);
};
Pipeline::Pipeline(const VkDevice& device) : device_(device) {}
void Pipeline::create(const std::vector<uint32_t>& program_src,
const VkDescriptorSetLayout& descriptor_set_layout) {
VkShaderModuleCreateInfo shader_info_ = {};
shader_info_.sType = VK_STRUCTURE_TYPE_SHADER_MODULE_CREATE_INFO;
shader_info_.pCode = program_src.data();
shader_info_.codeSize = program_src.size();
VK_PANIC(vkCreateShaderModule(device_, &shader_info_, nullptr, &shader_));
VkPipelineLayoutCreateInfo layout_info = {};
layout_info.sType = VK_STRUCTURE_TYPE_PIPELINE_LAYOUT_CREATE_INFO;
layout_info.setLayoutCount = 1;
layout_info.pSetLayouts = &descriptor_set_layout;
VK_PANIC(vkCreatePipelineLayout(device_, &layout_info, nullptr,
&pipeline_layout_));
VkPipelineShaderStageCreateInfo stage_info = {};
stage_info.sType = VK_STRUCTURE_TYPE_PIPELINE_SHADER_STAGE_CREATE_INFO;
stage_info.stage = VK_SHADER_STAGE_COMPUTE_BIT;
stage_info.pName = "main";
stage_info.module = shader_;
VkComputePipelineCreateInfo pipeline_info = {};
pipeline_info.sType = VK_STRUCTURE_TYPE_COMPUTE_PIPELINE_CREATE_INFO;
pipeline_info.layout = pipeline_layout_;
pipeline_info.stage = stage_info;
VK_PANIC(vkCreateComputePipelines(device_, VK_NULL_HANDLE, 1,
&pipeline_info, nullptr, &pipeline_));
}
struct PhysicalDevice {
VkPhysicalDevice handle_;
VkPhysicalDeviceProperties properties_;
VkPhysicalDeviceMemoryProperties memory_properties_;
std::vector<VkQueueFamilyProperties> family_properties_;
};
struct Instance {
VkInstance handle_;
std::vector<const char*> extensions_;
bool use_validation_;
VkDebugUtilsMessengerEXT debug_messenger_;
std::vector<PhysicalDevice> physical_devices_;
void init(bool use_validation);
void query_physical_devices();
};
void Instance::init(bool use_validation) {
use_validation_ = use_validation;
spdlog::set_level(spdlog::level::debug);
spdlog::set_pattern("[%T] [%^%l%$] %v");
// Using volk to minimize API calls overhead
// More info at: https://gpuopen.com/reducing-vulkan-api-call-overhead/
spdlog::info("Initializing volk");
if (volkInitialize() != VK_SUCCESS) {
spdlog::error("Failed to initialize volk, abort");
std::exit(EXIT_FAILURE);
}
std::vector<const char*> validation_layers;
if (use_validation_) {
extensions_.push_back(VK_EXT_DEBUG_UTILS_EXTENSION_NAME);
validation_layers.push_back("VK_LAYER_LUNARG_standard_validation");
// validation_layers.push_back("VK_LAYER_LUNARG_api_dump");
}
VkApplicationInfo app_info = {};
app_info.sType = VK_STRUCTURE_TYPE_APPLICATION_INFO;
app_info.apiVersion = VK_API_VERSION_1_1;
app_info.applicationVersion = VK_MAKE_VERSION(0, 1, 0);
app_info.engineVersion = VK_MAKE_VERSION(0, 1, 0);
app_info.pEngineName = "Null Engine";
app_info.pApplicationName = "Compute App";
VkInstanceCreateInfo create_info = {};
create_info.sType = VK_STRUCTURE_TYPE_INSTANCE_CREATE_INFO;
create_info.enabledExtensionCount = extensions_.size();
create_info.ppEnabledExtensionNames = extensions_.data();
create_info.enabledLayerCount = validation_layers.size();
create_info.ppEnabledLayerNames = validation_layers.data();
create_info.pApplicationInfo = &app_info;
VK_PANIC(vkCreateInstance(&create_info, nullptr, &handle_));
volkLoadInstance(handle_);
if (use_validation_) debug_messenger_ = create_debug_messenger(handle_);
}
void Instance::query_physical_devices() {
std::vector<VkPhysicalDevice> physical_devices;
uint32_t physical_device_count = 0;
vkEnumeratePhysicalDevices(handle_, &physical_device_count, nullptr);
physical_devices.resize(physical_device_count);
vkEnumeratePhysicalDevices(handle_, &physical_device_count,
physical_devices.data());
physical_devices_.reserve(physical_devices.size());
for (auto& phys_dev : physical_devices) {
std::vector<VkQueueFamilyProperties> family_properties;
uint32_t family_count = 0;
vkGetPhysicalDeviceQueueFamilyProperties(phys_dev, &family_count,
nullptr);
family_properties.resize(family_count);
vkGetPhysicalDeviceQueueFamilyProperties(phys_dev, &family_count,
family_properties.data());
VkPhysicalDeviceProperties physical_device_properties;
vkGetPhysicalDeviceProperties(phys_dev, &physical_device_properties);
VkPhysicalDeviceMemoryProperties physical_device_memory_properties;
vkGetPhysicalDeviceMemoryProperties(phys_dev,
&physical_device_memory_properties);
physical_devices_.push_back({phys_dev, physical_device_properties,
physical_device_memory_properties,
family_properties});
}
}
VmaAllocator create_vma_allocator(VkDevice device,
VkPhysicalDevice physical_device) {
// Vulkan Memory Allocator
// More info at:
// https://github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator
spdlog::info("Initializing VMA Allocator");
VmaVulkanFunctions vma_functions = {vkGetPhysicalDeviceProperties,
vkGetPhysicalDeviceMemoryProperties,
vkAllocateMemory,
vkFreeMemory,
vkMapMemory,
vkUnmapMemory,
vkFlushMappedMemoryRanges,
vkInvalidateMappedMemoryRanges,
vkBindBufferMemory,
vkBindImageMemory,
vkGetBufferMemoryRequirements,
vkGetImageMemoryRequirements,
vkCreateBuffer,
vkDestroyBuffer,
vkCreateImage,
vkDestroyImage,
vkCmdCopyBuffer};
VmaAllocatorCreateInfo allocator_create_info = {};
allocator_create_info.physicalDevice = physical_device;
allocator_create_info.device = device;
allocator_create_info.pVulkanFunctions = &vma_functions;
VmaAllocator allocator;
VK_PANIC(vmaCreateAllocator(&allocator_create_info, &allocator));
return allocator;
}
struct CommandPool {
VkCommandPool handle_;
uint32_t family_index_;
std::vector<VkCommandBuffer> command_buffers_;
VkDevice device_;
CommandPool() = default;
CommandPool(VkDevice device, uint32_t family_index);
VkCommandBuffer allocate_command_buffer(VkCommandBufferLevel level);
};
CommandPool::CommandPool(VkDevice device, uint32_t family_index)
: family_index_(family_index), device_(device) {
VkCommandPoolCreateInfo pool_info = {};
pool_info.sType = VK_STRUCTURE_TYPE_COMMAND_POOL_CREATE_INFO;
pool_info.queueFamilyIndex = family_index_;
spdlog::info("Creating command pool");
VK_PANIC(vkCreateCommandPool(device_, &pool_info, nullptr, &handle_));
}
VkCommandBuffer CommandPool::allocate_command_buffer(
VkCommandBufferLevel level) {
VkCommandBufferAllocateInfo alloc_info = {};
alloc_info.sType = VK_STRUCTURE_TYPE_COMMAND_BUFFER_ALLOCATE_INFO;
alloc_info.commandBufferCount = 1;
alloc_info.level = level;
alloc_info.commandPool = handle_;
VkCommandBuffer command_buffer;
VK_PANIC(vkAllocateCommandBuffers(device_, &alloc_info, &command_buffer));
command_buffers_.push_back(command_buffer);
return command_buffer;
}
class Compute {
public:
Instance instance_;
PhysicalDevice physical_device_;
VkDevice device_;
std::vector<const char*> device_extensions_;
VkQueue compute_queue_;
uint32_t compute_queue_index_;
VmaAllocator allocator_;
std::vector<Buffer> buffers_;
uint32_t vec_size_;
DescriptorPool descriptor_pool_;
DescriptorSet descriptor_set_;
Pipeline pipeline_;
CommandPool command_pool_;
VkCommandBuffer command_buffer_;
void init(bool use_validation);
void get_physical_device();
void init_device();
void create_buffers();
void create_descriptors();
void create_pipeline();
void create_command_buffer();
void dispatch();
void fill_buffer();
void dump_buffer();
};
void Compute::init(bool use_validation) {
instance_.init(use_validation);
instance_.query_physical_devices();
get_physical_device();
}
void Compute::get_physical_device() {
bool found_device = false;
for (auto& phys_dev : instance_.physical_devices_) {
for (uint32_t i = 0; i < phys_dev.family_properties_.size(); ++i) {
auto& family_property = phys_dev.family_properties_.at(i);
if (family_property.queueFlags & VK_QUEUE_COMPUTE_BIT) {
found_device = true;
physical_device_ = phys_dev;
compute_queue_index_ = i;
}
}
}
if (!found_device) {
spdlog::error("Failed to find a compute device, abort");
std::exit(EXIT_FAILURE);
}
}
void Compute::init_device() {
float queue_priority = 1.0f;
VkDeviceQueueCreateInfo queue_create_info = {};
queue_create_info.sType = VK_STRUCTURE_TYPE_DEVICE_QUEUE_CREATE_INFO;
queue_create_info.pQueuePriorities = &queue_priority;
queue_create_info.queueCount = 1;
queue_create_info.queueFamilyIndex = compute_queue_index_;
VkDeviceCreateInfo create_info = {};
create_info.sType = VK_STRUCTURE_TYPE_DEVICE_CREATE_INFO;
create_info.enabledExtensionCount = device_extensions_.size();
create_info.ppEnabledExtensionNames = device_extensions_.data();
create_info.queueCreateInfoCount = 1;
create_info.pQueueCreateInfos = &queue_create_info;
VK_PANIC(vkCreateDevice(physical_device_.handle_, &create_info, nullptr,
&device_));
volkLoadDevice(device_);
allocator_ = create_vma_allocator(device_, physical_device_.handle_);
vkGetDeviceQueue(device_, compute_queue_index_, 0, &compute_queue_);
}
void Compute::create_buffers() {
spdlog::info("Creating buffers");
buffers_.emplace_back(allocator_,
vec_size_ * sizeof(float) + sizeof(uint32_t),
VK_BUFFER_USAGE_STORAGE_BUFFER_BIT,
VMA_MEMORY_USAGE_CPU_TO_GPU, compute_queue_index_);
buffers_.emplace_back(allocator_,
vec_size_ * sizeof(float) + sizeof(uint32_t),
VK_BUFFER_USAGE_STORAGE_BUFFER_BIT,
VMA_MEMORY_USAGE_GPU_TO_CPU, compute_queue_index_);
}
void Compute::create_descriptors() {
spdlog::info("Creatring descriptors");
std::vector<VkDescriptorPoolSize> pool_sizes = {
{VK_DESCRIPTOR_TYPE_STORAGE_BUFFER, 2}};
spdlog::info("Creating descriptor pool");
descriptor_pool_ = DescriptorPool(device_, 1, pool_sizes);
std::vector<VkDescriptorSetLayoutBinding> bindings = {
{0, VK_DESCRIPTOR_TYPE_STORAGE_BUFFER, 1, VK_SHADER_STAGE_COMPUTE_BIT,
nullptr},
{1, VK_DESCRIPTOR_TYPE_STORAGE_BUFFER, 1, VK_SHADER_STAGE_COMPUTE_BIT,
nullptr}};
spdlog::info("Creating descriptor set");
descriptor_set_ = descriptor_pool_.allocate_descriptor_set(bindings);
spdlog::info("Updating descriptor set");
descriptor_set_.update(0, 0, 1, 0, VK_WHOLE_SIZE, buffers_.at(0).handle_);
descriptor_set_.update(1, 0, 1, 0, VK_WHOLE_SIZE, buffers_.at(1).handle_);
}
void Compute::create_pipeline() {
pipeline_ = Pipeline(device_);
spdlog::info("Loading SPIR-V binary file");
std::vector<uint32_t> shader_binary;
std::ifstream fs("shaders/sum.comp.spv");
if (!fs.is_open()) {
spdlog::error("Failed to open shader binary, abort");
std::exit(EXIT_FAILURE);
}
fs.seekg(0, fs.end);
shader_binary.resize(fs.tellg());
fs.seekg(0, fs.beg);
fs.read(reinterpret_cast<char*>(shader_binary.data()),
shader_binary.size());
spdlog::info("Binary Size: {}", shader_binary.size());
spdlog::info("Creating compute pipeline");
pipeline_.create(shader_binary, descriptor_set_.set_layout_);
}
void Compute::create_command_buffer() {
command_pool_ = CommandPool(device_, compute_queue_index_);
command_buffer_ =
command_pool_.allocate_command_buffer(VK_COMMAND_BUFFER_LEVEL_PRIMARY);
}
void Compute::dispatch() {
VkCommandBufferBeginInfo begin_info = {};
begin_info.sType = VK_STRUCTURE_TYPE_COMMAND_BUFFER_BEGIN_INFO;
begin_info.flags = VK_COMMAND_BUFFER_USAGE_ONE_TIME_SUBMIT_BIT;
spdlog::info("Recording command buffer");
VK_PANIC(vkBeginCommandBuffer(command_buffer_, &begin_info));
vkCmdBindPipeline(command_buffer_, VK_PIPELINE_BIND_POINT_COMPUTE,
pipeline_.pipeline_);
vkCmdBindDescriptorSets(command_buffer_, VK_PIPELINE_BIND_POINT_COMPUTE,
pipeline_.pipeline_layout_, 0, 1,
&descriptor_set_.handle_, 0, nullptr);
vkCmdDispatch(command_buffer_, 1, 1, 1);
VK_PANIC(vkEndCommandBuffer(command_buffer_));
spdlog::info("Submitting");
VkSubmitInfo submit_info = {};
submit_info.sType = VK_STRUCTURE_TYPE_SUBMIT_INFO;
submit_info.commandBufferCount = 1;
submit_info.pCommandBuffers = &command_buffer_;
VK_PANIC(vkQueueSubmit(compute_queue_, 1, &submit_info, VK_NULL_HANDLE));
spdlog::info("Wainting on queue");
vkQueueWaitIdle(compute_queue_);
}
void Compute::fill_buffer() {
std::srand(std::time(nullptr));
for (auto& buffer : buffers_) {
char* m = buffer.map();
*reinterpret_cast<uint32_t*>(m) = vec_size_;
float* v = reinterpret_cast<float*>(m + sizeof(uint32_t));
std::stringstream ss;
for (uint32_t i = 0; i < vec_size_; ++i) {
v[i] = std::rand() % 10;
ss << v[i] << " ";
}
spdlog::info("vector: size {} [ {}]", vec_size_, ss.str());
buffer.unmap();
}
}
void Compute::dump_buffer() {
char* m = buffers_.at(1).map();
uint32_t vec_size = *reinterpret_cast<uint32_t*>(m);
float* v = reinterpret_cast<float*>(m + sizeof(uint32_t));
std::stringstream ss;
for (uint32_t i = 0; i < vec_size_; ++i) {
ss << v[i] << " ";
}
spdlog::info("vector: size {} [ {}]", vec_size, ss.str());
buffers_.at(1).unmap();
}
} // namespace vkc
int main() {
vkc::Compute compute;
compute.init(true);
compute.get_physical_device();
compute.init_device();
compute.create_command_buffer();
compute.vec_size_ = 10;
compute.create_buffers();
compute.create_descriptors();
compute.create_pipeline();
compute.fill_buffer();
compute.dispatch();
compute.dump_buffer();
return 0;
}
<file_sep>/CMakeLists.txt
cmake_minimum_required(VERSION 3.7.3)
project(vkcompute)
set(CMAKE_CXX_STANDARD 17)
set(THIRD_PARTY ${CMAKE_SOURCE_DIR}/third_party)
add_subdirectory(${THIRD_PARTY}/spdlog EXCLUDE_FROM_ALL)
# Add volk as a library
add_library(volk STATIC ${THIRD_PARTY}/volk/volk.c ${THIRD_PARTY}/volk/volk.h)
target_include_directories(volk PUBLIC ${THIRD_PARTY}/volk ${THIRD_PARTY}/khronos)
target_link_libraries(volk PRIVATE dl)
find_package(Vulkan REQUIRED)
set(SOURCES
src/vkrpch.h
src/VmaImpl.cpp
src/main.cpp
)
add_executable(vkcompute ${SOURCES})
add_subdirectory(${CMAKE_SOURCE_DIR}/src/shaders)
add_dependencies(vkcompute shaders)
target_include_directories(vkcompute PRIVATE
${THIRD_PARTY}/stb
${THIRD_PARTY}/VulkanMemoryAllocator/src spdlog::spdlog
)
target_link_libraries(vkcompute PRIVATE volk spdlog)
<file_sep>/src/vkrpch.h
#pragma once
#include <array>
#include <cstring>
#include <fstream>
#include <iostream>
#include <map>
#include <memory>
#include <optional>
#include <sstream>
#include <string>
#include <unordered_map>
#include <vector>
#define VK_NO_PROTOTYPES
#include <volk.h>
//#include <GLFW/glfw3.h>
#include <spdlog/spdlog.h>
#include <vk_mem_alloc.h><file_sep>/src/shaders/CMakeLists.txt
set(GLSL_VALIDATOR glslangValidator)
set( SHADERS
${CMAKE_SOURCE_DIR}/src/shaders/sum.comp
)
foreach(GLSL ${SHADERS})
get_filename_component(FILE_NAME ${GLSL} NAME)
set(SPIRV "${PROJECT_BINARY_DIR}/shaders/${FILE_NAME}.spv")
add_custom_command(
OUTPUT ${SPIRV}
COMMAND ${CMAKE_COMMAND} -E make_directory "${PROJECT_BINARY_DIR}/shaders/"
COMMAND ${GLSL_VALIDATOR} -V ${GLSL} -o ${SPIRV}
DEPENDS ${GLSL}
)
list(APPEND SHADERS_BINARY ${SPIRV})
endforeach(GLSL)
add_custom_target(shaders DEPENDS ${SHADERS_BINARY})
| 60f3474b1d7decc86b37d943dc73e12aeb57b0d6 | [
"Markdown",
"CMake",
"C++"
] | 6 | C++ | WBreno9/vkcompute | d0cd538b4617b8aa101dc0b5e8812f8fb061ca68 | 06d3017997d7bf90a661adc9a7f2d1ecb0746c63 |
refs/heads/master | <repo_name>testlab-hub/ImprovingPandasExcelOutput<file_sep>/improvingExcelOutput.py
import pandas as pd
import numpy as np
from xlsxwriter.utility import xl_rowcol_to_cell
df = pd.read_excel ("excel-comp-datav2.xlsx")
df.head ( )
number_rows = len (df.index)
#print (number_rows)
# increase the salary by 10 %
#example = df.assign(Revised_Salary = lambda x: df['Feb'] + df['Mar']/2)
# Add some summary data using the new assign functionality in pandas 0.16
df = df.assign (total = df['Jan'] + df['Feb'] + df['Mar'])
df.head()
print(df)
df = df.assign(quota_pct=(1+(df['total'] - df['quota'])/df['quota']))
df.head()
writer_orig = pd.ExcelWriter('simple.xlsx', engine='xlsxwriter')
df.to_excel(writer_orig, index=False, sheet_name='report')
writer_orig.save()
writer = pd.ExcelWriter('fancy.xlsx', engine='xlsxwriter')
df.to_excel(writer, index=False, sheet_name='report')
workbook = writer.book
worksheet = writer.sheets['report']
worksheet.set_zoom(90)
# Add a number format for cells with money.
money_fmt = workbook.add_format({'num_format': '$#,##0', 'bold': True})
# Add a percent format with 1 decimal point
percent_fmt = workbook.add_format({'num_format': '0.0%', 'bold': True})
# Total formatting
total_fmt = workbook.add_format({'align': 'right', 'num_format': '$#,##0','bold': True, 'bottom':6})
# Total percent format
total_percent_fmt = workbook.add_format({'align': 'right', 'num_format': '0.0%','bold': True, 'bottom':6})
# Account info columns
worksheet.set_column('B:D', 20)
# State column
worksheet.set_column('E:E', 5)
# Post code
worksheet.set_column('F:F', 10)
# Monthly columns
worksheet.set_column('G:K', 12, money_fmt)
# Quota percent columns
worksheet.set_column('L:L', 12, percent_fmt)
# Add total rows
for column in range(6, 11):
# Determine where we will place the formula
cell_location = xl_rowcol_to_cell(number_rows+1, column)
# Get the range to use for the sum formula
start_range = xl_rowcol_to_cell(1, column)
end_range = xl_rowcol_to_cell(number_rows, column)
# Construct and write the formula
formula = "=SUM({:s}:{:s})".format(start_range, end_range)
worksheet.write_formula(cell_location, formula, total_fmt)
# Add a total label
worksheet.write_string(number_rows+1, 5, "Total",total_fmt)
percent_formula = "=1+(K{0}-G{0})/G{0}".format(number_rows+2)
worksheet.write_formula(number_rows+1, 11, percent_formula, total_percent_fmt)
# Define our range for the color formatting
color_range = "L2:L{}".format(number_rows+1)
# Add a format. Light red fill with dark red text.
format1 = workbook.add_format({'bg_color': '#FFC7CE','font_color': '#9C0006'})
# Add a format. Green fill with dark green text.
format2 = workbook.add_format({'bg_color': '#C6EFCE','font_color': '#006100'})
# Highlight the top 5 values in Green
worksheet.conditional_format(color_range, {'type': 'top','value': '5','format': format2})
# Highlight the bottom 5 values in Red
worksheet.conditional_format(color_range, {'type': 'bottom','value': '5','format': format1})
writer.save()
<file_sep>/README.md
# ImprovingPandasExcelOutput
Improving Pandas’s Excel Output
| caafea333bbc33598b54f64a6c33bb79c1b31a14 | [
"Markdown",
"Python"
] | 2 | Python | testlab-hub/ImprovingPandasExcelOutput | 9a6481e1a645e64ee431721500168134c7f13e08 | aa656f205cb36c78f2b0f6730d4d93e1d523bc6b |
refs/heads/master | <file_sep>scotchTodo.component('todoList', {
controller: function (todoObjs) {
var cn = this;
this.$onInit = function() {
todoObjs.GetAllTodos().then(function(data){
cn.allList = data;
})
}
},
templateUrl : '/allToDo.html'
});
<file_sep>angular.module('scotchTodo').service('todoObjs',function($q,$http) {
this.GetAllTodos = function () {
var deferred = $q.defer();
$http.get('/api/todos')
.success(function(data) {
// The promise is resolved once the HTTP call is successful.
deferred.resolve(data);
})
.error(function(reason) {
// The promise is rejected if there is an error with the HTTP call.
deferred.reject(reason);
});
return deferred.promise;
},
this.CreateTodo = function(formData){
var deferred = $q.defer();
$http.post('/api/todos', formData)
.success(function(data) {
// The promise is resolved once the HTTP call is successful.
deferred.resolve(data);
})
.error(function(reason) {
// The promise is rejected if there is an error with the HTTP call.
deferred.reject(reason);
});
return deferred.promise;
},
this.DeleteTodo = function(id){
var deferred = $q.defer();
$http.delete('/api/todos/' + id)
.success(function(data) {
// The promise is resolved once the HTTP call is successful.
deferred.resolve(data);
})
.error(function(reason) {
// The promise is rejected if there is an error with the HTTP call.
deferred.reject(reason);
});
return deferred.promise;
}
});
<file_sep>var scotchTodo = angular.module('scotchTodo',['ngRoute']);
scotchTodo.config(function($routeProvider) {
$routeProvider
// route for the home page
.when('/', {
templateUrl : '/tempTemplate.html',
controller : 'MainController as main',
resolve: {
myList:function(todoObjs) {
return todoObjs.GetAllTodos();
}
}
})
.when('/Todos', {
/*templateUrl : '/allToDo.html',
controller : 'MainController as main',
resolve: {
myList:function(todoObjs) {
return todoObjs.GetAllTodos();
}
}*/
template: '<todo-list></todo-list>'
})
// route for the about page
});
function MainController(todoObjs,myList) {
//var main = this;
//main.formData = {};
var vm = this;
vm.text34 = 'SomeText';
vm.todos = myList;
// when submitting the add form, send the text to the node API
vm.createTodo = function() {
todoObjs.CreateTodo(vm.formData).then(function(data){
vm.formData = {}; // clear the form so our user is ready to enter another
vm.todos = data;
console.log(data);
}),
function(reason) {
//$scope.error = 'There has been an error: ' + reason;
}
};
// delete a todo after checking it
vm.deleteTodo = function(id) {
todoObjs.DeleteTodo(id).then(function(data){
vm.todos = data;
console.log(data);
}),
function(reason) {
//$scope.error = 'There has been an error: ' + reason;
}
};
}
scotchTodo.controller("MainController", ["todoObjs","myList",MainController]);
| 8931e95e11c0198b65d2f05c9de7dbdc70f28743 | [
"JavaScript"
] | 3 | JavaScript | RoeiHevroni/TestGit | 9d54e41949c01c3ff03f98016edfd72a5ff15327 | 090720cc6aa1b2805093f427d20ff3840c88cff4 |
refs/heads/master | <repo_name>hectormataa/git-clase-master<file_sep>/master.js
console.log("este branch es del master");<file_sep>/main.js
console.log("<NAME>");
console.log("este es un nuvo mundo xd");
console.log("finalxd");<file_sep>/linearosa.js
console.log("linearosa"); | 95a5c9301b9c0e7d2525d756d18e03696985e75f | [
"JavaScript"
] | 3 | JavaScript | hectormataa/git-clase-master | f706173c9499e16b38ee876048dd9d8c2828fe57 | ef42592e9c6611a98084bb63000056e469a8cd0b |
refs/heads/master | <file_sep>#!/usr/bin/swift
// 20230605 Picsee 1.6.4 (98)
// 在命令行执行: ./grab.swift
import Foundation
let projectPath = "/Users/kzhiquan/Desktop/swift/Picsee"
let destPath = "/Users/kzhiquan/Desktop/swift/Picsee-translate"
class Grab {
private var baseFolderUrl: URL?
func perform() {
self.prepare()
// (source, target)
let modules: [(String, String?)] = [("Picsee/Supporting Files", "Main"),
("Picsee/Modules/Album", "Album"),
("Picsee/Modules/PPSee", "PPSee"),
("Picsee/Modules/PPEdit", "PPEdit"),
("Picsee/Modules/PPSnip", "PPSnip"),
("Picsee/Modules/PPDraw", "PPDraw"),
("Picsee/Modules/PPExportUserBusiness", "PPExportUserBusiness"),
("Picsee/Modules/PPExportBusiness", "PPExportBusiness"),
("Picsee/Modules/PPExportAuth", "PPExportAuth"),
("Picsee/Modules/PPExportBusiness", "PPExport"),
("Picsee/Modules/PPBar", "PPBar"),
("Picsee/Modules/PPCommon", "PPCommon")]
for module in modules {
self.copyModule(source: module.0, target: module.1)
}
}
private func prepare() {
let folderURL = destPath + "/" + "translation"
let url = URL(fileURLWithPath: folderURL)
do {
try FileManager.default.trashItem(at: url, resultingItemURL: nil)
}catch let error {
print("error: \(error)")
}
self.baseFolderUrl = self.createNotExist(for: url)
}
private func copyModule(source: String, target: String? = nil) {
print("")
let theTarget = target == nil ? source : target!
print("copy \(source) to \(theTarget)")
guard let baseUrl = self.baseFolderUrl else {
return
}
let targetUrl = baseUrl.appendingPathComponent(theTarget)
let _ = self.createNotExist(for: targetUrl)
let sourceUrlPath = projectPath + "/" + source
let sourceUrl = URL(fileURLWithPath: sourceUrlPath)
let errorHandler: (URL, Error) -> Bool = { url, error in
print("directory enumerator error at: \(url): \(error)")
return true
}
guard let enumerator = FileManager.default.enumerator(at: sourceUrl,
includingPropertiesForKeys: nil,
options: [.skipsHiddenFiles,
.skipsPackageDescendants,
.skipsSubdirectoryDescendants],
errorHandler: errorHandler) else {
return
}
while let childUrl = enumerator.nextObject() as? URL {
if childUrl.pathExtension == "lproj" {
print("childUrl: \(childUrl.path)")
if childUrl.lastPathComponent == "Base.lproj" {
continue
}
do {
let targetChildUrl = targetUrl.appendingPathComponent(childUrl.lastPathComponent)
try FileManager.default.copyItem(at: childUrl, to: targetChildUrl)
}catch let error {
print("error: \(error)")
}
}
}
}
private func createNotExist(for url: URL) -> URL? {
if !FileManager.default.fileExists(atPath: url.path) {
do {
try FileManager.default.createDirectory(at: url, withIntermediateDirectories: true, attributes: nil)
return url
}catch let error {
print("create url failed: \(url), \(error)")
return nil
}
}
return url
}
}
print("start grab")
let grab = Grab()
grab.perform()
print("end grab")
<file_sep><p align="center">
<img height="256" src="https://github.com/kzhiquan/Picsee/blob/master/logo.png" />
</p>
<h1 align="center">Picsee</h1>
<p align="center">Picsee is the <b>modern</b> image viewer and organizer for macOS.</p>
<p align=center>
<a href="https://enpicsee.chitaner.com">Website</a> ·
<a href="https://t.me/joinchat/LLvGKBYvdMtz6z7SgYxJUQ">Telegram Group</a>
</p>
---
## Contributing
Picsee is looking for contributions! You can report bugs, new issues and do translation here.
## Translation
Until now, Picsee has four languages localized, they are English, Japanese, Chinese Simplified, Chinese Traditional. I think the Chinese localization is ok but the others are poor. You can make them better and, what is more, you can localize Picsee for any other language.
### How to localize
There are Main, Album, PPSee, PPEdit, PPSnip, PPBar, PPDraw, PPCommon, PPExport, PPExportAuth, PPExportBusiness and PPExportUserBusiness modules which you can find in the **translation** folder. In every module folder there are en.lproj, ja.lproj, zh-Hans.lproj and zh-Hant.lproj folders which are the localization folders for each language. You can create a new folder within each module for a new language. In each language folder, there are Localizable.strings files and these are where the translation should take place. The format is as follows:
```
// 删除
"album_bar_delete" = "Delete";
// 入口
"album_bar_entry" = "Access";
// 导出
"album_bar_export" = "Export";
......
```
This is a piece of English localization code. In this example, "album_bar_delete" is the key, "Delete" is the value and "//删除" is the Chinese translation. If you think a value is wrong, you can update it and make a pull request. For a new language, you would need to create the Localizable.strings file within a new language folder under each module and then translate all of the keys. | f2bde0425fa4b555432b867fb24f88a34516482f | [
"Swift",
"Markdown"
] | 2 | Swift | kzhiquan/Picsee | 8acaa714f7932aed5c051162d35b47dfb2cd22a2 | 4c6836156b78a470b91b83ebfc97d13d32621f67 |
refs/heads/master | <repo_name>frontbyby/test<file_sep>/test_urllib2.py
# coding: utf-8
import urllib.request
import http.cookiejar
url = "https://www.baidu.com"
print("one")
response1 = urllib.request.urlopen(url)
print(response1.getcode())
print(len(response1.read()))
print("two")
request = urllib.request.Request(url)
request.add_header("user-agent", "Mozilla/5.0")
response2 = urllib.request.urlopen(request)
print(response2.getcode())
print(response2.read())
print("three")
cj = http.cookiejar.CookieJar()
opener = urllib.request.build_opener(urllib.request.HTTPCookieProcessor(cj))
urllib.request.install_opener(opener)
response3 = urllib.request.urlopen(url)
print(response3.getcode())
print(cj)
print(len(response3.read()))<file_sep>/test_bs4.py
from bs4 import BeautifulSoup
soup = BeautifulSoup(
html_doc, #html 文档字符串
'html.parser',# html解析器
from_endcoding='utf8' #html文档的编码
)
#搜索节点(find_a,find)
soup.find_all('a')
soup.find_all(reg)
soup.find_all('div',class_='abc', string='Python')
#访问节点信息:<a href=''></a>
<file_sep>/spiderDirector.md
## 爬虫流程
| c815016a7d96c46c6c182a33cb90e75dfd54ea54 | [
"Markdown",
"Python"
] | 3 | Python | frontbyby/test | fbc3765d872769a799b0ed13162d274e201e08e2 | ddb1d8fdfa7794faeaea5ff4185c1b55618272fa |
refs/heads/master | <file_sep>//
// Source code recreated from a .class file by IntelliJ IDEA
// (powered by Fernflower decompiler)
//
package com.coviam.t3login.dto;
public class MerchantDTO {
private String merchantId;
private String merchantName;
private String merchantEmail;
private String merchantPhone;
private String pincode;
private String merchantAddress;
public MerchantDTO() {
}
public String getMerchantId() {
return this.merchantId;
}
public String getMerchantName() {
return this.merchantName;
}
public String getMerchantEmail() {
return this.merchantEmail;
}
public String getMerchantPhone() {
return this.merchantPhone;
}
public String getPincode() {
return this.pincode;
}
public String getMerchantAddress() {
return this.merchantAddress;
}
public void setMerchantId(String merchantId) {
this.merchantId = merchantId;
}
public void setMerchantName(String merchantName) {
this.merchantName = merchantName;
}
public void setMerchantEmail(String merchantEmail) {
this.merchantEmail = merchantEmail;
}
public void setMerchantPhone(String merchantPhone) {
this.merchantPhone = merchantPhone;
}
public void setPincode(String pincode) {
this.pincode = pincode;
}
public void setMerchantAddress(String merchantAddress) {
this.merchantAddress = merchantAddress;
}
public String toString() {
return "MerchantDTO(merchantId=" + this.getMerchantId() + ", merchantName=" + this.getMerchantName() + ", merchantEmail=" + this.getMerchantEmail() + ", merchantPhone=" + this.getMerchantPhone() + ", pincode=" + this.getPincode() + ", merchantAddress=" + this.getMerchantAddress() + ")";
}
}
<file_sep>package com.coviam.t3login.entity;
import lombok.Getter;
import lombok.Setter;
import lombok.ToString;
@Setter
@Getter
@ToString
public class UserInfo
{
private String name;
}
<file_sep>package com.coviam.t3login.config;
import com.coviam.t3login.dto.SignupDto1;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.data.redis.connection.jedis.JedisConnectionFactory;
import org.springframework.data.redis.core.RedisTemplate;
@Configuration
@EnableAutoConfiguration
public class SessionConfig {
@Bean
public JedisConnectionFactory connectionFactory() {
return new JedisConnectionFactory();
}
@Bean
public RedisTemplate<SignupDto1, String> redisTemplate() {
RedisTemplate<SignupDto1, String> template = new RedisTemplate<>();
template.setConnectionFactory(connectionFactory());
return template;
}
// @Bean
// public RedisTemplate<LoginDTO, String> redisTemplate1() {
// RedisTemplate<LoginDTO, String> template1 = new RedisTemplate<>();
// template1.setConnectionFactory(connectionFactory());
// return template1;
// }
}
<file_sep>//
// Source code recreated from a .class file by IntelliJ IDEA
// (powered by Fernflower decompiler)
//
package com.coviam.t3login.controller;
import com.coviam.t3login.dto.AccessTokenDTO;
import com.coviam.t3login.dto.FacebookDTO;
import com.coviam.t3login.dto.LoginDTO;
import com.coviam.t3login.dto.SignupDto1;
import com.coviam.t3login.dto.UserInfoDTO;
import com.coviam.t3login.entity.Login;
import com.coviam.t3login.service.GoogleService;
import com.coviam.t3login.service.LoginHistoryService;
import com.coviam.t3login.service.LoginService;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.CrossOrigin;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.client.RestTemplate;
@RestController
@CrossOrigin(
origins = {"*"}
)
@RequestMapping
public class LoginController {
@Autowired
private LoginService loginService;
@Autowired
GoogleService googleService;
@Autowired
private LoginHistoryService loginHistoryService;
public LoginController() {
}
@PostMapping({"/signup"})
public String signup(@RequestBody SignupDto1 signupDto1) {
return this.loginService.signup(signupDto1);
}
@PostMapping({"/signout"})
public void evictAllCacheValues(@RequestParam("email") String email) {
this.loginService.evictCacheForKey(email);
}
@GetMapping({"/getLoginHistoryById/{id}"})
public List<String> getLoginHistoryById(@PathVariable("id") String id) {
return this.loginHistoryService.getLoginHistoryById(id);
}
@PostMapping({"/login"})
public String login(@RequestBody LoginDTO loginDTO) {
return this.loginService.login(loginDTO);
}
@PostMapping({"/googlelogin"})
public String gmailLogin(@RequestBody AccessTokenDTO accessTokenDTO) {
System.out.println("Inside gmail login");
Login user = this.googleService.getGmailDetails(accessTokenDTO);
return user != null ? "{\"response\":\"" + user.getUId() + "\"}" : "{\"response\":\"Not Found\"}";
}
@PostMapping({"/facebooklogin"})
public String facebookLogin(@RequestBody AccessTokenDTO accessTokenDTO) throws Exception {
FacebookDTO userDTO = (FacebookDTO)(new RestTemplate()).getForObject("https://graph.facebook.com/v2.9/me?fields=email,name,id,first_name,last_name&access_token=" + accessTokenDTO.getAccessToken(), FacebookDTO.class, new Object[0]);
System.out.println(userDTO);
if (userDTO != null) {
UserInfoDTO user = new UserInfoDTO();
user.setEmail(userDTO.getEmail());
user.setLoginType(accessTokenDTO.getLoginType());
user.setName(userDTO.getName());
Login login = this.loginService.saveFacebook(user);
return "{\"response\":\"" + login.getUId() + "\"}";
} else {
return "{\"response\":\"Not Found\"}";
}
}
}
<file_sep>package com.coviam.t3login.repository;
import com.coviam.t3login.entity.Login;
import org.springframework.data.repository.CrudRepository;
import org.springframework.stereotype.Repository;
import java.util.List;
import java.util.Optional;
@Repository
public interface LoginRepository extends CrudRepository<Login, String> {
Login findPasswordByEmail(String email);
//List<Login> getAll();
}
<file_sep>//
// Source code recreated from a .class file by IntelliJ IDEA
// (powered by Fernflower decompiler)
//
package com.coviam.t3login.dto;
public class LoginDTO {
private String email;
private String password;
private String loginType;
private String deviceId;
public LoginDTO() {
}
public String getEmail() {
return this.email;
}
public String getPassword() {
return this.password;
}
public String getLoginType() {
return this.loginType;
}
public String getDeviceId() {
return this.deviceId;
}
public void setEmail(String email) {
this.email = email;
}
public void setPassword(String password) {
this.password = <PASSWORD>;
}
public void setLoginType(String loginType) {
this.loginType = loginType;
}
public void setDeviceId(String deviceId) {
this.deviceId = deviceId;
}
public String toString() {
return "LoginDTO(email=" + this.getEmail() + ", password=" + this.getPassword() + ", loginType=" + this.getLoginType() + ", deviceId=" + this.getDeviceId() + ")";
}
}
<file_sep>//
// Source code recreated from a .class file by IntelliJ IDEA
// (powered by Fernflower decompiler)
//
package com.coviam.t3login.client;
import com.coviam.t3login.dto.CustomerDTO;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
@FeignClient("http://bookstore-customer.herokuapp.com/")
public interface CustomerClient {
@PostMapping({"/add"})
String add(@RequestBody CustomerDTO var1);
@GetMapping({"/getCustomerById/{id}"})
CustomerDTO getCustomerById(@PathVariable("id") String var1);
@GetMapping({"/getEmailById/{id}"})
String getEmailById(@PathVariable("id") String var1);
}
<file_sep>//
// Source code recreated from a .class file by IntelliJ IDEA
// (powered by Fernflower decompiler)
//
package com.coviam.t3login.service.impl;
import com.coviam.t3login.client.CartClient;
import com.coviam.t3login.client.CustomerClient;
import com.coviam.t3login.client.MerchantClient;
import com.coviam.t3login.dto.*;
import com.coviam.t3login.dto.LoginDTO;
import com.coviam.t3login.entity.Login;
import com.coviam.t3login.entity.LoginHistory;
import com.coviam.t3login.repository.LoginHistoryRepository;
import com.coviam.t3login.repository.LoginRepository;
import com.coviam.t3login.service.LoginHistoryService;
import com.coviam.t3login.service.LoginService;
import java.text.DateFormat;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
import java.util.stream.Collectors;
import org.springframework.beans.BeanUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.cache.annotation.CacheEvict;
import org.springframework.security.crypto.bcrypt.BCryptPasswordEncoder;
import org.springframework.stereotype.Service;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestParam;
@Service
public class LoginServiceImpl implements LoginService {
@Autowired
CustomerClient customerClient;
@Autowired
MerchantClient merchantClient;
@Autowired
LoginHistoryRepository loginHistoryRepository;
@Autowired
CartClient cartClient;
@Autowired
private LoginRepository loginRepository;
@Autowired
private LoginHistoryService loginHistoryService;
public LoginServiceImpl() {
}
private static String pass(String password) {
BCryptPasswordEncoder passwordEncoder = new BCryptPasswordEncoder();
return passwordEncoder.encode(password);
}
public String signup(@RequestBody SignupDto1 signupDto1) {
Login login = new Login();
List<Login> list = (ArrayList)this.loginRepository.findAll();
System.out.println(signupDto1);
list = (List)list.stream().filter((login1) -> {
return login1.getEmail().equals(signupDto1.getEmail());
}).collect(Collectors.toList());
if (list.size() != 0) {
return "{\"response\":\"already Exists\"}";
} else {
signupDto1.setPassword(<PASSWORD>(signup<PASSWORD>()));
BeanUtils.copyProperties(signupDto1, login);
login.setLoginType(signupDto1.getLoginType());
System.out.println("-------------------" + signupDto1.getLoginType());
Login userCreated = (Login)this.loginRepository.save(login);
String response = userCreated.getUId();
if (response != null && "customer".equals(signupDto1.getLoginType())) {
CustomerDTO customerDTO = new CustomerDTO();
customerDTO.setAddress(signupDto1.getAddress());
customerDTO.setCustomerId(response);
customerDTO.setName(signupDto1.getName());
customerDTO.setEmail(signupDto1.getEmail());
customerDTO.setPhoneNumber(signupDto1.getPhoneNumber());
customerDTO.setPincode(signupDto1.getPincode());
System.out.println("connecting to clinet");
System.out.println("-->" + customerDTO.getCustomerId());
return "{\"response\":\"" + this.customerClient.add(customerDTO) + "\"}";
} else if (response != null && "merchant".equals(signupDto1.getLoginType())) {
MerchantDTO merchantDTO = new MerchantDTO();
merchantDTO.setMerchantAddress(signupDto1.getAddress());
merchantDTO.setMerchantId(response);
merchantDTO.setMerchantName(signupDto1.getName());
merchantDTO.setMerchantEmail(signupDto1.getEmail());
merchantDTO.setMerchantPhone(signupDto1.getPhoneNumber());
merchantDTO.setPincode(signupDto1.getPincode());
System.out.println("connecting to clinet");
System.out.println("-->" + merchantDTO.getMerchantId());
return "{\"response\":\"" + this.merchantClient.addMerchant(merchantDTO) + "\"}";
} else {
return "{\"response\":\"" + response + "\"}";
}
}
}
@CacheEvict(
value = {"user"},
key = "#email"
)
public void evictCacheForKey(@RequestParam("email") String email) {
}
public String login(@RequestBody LoginDTO loginDTO) {
BCryptPasswordEncoder passwordEncoder = new BCryptPasswordEncoder();
String email = loginDTO.getEmail();
String newPass = loginDTO.getPassword();
System.out.println(loginDTO);
List<Login> list = (ArrayList)this.loginRepository.findAll();
System.out.println("Printing list" + list);
list = (List)list.stream().filter((login1) -> {
return login1.getEmail().equals(loginDTO.getEmail()) && login1.getLoginType().equals(loginDTO.getLoginType());
}).collect(Collectors.toList());
if (list.size() != 0) {
Login loginServicePass = this.loginRepository.findPasswordByEmail(email);
if (passwordEncoder.matches(newPass, loginServicePass.getPassword())) {
LoginHistory loginHistory = new LoginHistory();
loginHistory.setUid(loginServicePass.getUId());
DateFormat df = new SimpleDateFormat("dd/MM/yy HH:mm:ss");
Date dateobj = new Date();
loginHistory.setTimeStamp(df.format(dateobj));
this.loginHistoryService.save(loginHistory);
String status = ((Login)list.get(0)).getUId();
if (loginDTO.getDeviceId() != null) {
CartUpdateDTO cartUpdateDTO = new CartUpdateDTO();
cartUpdateDTO.setCartId(loginDTO.getDeviceId());
cartUpdateDTO.setCustomerId(status);
System.out.println("Upadating cart----->" + cartUpdateDTO);
this.cartClient.updateGuestCart(cartUpdateDTO);
}
return "{\"response\":\"" + status + "\"}";
} else {
return "{\"response\":\"Wrong Password\"}";
}
} else {
return "{\"response\":\"Not registered\"}";
}
}
public Login save(Login login, String name) {
String loginType = login.getLoginType();
Login new_login = (Login)this.loginRepository.save(login);
if ("customer".equals(loginType)) {
CustomerDTO customerDTO = new CustomerDTO();
customerDTO.setCustomerId(new_login.getUId());
customerDTO.setEmail(new_login.getEmail());
customerDTO.setName(name);
System.out.println(new_login);
this.customerClient.add(customerDTO);
} else {
MerchantDTO merchantDTO = new MerchantDTO();
merchantDTO.setMerchantEmail(new_login.getEmail());
merchantDTO.setMerchantId(new_login.getUId());
merchantDTO.setMerchantName(name);
this.merchantClient.addMerchant(merchantDTO);
}
LoginHistory loginHistory = new LoginHistory();
loginHistory.setUid(new_login.getUId());
DateFormat df = new SimpleDateFormat("dd/MM/yy HH:mm:ss");
Date dateobj = new Date();
loginHistory.setTimeStamp(df.format(dateobj));
this.loginHistoryService.save(loginHistory);
return new_login;
}
public Login saveFacebook(UserInfoDTO user) {
Login login = new Login();
login.setLoginType(user.getLoginType());
login.setEmail(user.getEmail());
List<Login> userList = (ArrayList)this.loginRepository.findAll();
userList = (List)userList.stream().filter((login1) -> {
return user.getEmail().equals(login1.getEmail());
}).collect(Collectors.toList());
Login new_login;
if (userList.size() == 0) {
new_login = (Login)this.loginRepository.save(login);
} else {
new_login = (Login)userList.get(0);
}
if ("customer".equals(login.getLoginType())) {
CustomerDTO customerDTO = new CustomerDTO();
customerDTO.setCustomerId(new_login.getUId());
customerDTO.setEmail(new_login.getEmail());
customerDTO.setName(user.getName());
System.out.println(new_login);
this.customerClient.add(customerDTO);
} else {
MerchantDTO merchantDTO = new MerchantDTO();
merchantDTO.setMerchantEmail(new_login.getEmail());
merchantDTO.setMerchantId(new_login.getUId());
merchantDTO.setMerchantName(user.getName());
this.merchantClient.addMerchant(merchantDTO);
}
LoginHistory loginHistory = new LoginHistory();
loginHistory.setUid(new_login.getUId());
DateFormat df = new SimpleDateFormat("dd/MM/yy HH:mm:ss");
Date dateobj = new Date();
loginHistory.setTimeStamp(df.format(dateobj));
this.loginHistoryService.save(loginHistory);
return new_login;
}
public ArrayList<Login> getAll() {
return (ArrayList)this.loginRepository.findAll();
}
public Login findPass(String email) {
System.out.println("----------" + email);
ArrayList<Login> loginArrayList = (ArrayList)this.loginRepository.findAll();
return (Login)((List)loginArrayList.stream().filter((login) -> {
return email.equals(login.getEmail());
}).collect(Collectors.toList())).get(0);
}
}
<file_sep>//
// Source code recreated from a .class file by IntelliJ IDEA
// (powered by Fernflower decompiler)
//
package com.coviam.t3login.entity;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.Id;
import javax.persistence.Table;
import org.hibernate.annotations.GenericGenerator;
@Entity
@Table(
name = "LOGINHISTORY"
)
public class LoginHistory {
@Id
@GeneratedValue(
generator = "uid"
)
@GenericGenerator(
name = "uid",
strategy = "org.hibernate.id.UUIDGenerator"
)
@Column(
name = "_id"
)
private String _id;
private String Uid;
private String timeStamp;
public LoginHistory() {
}
public String get_id() {
return this._id;
}
public String getUid() {
return this.Uid;
}
public String getTimeStamp() {
return this.timeStamp;
}
public void set_id(String _id) {
this._id = _id;
}
public void setUid(String Uid) {
this.Uid = Uid;
}
public void setTimeStamp(String timeStamp) {
this.timeStamp = timeStamp;
}
}
<file_sep>//
// Source code recreated from a .class file by IntelliJ IDEA
// (powered by Fernflower decompiler)
//
package com.coviam.t3login.service;
import com.coviam.t3login.entity.LoginHistory;
import java.util.List;
public interface LoginHistoryService {
void save(LoginHistory var1);
List<String> getLoginHistoryById(String var1);
}
<file_sep>package com.coviam.t3login.repository;
import com.coviam.t3login.entity.LoginHistory;
import org.springframework.data.repository.CrudRepository;
import org.springframework.stereotype.Repository;
@Repository
public interface LoginHistoryRepository extends CrudRepository<LoginHistory,String> {
}
<file_sep>//
// Source code recreated from a .class file by IntelliJ IDEA
// (powered by Fernflower decompiler)
//
package com.coviam.t3login.service.impl;
import com.coviam.t3login.entity.LoginHistory;
import com.coviam.t3login.repository.LoginHistoryRepository;
import com.coviam.t3login.service.LoginHistoryService;
import java.util.List;
import java.util.function.Function;
import java.util.function.Predicate;
import java.util.stream.Collectors;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
@Service
public class LoginHistoryServiceImpl implements LoginHistoryService {
@Autowired
private LoginHistoryRepository loginHistoryRepository;
public LoginHistoryServiceImpl() {
}
public List<String> getLoginHistoryById(String id) {
List<LoginHistory> historyList = (List)this.loginHistoryRepository.findAll();
System.out.println(historyList);
return (List)historyList.stream().filter((loginHistory) -> {
return loginHistory.getUid().equals(id);
}).map((loginHistory) -> {
return loginHistory.getTimeStamp();
}).collect(Collectors.toList());
}
public void save(LoginHistory loginHistory) {
this.loginHistoryRepository.save(loginHistory);
}
}
<file_sep>package com.coviam.t3login;
import org.springframework.boot.test.context.SpringBootTest;
@SpringBootTest
class T3LoginApplicationTests {
}
<file_sep>//
// Source code recreated from a .class file by IntelliJ IDEA
// (powered by Fernflower decompiler)
//
package com.coviam.t3login.client;
import com.coviam.t3login.dto.MerchantDTO;
import java.util.List;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
@FeignClient("http://bookstore-merchant.herokuapp.com/")
public interface MerchantClient {
@PostMapping({"/addMerchant"})
String addMerchant(@RequestBody MerchantDTO var1);
@GetMapping({"/getMerchantById/{id}"})
MerchantDTO getMerchantById(@PathVariable("id") String var1);
@GetMapping({"/getMerchantByProductId/{id}"})
List<MerchantDTO> getMerchantByProductId(@PathVariable("id") String var1);
}
<file_sep>//
// Source code recreated from a .class file by IntelliJ IDEA
// (powered by Fernflower decompiler)
//
package com.coviam.t3login.dto;
public class UserInfoDTO {
private String email;
private String name;
private String loginType;
public UserInfoDTO() {
}
public String toString() {
return "UserInfoDTO(email=" + this.getEmail() + ", name=" + this.getName() + ", loginType=" + this.getLoginType() + ")";
}
public String getEmail() {
return this.email;
}
public String getName() {
return this.name;
}
public String getLoginType() {
return this.loginType;
}
public void setEmail(String email) {
this.email = email;
}
public void setName(String name) {
this.name = name;
}
public void setLoginType(String loginType) {
this.loginType = loginType;
}
}
<file_sep>//
// Source code recreated from a .class file by IntelliJ IDEA
// (powered by Fernflower decompiler)
//
package com.coviam.t3login.client;
import com.coviam.t3login.dto.CartUpdateDTO;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
@FeignClient("http://bookstore-cart.herokuapp.com/")
public interface CartClient {
@PostMapping({"/updateGuestCart"})
void updateGuestCart(@RequestBody CartUpdateDTO var1);
}
| 14e04a98a8d6ed7ea8398ef459270acd13c3cf3c | [
"Java"
] | 16 | Java | dhruvtailor7/bookstore_loginMS | 0542601f8a027e17bc04434e2182681d77e737d5 | a151db0a63fcb8b5ff6c85cbd949519ce7df8b91 |
refs/heads/master | <repo_name>lakhansamani/ak-xyz<file_sep>/src/App.js
import React, { Component } from 'react';
import './App.css';
import InvitationCard from './images/frame.jpg'
class App extends Component {
render() {
return (
<div className="app-container">
<img src={InvitationCard} className="invitation-card" alt="invitation-card" />
<a href="https://goo.gl/maps/8TZ4rNTgc362" target="_blank" className="location-link" rel="noopener noreferrer">
<i className="fas fa-map-marker-alt" /> The Grand Gayatri, Shubhanpura
</a>
</div>
);
}
}
export default App;
| 3bf4bfcac15bb3cffac7a708f491e3ad3b109e93 | [
"JavaScript"
] | 1 | JavaScript | lakhansamani/ak-xyz | 272a99e6db8d379a9248d4a8ac1a28152ae632fc | a89bf2a68d1d087adf30d6f0abb53549ada28c2e |
refs/heads/master | <repo_name>VictorMiBe/Login-Ventas<file_sep>/pedidos.php
<?php
session_start();
if (isset($_SESSION['user_id'])) {
require 'db.php';
$msg = '';
$records = $conn->prepare('SELECT * FROM seguridad WHERE id = :id');
$records->bindParam(':id', $_SESSION['user_id']);
$records->execute();
$results = $records->fetch(PDO::FETCH_ASSOC);
$user = null;
if (count($results) > 0) {
$user = $results;
}
if (isset($_POST['addPedido'])) {
$sql2 = "INSERT INTO pedido (total, fecha, id_cliente, id_comercial)
VALUES (:total, :fecha, :id_cliente, :id_comercial)";
$decInsPed = $conn->prepare($sql2);
$decInsPed->bindParam(':total', $_POST['total']);
$decInsPed->bindParam(':id_cliente',$_POST['idCliente']);
$decInsPed->bindParam(':id_comercial', $_POST['idComercial']);
$decInsPed->bindParam(':fecha', $_POST['fecha']);
$decInsPed->execute();
$message = "Pedido guardado con exito";
}
}
?>
<?php include('includes/header.php')?>
<body>
<?php if(isset($_SESSION['user_id'])): ?>
<div class="nav nav-expanded" id="nav">
<div class="icon-nav" id="icon-nav">
<span><?= $user['usuario']; ?></span><i class="icon-menu"></i>
</div>
<div class="img-nav">
<a href="#"><img src="./img/image 1.jpg"></a>
</div>
<div class="collection-buttons">
<ul class="section-buttons">
<a href="#">
<li>
<i class="icon-home"></i>
<span>Pedidos</span>
</li>
</a>
<a href="#">
<li>
<i class="icon-library"></i>
<span>Clientes</span>
</li>
</a>
<a href="#">
<li>
<i class="icon-images"></i>
<span>Comerciales</span>
</li>
</a>
<a href="cambiarContra.php">
<li>
<i class="icon-folder-open"></i>
<span>Cambiar Contra</span>
</li>
</a>
<a href="signup.php">
<li>
<i class="icon-home"></i>
<span>Agregar Admin</span>
</li>
</a>
</ul>
</div>
<a href="logout.php">
<div class="btn-exit">
<span>Desconectarse</span><i class="icon-exit"></i>
</div>
</a>
</div>
<div class="contenido">
<h2>Pedidos</h2>
<?php if(!empty($message)): ?>
<p class="msgPedido"> <?= $message ?></p>
<?php endif; ?>
<div class="contenido-contenido">
<div class="addPedido">
<h1>Nuevo pedido</h1>
<form action="pedidos.php" method="POST">
<input name="total" type="number" step="0.01" min=0 placeholder="Introduzca el total del pedido" requerid>
<input type="date" name="fecha" required>
<select name="idCliente" id="">
<option value="">Elige un cliente</option>
<?php
$sentencia2 = $conn->query("SELECT id, nombre FROM cliente");
$clientes = $sentencia2->fetchAll(PDO::FETCH_OBJ);
foreach($clientes as $cliente){
?>
<option value="<?php print($cliente->id); ?>"><?php print($cliente->nombre); ?></option>
<?php
}
?>
</select>
<select name="idComercial" id="">
<option value="">Elige un comercial</option>
<?php
$sentencia3 = $conn->query("SELECT id, nombre FROM comercial");
$comerciales = $sentencia3->fetchAll(PDO::FETCH_OBJ);
foreach($comerciales as $comercial){
?>
<option value="<?php print($comercial->id); ?>"><?php print($comercial->nombre); ?></option>
<?php
}
?>
</select>
<input name='addPedido' type="submit" value="Enviar">
</form>
</div>
<div class="tablaPedidos">
<table class="tablita">
<thead>
<tr>
<th>ID</th>
<th>Total</th>
<th>Fecha</th>
<th>id_cliente</th>
<th>id_comercial</th>
</tr>
</thead>
<tbody>
<?php
$sentencia = $conn->query("SELECT * FROM pedido");
$row = $sentencia->fetchAll(PDO::FETCH_OBJ);
foreach($row as $dato){
?>
<tr>
<td><?php echo $dato->id; ?></td>
<td><?php echo $dato->total; ?></td>
<td><?php echo $dato->fecha; ?></td>
<td><?php echo $dato->id_cliente; ?></td>
<td><?php echo $dato->id_comercial; ?></td>
</tr>
<?php
}
?>
</tbody>
</table>
</div>
</div>
</div>
<?php else: ?>
<?php require 'partials/header.php' ?>
<?php header('Location:login.php'); ?>
<?php endif; ?>
</body>
</html>
<file_sep>/reporte.php
<?php
require('fpdf182/fpdf.php');
$pdf = new FPDF();
$pdf->AddPage();
$pdf->SetFont('Arial', 'B', 16);
$pdf->Cell(40, 10, '<NAME>!');
$pdf->Output();
?><file_sep>/cambiarContra.php
<?php
session_start();
if (isset($_POST['cambio'])) {
require 'db.php';
$message2 = '';
$records2 = $conn->prepare("SELECT contraseña FROM seguridad WHERE id = :id");
$records2->bindParam(':id', $_SESSION['user_id']);
$records2->execute();
$results2 = $records2->fetch(PDO::FETCH_ASSOC);
if (password_verify($_POST['passwordActual'], $results2['contraseña'])) {
if ($_POST['passwordNew'] == $_POST['confirm_password']) {
$pass1 = password_hash($_POST['passwordNew'], PASSWORD_BCRYPT);
$records3 = $conn->prepare("UPDATE seguridad SET contraseña = <PASSWORD>' WHERE id = :id");
$records3->bindParam(':id', $_SESSION['user_id']);
if ($records3->execute()){
$message2 = "Se ha actualizado la contraseña";
}
}
else{
$message2 = "Las dos contraseñas no coinciden";
}
}
else{
$message2 = "Tu contraseña actual no coincide";
}
}
?>
<?php include('includes/header.php')?>
<?php if(isset($_SESSION['user_id'])): ?>
<?php require 'partials/header.php' ?>
<?php if(!empty($message2)):?>
<p> <?= $message2 ?></p>
<?php endif; ?>
<div class="contenedor">
<h1>Cambiar Contraseña</h1>
<h4>o <a href="login.php">Atras</a></h4>
<form action="cambiarContra.php" method="POST">
<input name="passwordActual" type="password" placeholder="<PASSWORD>" required>
<input name="passwordNew" type="password" placeholder="<PASSWORD>" required>
<input name="confirm_password" type="<PASSWORD>" placeholder="<PASSWORD>" required>
<input name="cambio" type="submit" value="Enviar">
</form>
</div>
<?php else: ?>
<?php require 'partials/header.php' ?>
<?php header('Location:login.php'); ?>
<?php endif; ?>
</body>
</html>
<file_sep>/index.php
<?php
session_start();
require 'db.php';
if (isset($_SESSION['user_id'])) {
$records = $conn->prepare('SELECT * FROM seguridad WHERE id = :id');
$records->bindParam(':id', $_SESSION['user_id']);
$records->execute();
$results = $records->fetch(PDO::FETCH_ASSOC);
$user = null;
if (count($results) > 0) {
$user = $results;
}
}
?>
<?php include('includes/header.php')?>
<body>
<?php if(!empty($user)): ?>
<div class="nav nav-expanded" id="nav">
<div class="icon-nav" id="icon-nav">
<span><?= $user['usuario']; ?></span><i class="icon-menu"></i>
</div>
<div class="img-nav">
<a href="#"><img src="./img/image 1.jpg"></a>
</div>
<div class="collection-buttons">
<ul class="section-buttons">
<a href="pedidos.php">
<li>
<i class="icon-home"></i>
<span>Pedidos</span>
</li>
</a>
<a href="reporte.php" target="_blank">
<li>
<i class="icon-library"></i>
<span>Reportes</span>
</li>
</a>
<a href="#">
<li>
<i class="icon-images"></i>
<span>Comerciales</span>
</li>
</a>
<a href="cambiarContra.php">
<li>
<i class="icon-folder-open"></i>
<span>Cambiar Contra</span>
</li>
</a>
<a href="signup.php">
<li>
<i class="icon-home"></i>
<span>Agregar Admin</span>
</li>
</a>
</ul>
</div>
<a href="logout.php">
<div class="btn-exit">
<span>Desconectarse</span><i class="icon-exit"></i>
</div>
</a>
</div>
<div class="contenido">
<h2>Bienvenido <?= $user['usuario']; ?></h2>
</div>
<?php else: ?>
<?php require 'partials/header.php' ?>
<?php header('Location:login.php'); ?>
<?php endif; ?>
</body>
</html>
<file_sep>/signup.php
<?php
session_start();
if (!empty($_POST['usuario']) && !empty($_POST['password'])) {
require 'db.php';
$message = '';
$sql = "SELECT usuario FROM seguridad WHERE usuario = :usuario";
$declaracion = $conn->prepare($sql);
$declaracion->bindParam(':usuario', $_POST['usuario']);
$declaracion->execute();
$results3 = $declaracion->fetch(PDO::FETCH_ASSOC);
if (empty($results3['usuario'])) {
if ($_POST['password'] == $_POST['confirm_password']) {
$sql = "INSERT INTO seguridad (ape_paterno, ape_materno, nombres, dni, fecha_alta, fecha_baja, usuario, contraseña)
VALUES (:ape_paterno, :ape_materno, :nombres, :dni, :fecha_alta, :fecha_baja, :usuario, :password)";
$stmt = $conn->prepare($sql);
$stmt->bindParam(':ape_paterno', $_POST['ape_paterno']);
$stmt->bindParam(':ape_materno', $_POST['ape_materno']);
$stmt->bindParam(':nombres', $_POST['nombres']);
$stmt->bindParam(':dni', $_POST['dni']);
$date1 = date('d-m-Y');
$date2 = '';
$stmt->bindParam(':fecha_alta', $date1);
$stmt->bindParam(':fecha_baja', $date2);
$stmt->bindParam(':usuario', $_POST['usuario']);
$password = password_hash($_POST['password'], PASSWORD_BCRYPT);
$stmt->bindParam(':password', $password);
if ($stmt->execute()) {
$message = 'Cuenta creada satisfactoriamente';
} else {
$message = 'Lo sentimos, debe haber un problema al crear su cuenta';
}
}
else{
$message = "Las dos contraseñas no coinciden";
}
}else{
$message = 'Ese usuario ya existe, elige otro';
}
}
?>
<?php include('includes/header.php')?>
<?php if(isset($_SESSION['user_id'])): ?>
<?php require 'partials/header.php' ?>
<?php if(!empty($message)): ?>
<p> <?= $message ?></p>
<?php endif; ?>
<div class="contenedor">
<h1>Registrarse</h1>
<h4>o <a href="login.php">Atras</a></h4>
<form action="signup.php" method="POST">
<input name="usuario" type="text" placeholder="Introduzca nuevo usuario" required>
<input name="ape_paterno" type="text" placeholder="Apellido paterno" required>
<input name="ape_materno" type="text" placeholder="Apellido materno" required>
<input name="nombres" type="text" placeholder="Nombres" required>
<input name="dni" type="text" placeholder="DNI" required>
<input name="password" type="<PASSWORD>" placeholder="<PASSWORD>" required>
<input name="confirm_password" type="<PASSWORD>" placeholder="<PASSWORD>" required>
<input type="submit" value="Enviar">
</form>
</div>
<?php else: ?>
<?php require 'partials/header.php' ?>
<?php header('Location:login.php'); ?>
<?php endif; ?>
</body>
</html>
/*
victorj11
*/ | ce08d0a8e65abc4de5d0b47bd984ff6f964b5579 | [
"PHP"
] | 5 | PHP | VictorMiBe/Login-Ventas | 7514ed9cde5d4230554772260e51d29df0124bfb | 255493131bd1575e05bfb0386472f9d6d63b9102 |
refs/heads/master | <repo_name>Noptech/chorp<file_sep>/chorp_angular/src/app/nav/nav.component.spec.ts
/* tslint:disable:no-unused-variable */
import {async, ComponentFixture, TestBed} from '@angular/core/testing';
import {By} from '@angular/platform-browser';
import {DebugElement} from '@angular/core';
import {NavComponent} from './nav.component';
import {AppRoutingModule, routableComponents} from "../app-routing.module";
import {StatusPipe} from "../tasks/types/status/status.pipe";
import {APP_BASE_HREF} from "@angular/common";
import {RouterTestingModule} from "@angular/router/testing";
import {FormsModule} from "@angular/forms";
import {DragulaModule} from "ng2-dragula/ng2-dragula";
describe('NavComponent', () => {
let component: NavComponent;
let fixture: ComponentFixture<NavComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
imports: [RouterTestingModule, FormsModule],
declarations: [NavComponent, routableComponents, StatusPipe],
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(NavComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
});
<file_sep>/chorp_angular/src/app/tasks/types/status/status.pipe.ts
import {Pipe, PipeTransform} from '@angular/core';
import {StatusEnum} from "./StatusType";
@Pipe({
name: 'status',
pure: false
})
export class StatusPipe implements PipeTransform {
transform(value: any, args?: any): any {
if (StatusEnum.DOING == value)
return "Doing";
else if (StatusEnum.DONE == value)
return "Done";
else if (StatusEnum.TODO == value)
return "Todo";
else
return "-";
}
}
<file_sep>/chorp_angular/src/app/tasks/types/TaskType.ts
import {StatusEnum} from "./status/StatusType";
export interface ITaskType {
id?: number;
title?: string;
description?: string;
status?: StatusEnum;
assignee?: number;
created?: Date;
dueDate?: Date;
setStatus(newStatus: StatusEnum): ITaskType;
}
export class TaskType implements ITaskType {
id: number;
title: string;
description: string;
status: StatusEnum;
assignee: number;
created: Date;
dueDate: Date;
constructor(obj?: ITaskType) {
if (obj) {
this.id = obj.id;
this.title = obj.title;
this.description = obj.description;
this.status = obj.status;
this.assignee = obj.assignee;
this.dueDate = obj.dueDate;
this.created = obj.created || new Date();
}
}
setId(id: number): ITaskType {
this.id = id;
return this;
}
setStatus(statusEnum: StatusEnum): ITaskType {
this.status = statusEnum;
return this;
}
}
<file_sep>/api_server/chorp_models/models.py
from django.db import models
from django.contrib.auth.models import User
import datetime
def date_str(o):
DATE_FORMAT = "%Y-%m-%d"
TIME_FORMAT = "%H:%M:%S"
if isinstance(o, datetime.date):
return o.strftime(DATE_FORMAT)
elif isinstance(o, datetime.time):
return o.strftime(TIME_FORMAT)
elif isinstance(o, datetime.datetime):
return o.strftime("%s %s" % (DATE_FORMAT, TIME_FORMAT))
class Task(models.Model):
status_types = (
(0, 'Todo'),
(1, 'Doing'),
(2, 'Done')
)
title = models.CharField(max_length=50, blank=False, null=False)
description = models.CharField(max_length=500, blank=True)
status = models.IntegerField(null=False, default=0, choices=status_types)
assignee = models.ForeignKey(User, null=True, blank=True, on_delete=models.SET_NULL)
created = models.DateTimeField(auto_now_add=True)
due_date = models.DateField(null=True, blank=True)
def __str__(self):
return self.title
class Meta:
ordering = ('due_date', 'created')
class Account(models.Model):
balance = models.BigIntegerField(default=0)
owner = models.ForeignKey(User, on_delete=models.CASCADE)
def __str__(self):
return ''.join([self.owner.username, ': ', self.balance])
class AccountTransaction(models.Model):
account = models.ForeignKey(Account, on_delete=models.CASCADE)
transaction_time = models.DateTimeField(auto_now_add=True)
amount = models.BigIntegerField()
def __str__(self):
return ''.join([self.account.owner.username, ': ', self.amount, ' - ', date_str(self.transaction_time)])
<file_sep>/api_server/requirements.txt
Django==1.10.2
django-crispy-forms==1.6.1
django-filter==0.15.3
django-guardian==1.4.6
djangorestframework==3.4.7
Markdown==2.6.7
graphene-django>=1.0
django-rest-swagger==2.0.5
coverage==4.2
tox==2.4.1
djangorestframework-camel-case==0.2.0
django-cors-headers==1.3.1<file_sep>/chorp_angular/src/app/allowance-accounts/allowance-accounts.module.ts
import { AllowanceAccountService } from './shared/allowance-account.service';
import { CommonModule } from '@angular/common';
import { NgModule } from '@angular/core';
import { AllowanceAccountsRoutingModule, routedComponents } from './allowance-accounts-routing.module';
@NgModule({
imports: [AllowanceAccountsRoutingModule, CommonModule],
declarations: [routedComponents],
providers: [AllowanceAccountService]
})
export class AllowanceAccountsModule { }
<file_sep>/api_server/chorp_models/admin.py
from django.contrib import admin
from .models import Task, Account, AccountTransaction
@admin.register(Task)
class TaskAdmin(admin.ModelAdmin):
pass
@admin.register(Account)
class AccountAdmin(admin.ModelAdmin):
pass
@admin.register(AccountTransaction)
class AccountTransactionAdmin(admin.ModelAdmin):
pass
<file_sep>/alternative clients/fountain-react-es6/src/app/containers/TasksPage.js
import React, {Component, PropTypes} from 'react';
import {bindActionCreators} from 'redux';
import {connect} from 'react-redux';
import Layout from '../components/Layout';
import * as TodoActions from '../actions/index';
class TasksPage extends Component {
componentWillMount() {
this.props.actions.loadTasks();
}
render() {
return (
<Layout>
<p>Taskspage</p>
</Layout>
);
}
}
TasksPage.propTypes = {
tasks: PropTypes.array,
actions: PropTypes.object.isRequired
};
function mapStateToProps(state) {
return {
tasks: state.tasks
};
}
function mapDispatchToProps(dispatch) {
return {
actions: bindActionCreators(TodoActions, dispatch)
};
}
export default connect(
mapStateToProps,
mapDispatchToProps
)(TasksPage);
<file_sep>/alternative clients/fountain-react-es6/src/app/components/Layout/Navbar.js
import React, {Component} from 'react';
import {Menu} from 'semantic-ui-react';
import {Link} from 'react-router';
class Navbar extends Component {
render() {
return (
<Menu>
<Menu.Item as={Link} to=''>
Homepage
</Menu.Item>
<Menu.Item as={Link} to='/tasks'>
Tasks
</Menu.Item>
</Menu>
);
}
}
export default Navbar;
<file_sep>/api_server/chorp_rest_api/views.py
from django.views.decorators.csrf import csrf_exempt
from chorp_models.models import Task, Account, AccountTransaction
from rest_framework import viewsets
from .serializers import TaskSerializer, AccountSerializer, AccountTransactionSerializer
class TaskViewSet(viewsets.ModelViewSet):
queryset = Task.objects.all()
serializer_class = TaskSerializer
@csrf_exempt
def dispatch(self, request, *args, **kwargs):
return super(TaskViewSet, self).dispatch(request)
class AccountViewSet(viewsets.ModelViewSet):
queryset = Account.objects.all()
serializer_class = AccountSerializer
@csrf_exempt
def dispatch(self, request, *args, **kwargs):
return super(AccountViewSet, self).dispatch(request)
class AccountTransactionViewSet(viewsets.ModelViewSet):
queryset = AccountTransaction.objects.all()
serializer_class = AccountTransactionSerializer
@csrf_exempt
def dispatch(self, request, *args, **kwargs):
return super(AccountTransactionViewSet, self).dispatch(request)
<file_sep>/client/app/components/Navbar/index.js
/**
*
* Navbar
*
*/
import React from 'react';
import AppBar from 'material-ui/AppBar';
import FlatButton from 'material-ui/FlatButton';
import { FormattedMessage } from 'react-intl';
import messages from './messages';
import A from '../A';
import styles from './styles.css';
function Navbar() {
return (
<AppBar
title={<FormattedMessage {...messages.title} />}
iconClassNameRight="muidocs-icon-navigation-expand-more"
iconElementRight={<FlatButton label={<A href="/tasks"> <FormattedMessage {...messages.tasks} /></A>}/>}
/>
);
}
export default Navbar;
<file_sep>/api_server/chorp_rest_api/serializers.py
from chorp_models.models import Task, Account, AccountTransaction
from rest_framework import serializers
class TaskSerializer(serializers.HyperlinkedModelSerializer):
class Meta:
model = Task
fields = ('id', 'title', 'description', 'status', 'assignee', 'due_date', 'created')
class AccountSerializer(serializers.HyperlinkedModelSerializer):
class Meta:
model = Account
fields = ('id', 'balance', 'owner')
class AccountTransactionSerializer(serializers.HyperlinkedModelSerializer):
class Meta:
model = AccountTransaction
fields = ('id', 'account', 'transaction_time', 'amount')
<file_sep>/chorp_angular/src/app/tasks/tasks.component.ts
import {Component, OnInit} from '@angular/core';
import {TasksService} from "./tasks.service";
import {TaskType, ITaskType} from "./types/TaskType";
import {StatusEnum} from "./types/status/StatusType";
import {DragulaService} from "ng2-dragula/components/dragula.provider";
@Component({
selector: 'app-tasks',
templateUrl: './tasks.component.html',
styleUrls: ['./tasks.component.css'],
providers: [TasksService]
})
export class TasksComponent implements OnInit {
statusEnum = StatusEnum;
tasks: Array<ITaskType>; // Linked to the array in taskservice
newTask: ITaskType;
constructor(private tasksService: TasksService, private dragulaService: DragulaService) {
this.newTask = this.tasksService.getNewTask();
dragulaService.drop.subscribe(value => {
this.onDrop(value);
});
}
private onDrop(args) {
const newStatus: StatusEnum = StatusEnum[StatusEnum[args[2].attributes['status'].value]];
const itemId: number = args[1].attributes['taskId'].value;
this.tasks = this.tasksService.updateStatus(itemId, newStatus);
}
ngOnInit() {
this.tasks = this.tasksService.getAll();
}
resetNewTaskTitle() {
this.newTask.title = null;
}
saveNewTask(): ITaskType {
if (this.newTask.title) {
console.log('saveNewTask');
this.newTask.status = StatusEnum.TODO;
this.newTask.assignee = 1;
const savedTask = this.tasksService.add(this.newTask);
this.newTask = this.tasksService.getNewTask();
return savedTask;
}
}
}
<file_sep>/chorp_angular/src/models/account-transaction.model.ts
import { Account } from './account.model';
export class AccountTransaction {
account: string;
transactionTime: Date;
amount: number;
}
<file_sep>/alternative clients/fountain-react-es6/src/app/components/TaskItem.js
import React, {PropTypes} from 'react';
const TaskItem = function (props) {
return (
<li>
{props.task.title}
</li>
);
};
TaskItem.propTypes = {
task: PropTypes.object.isRequired
};
export default TaskItem;
<file_sep>/api_server/chorp_rest_api/test_serializers.py
from django.test import TestCase
from chorp_models.models import Task
from chorp_rest_api.serializers import TaskSerializer
def get_model_fields(model):
return model._meta.fields
def get_name_from_serializer_field(field):
return str(field).split('.')[2]
class SerializersTestCase(TestCase):
def test_task_serializer_contains_all_fields(self):
serializer = TaskSerializer()
for field in get_model_fields(Task()):
# chorp_models.Task.id etc.
field_name = get_name_from_serializer_field(field)
# if field_name not in ['id', 'created']:
self.assertIsNotNone(serializer.fields[field_name])
<file_sep>/chorp_angular/src/app/tasks/tasks.module.ts
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import {FormsModule} from "@angular/forms";
import {BrowserModule} from "@angular/platform-browser";
import {StatusLabelComponent} from "../status-label/status-label.component";
import {DragulaModule} from "ng2-dragula/ng2-dragula";
import {FilterByStatusPipe} from "./types/status/filter-by-status.pipe";
import {TasksListComponent} from "../tasks-list/tasks-list.component";
@NgModule({
imports: [
CommonModule,
BrowserModule,
FormsModule,
DragulaModule
],
declarations: [StatusLabelComponent, FilterByStatusPipe, TasksListComponent]
})
export class TasksModule { }
<file_sep>/chorp_angular/src/app/tasks/tasks.service.ts
import {Injectable} from "@angular/core";
import {ITaskType, TaskType} from "./types/TaskType";
import {StatusEnum} from "./types/status/StatusType";
@Injectable()
export class TasksService {
items: ITaskType[] = [];
taskId: number = 0;
constructor() {
}
getAll(status?: StatusEnum): ITaskType[] {
if (status !== undefined) {
return this.items.filter(
task => {
return task.status === status
});
} else {
return this.items;
}
}
add(task: ITaskType) {
task.created = new Date();
this.items.push(task);
return task;
}
updateStatus(itemId: number, newStatus: StatusEnum) {
for (var i in this.items) {
if (this.items[i].id == itemId) {
this.items[i].setStatus(newStatus);
return this.items;
}
}
}
getNewTask() {
return new TaskType().setId(this.taskId++);
}
}
<file_sep>/alternative clients/fountain-react-es6/src/index.js
import 'babel-polyfill';
import React from 'react';
import {render} from 'react-dom';
import {Provider} from 'react-redux';
import HomePage from './app/components/HomePage';
import TasksPage from './app/containers/TasksPage';
import configureStore from './app/store/configureStore';
import {Router, Route, browserHistory} from 'react-router';
import '../node_modules/semantic-ui-css/semantic.css';
const store = configureStore();
render(
<Provider store={store}>
<Router history={browserHistory}>
<Route path="/" component={HomePage}/>
<Route path="/tasks" component={TasksPage}/>
</Router>
</Provider>,
document.getElementById('root')
);
<file_sep>/client/app/containers/TasksPage/index.js
/*
*
* TasksPage
*
*/
import React from 'react';
import {connect} from 'react-redux';
import Helmet from 'react-helmet';
import selectTasksPage from './selectors';
import {FormattedMessage} from 'react-intl';
import messages from './messages';
import styles from './styles.css';
import {addTask, removeTask} from './actions';
import Button from '../../components/Button';
export class TasksPage extends React.Component { // eslint-disable-line react/prefer-stateless-function
render() {
return (
<div className={styles.tasksPage}>
<Helmet
title="TasksPage"
meta={[
{name: 'description', content: 'Description of TasksPage'},
]}
/>
<FormattedMessage {...messages.header} />
<Button onClick={this.props.onAddTask}>
Add task
</Button>
<ul>
{this.props.tasks.map(function (item) {
return <li key={item.key} value={item.key} onClick={this.props.onRemoveTask}>
{item.title} - {item.description}
</li>
}, this)}
</ul>
</div>
);
}
}
const mapStateToProps = selectTasksPage();
var i = 0;
function getNewTask() {
i++;
return {key: i, title: 'Hello', description: 'World' + i};
}
function mapDispatchToProps(dispatch) {
return {
onAddTask: (evt) => dispatch(addTask(getNewTask())),
onRemoveTask: (evt) => dispatch(removeTask(evt.target.value)),
dispatch,
};
}
export default connect(mapStateToProps, mapDispatchToProps)(TasksPage);
<file_sep>/client/app/containers/TasksPage/reducer.js
/*
*
* TasksPage reducer
*
*/
import {fromJS} from 'immutable';
import {findIndex} from 'lodash';
import {
DEFAULT_ACTION,
ADD_TASK_ACTION,
REMOVE_TASK_ACTION
} from './constants';
const initialState = fromJS({
tasks: []
});
function tasksPageReducer(state = initialState, action) {
switch (action.type) {
case ADD_TASK_ACTION:
return state
.setIn(['tasks'], state.get('tasks').push(action.task));
case REMOVE_TASK_ACTION:
return state
.setIn(['tasks'], state.get('tasks').filter(function(obj){ return obj.key != action.key}));
case DEFAULT_ACTION:
return state;
default:
return state;
}
}
export default tasksPageReducer;
<file_sep>/alternative clients/fountain-react-es6/src/app/components/Layout/index.js
import React, {Children, PropTypes} from 'react';
import Navbar from './Navbar';
function Layout({children}) {
return (
<div>
<Navbar/>
{Children.only(children)}
</div>
);
}
Layout.propTypes = {
children: PropTypes.element.isRequired
};
export default Layout;
<file_sep>/api_server/core/urls.py
"""api URL Configuration
The `urlpatterns` list routes URLs to views. For more information please see:
https://docs.djangoproject.com/en/1.10/topics/http/urls/
Examples:
Function views
1. Add an import: from my_app import views
2. Add a URL to urlpatterns: url(r'^$', views.home, name='home')
Class-based views
1. Add an import: from other_app.views import Home
2. Add a URL to urlpatterns: url(r'^$', Home.as_view(), name='home')
Including another URLconf
1. Import the include() function: from django.conf.urls import url, include
2. Add a URL to urlpatterns: url(r'^blog/', include('blog.urls'))
"""
from django.conf.urls import url, include
from django.contrib import admin
from rest_framework import routers, renderers, response, schemas
from django.views.decorators.csrf import csrf_exempt
from graphene_django.views import GraphQLView
from users.views import UserViewSet, GroupViewSet
from chorp_rest_api.views import TaskViewSet, AccountViewSet, AccountTransactionViewSet
from rest_framework_swagger.renderers import OpenAPIRenderer, SwaggerUIRenderer
from rest_framework.decorators import api_view, renderer_classes
# Routers provide an easy way of automatically determining the URL conf.
router = routers.DefaultRouter()
router.register(r'users', UserViewSet)
router.register(r'groups', GroupViewSet)
router.register(r'tasks', TaskViewSet)
router.register(r'accounts', AccountViewSet)
router.register(r'accounttransactions', AccountTransactionViewSet)
@api_view()
@renderer_classes([SwaggerUIRenderer, OpenAPIRenderer, renderers.CoreJSONRenderer])
def schema_view(request):
generator = schemas.SchemaGenerator(title='Chorp API')
return response.Response(generator.get_schema(request=request))
# Wire up our API using automatic URL routing.
# Additionally, we include login URLs for the browsable API.
urlpatterns = [
url(r'^doc/', schema_view),
url(r'^api/', include(router.urls)),
url(r'^api-auth/', include('rest_framework.urls', namespace='rest_framework')),
url(r'^graphql/', csrf_exempt(GraphQLView.as_view(graphiql=True))),
# Admin
url(r'^admin/', include(admin.site.urls)),
url(r'^admin/doc/', include('django.contrib.admindocs.urls')),
]
<file_sep>/api_server/README.md
# Django API server
## Environment setup
- Install python 3.x
- Point intellij to python installation (File -> Project structure -> SDK)
- To install requirements from requirements.txt: `pip install -r requirements.txt`
- TODO: Describe use of virtualenvwrapper / pew<file_sep>/api_server/chorp_models/apps.py
from django.apps import AppConfig
class ChorpModelsConfig(AppConfig):
name = 'chorp_models'
<file_sep>/chorp_angular/src/app/tasks/types/status/filter-by-status.pipe.ts
import { Pipe, PipeTransform } from '@angular/core';
import {StatusEnum} from "./StatusType";
import {ITaskType} from "../TaskType";
@Pipe({
name: 'filterByStatus',
pure: false
})
export class FilterByStatusPipe implements PipeTransform {
transform(items: ITaskType[], arg: StatusEnum): any {
if (items && items.length > 0) {
return items.filter(item => {
return item.status === arg;
});
} else {
return [];
}
}
}
<file_sep>/chorp_angular/src/app/allowance-accounts/shared/allowance-account.service.ts
import { AccountTransaction } from '../../../models';
import { Observable } from 'rxjs/Rx';
import { Http } from '@angular/http';
import { Injectable } from '@angular/core';
let transactions = [
{
account: 'john',
transactionTime: new Date(),
amount: 2
},
{
account: 'Mikkel',
transactionTime: new Date(),
amount: 4
}
];
@Injectable()
export class AllowanceAccountService {
constructor(private _http: Http) { }
getAccountTransactions(): Observable<AccountTransaction[]> {
return Observable.of(transactions);
}
}
<file_sep>/chorp_angular/src/app/allowance-accounts/allowance-account/allowance-account.component.ts
import { AccountTransaction } from './../../../models/account-transaction.model';
import { AllowanceAccountService } from './../shared/allowance-account.service';
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-allowance-account',
templateUrl: './allowance-account.component.html',
styleUrls: ['./allowance-account.component.css']
})
export class AllowanceAccountComponent implements OnInit {
private accountTransactions: AccountTransaction[] = [];
constructor(private _allowanceAccountService: AllowanceAccountService) { }
ngOnInit() {
this._allowanceAccountService.getAccountTransactions()
.subscribe(transactions => {
this.accountTransactions = transactions;
});
}
}
<file_sep>/client/app/api/Tasks.js
import request from 'superagent';
export function addTaskSideEffect() {
console.log('addTaskSideEffect');
request.get("http://127.0.0.1:8000/api/tasks/")
.set('Accept', 'application/json')
.set('Content-Type', 'application/json')
.end(function(err, res) {
console.log('end');
console.log(err);
console.log(res);
});
/*
const resp = fetch('/tasks', {
method: 'get',
headers: {
'Accept': 'application/json',
'Content-Type': 'application/json',
},
credentials: 'include',
});
if (resp.status !== 200) throw new Error(resp.statusText);
const {data} = resp.json();
console.log(data);
return data;
*/
}
<file_sep>/api_server/chorp_graphql_api/schema.py
from graphene import ObjectType, relay, AbstractType, Mutation
from graphene_django import DjangoObjectType
from graphene_django.filter import DjangoFilterConnectionField
from django.contrib.auth.models import User
import graphene
from chorp_models.models import Booking, Pet, PetType, Task
from graphene_django.debug import DjangoDebug
class UserNode(DjangoObjectType):
class Meta:
model = User
interfaces = (relay.Node,)
filter_fields = ['id', 'username']
class TaskNode(DjangoObjectType):
class Meta:
model = Task
interfaces = (relay.Node, )
class TaskQueries(AbstractType):
task = relay.Node.Field(TaskNode)
tasks = DjangoFilterConnectionField(TaskNode)
class UserQueries(AbstractType):
user = relay.Node.Field(UserNode)
users = DjangoFilterConnectionField(UserNode)
@staticmethod
def resolve_users(self, args, context, info):
if not context.user.is_authenticated():
return User.objects.none()
elif context.user.has_perm('chorp.admin'):
return User.objects.all()
else:
return User.objects.filter(id=context.user.id)
class Queries(UserQueries, TaskQueries, ObjectType):
node = relay.Node.Field()
debug = graphene.Field(DjangoDebug, name='__debug')
class CreateTask(Mutation):
class Input:
title = graphene.String()
description = graphene.String()
ok = graphene.Boolean()
task = graphene.Field(TaskNode)
@classmethod
def mutate(self, args, context, info, fifth):
task = Task(title=context.get('title'), description=context.get('description'))
ok = True
return CreateTask(task=task, ok=ok)
class Mutations(ObjectType):
create_task = CreateTask.Field()
schema = graphene.Schema(query=Queries, mutation=Mutations)
'''
Sample queries.
- Query
{
petTypes {
edges {
node {
id
name
}
}
}
}
- Result
{
"data": {
"petTypes": {
"edges": [
{
"node": {
"id": "UGV0VHlwZU5vZGU6Mg==",
"name": "Cat"
}
},
{
"node": {
"id": "UGV0VHlwZU5vZGU6MQ==",
"name": "Dog"
}
}
]
}
}
}
- Query
{
petType(id: "UGV0VHlwZU5vZGU6Mg==") {
name
}
}
- Result
{
"data": {
"petType": {
"name": "Cat"
}
}
}
'''
<file_sep>/client/app/containers/TasksPage/constants.js
/*
*
* TasksPage constants
*
*/
export const DEFAULT_ACTION = 'app/TasksPage/DEFAULT_ACTION';
export const ADD_TASK_ACTION = 'app/TasksPage/ADD_TASK_ACTION';
export const ADD_TASK_SUCCEEDED = 'app/TasksPage/ADD_TASK_SUCCEEDED';
export const ADD_TASK_FAILED = 'app/TasksPage/ADD_TASK_FAILED';
export const REMOVE_TASK_ACTION = 'app/TasksPage/REMOVE_TASK_ACTION';
<file_sep>/chorp_angular/src/app/tasks/tasks.component.spec.ts
/* tslint:disable:no-unused-variable */
import {async, ComponentFixture, TestBed} from '@angular/core/testing';
import {By} from '@angular/platform-browser';
import {DebugElement} from '@angular/core';
import {TasksComponent} from './tasks.component';
import {StatusPipe} from "./types/status/status.pipe";
import {FormsModule} from "@angular/forms";
import {StatusEnum} from "./types/status/StatusType";
import {TaskType, ITaskType} from "./types/TaskType";
import {DragulaModule} from "ng2-dragula/ng2-dragula";
import {StatusLabelComponent} from "../status-label/status-label.component";
import {FilterByStatusPipe} from "./types/status/filter-by-status.pipe";
import {TasksListComponent} from "../tasks-list/tasks-list.component";
describe('TasksComponent', () => {
let component: TasksComponent;
let fixture: ComponentFixture<TasksComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
imports: [FormsModule, DragulaModule],
declarations: [TasksComponent, TasksListComponent, StatusPipe, FilterByStatusPipe, StatusLabelComponent]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(TasksComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
it('should create new tasks with default values', () => {
const title = "My title 332134";
component.newTask.title = title;
expect(component.newTask.title).toBe(title);
const savedTask: ITaskType = component.saveNewTask();
expect(savedTask.title).toBe(title);
expect(savedTask.status).toBe(StatusEnum.TODO);
expect(savedTask.created).toBeTruthy();
expect(savedTask.created.getDate() == new Date().getDate()).toBeTruthy();
});
it('should create a new model instance on save', () => {
const title = "My title";
component.newTask.title = title;
expect(component.newTask.title).toBe(title);
component.saveNewTask();
expect(component.newTask.title).toBeFalsy();
expect(component.newTask.status).toBeFalsy();
});
it('should properly clear title', () => {
const title = "My title";
component.newTask.title = title;
expect(component.newTask.title).toBe(title);
component.resetNewTaskTitle();
expect(component.newTask.title).toBeNull();
});
});
<file_sep>/chorp_angular/src/app/status-label/status-label.component.ts
import {Component, OnInit, Input} from '@angular/core';
import {StatusEnum} from "../tasks/types/status/StatusType";
@Component({
selector: 'app-status-label',
templateUrl: './status-label.component.html',
styleUrls: ['./status-label.component.css']
})
export class StatusLabelComponent implements OnInit {
@Input() status: StatusEnum;
constructor() { }
ngOnInit() {
}
}
<file_sep>/chorp_angular/src/models/account.model.ts
export class Account {
id: number;
balance: number;
owner: string;
}
<file_sep>/chorp_angular/src/app/allowance-accounts/allowance-account/allowance-account.component.spec.ts
import { AllowanceAccountService } from './../shared/allowance-account.service';
import { AccountTransaction } from './../../../models/account-transaction.model';
/* tslint:disable:no-unused-variable */
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { Observable } from 'rxjs/Rx';
import { By } from '@angular/platform-browser';
import { DebugElement } from '@angular/core';
import { AllowanceAccountComponent } from './allowance-account.component';
class AllowanceAccountServiceStub {
getAccountTransactions(): Observable<AccountTransaction[]> {
return Observable.of([]);
}
}
describe('AllowanceAccountComponent', () => {
let component: AllowanceAccountComponent;
let fixture: ComponentFixture<AllowanceAccountComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [AllowanceAccountComponent],
providers: [
{ provide: AllowanceAccountService, useClass: AllowanceAccountServiceStub }
]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(AllowanceAccountComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});
<file_sep>/alternative clients/fountain-react-es6/src/app/store/configureStore.js
import {createStore, compose, applyMiddleware} from 'redux';
import thunk from 'redux-thunk';
import rootReducer from '../reducers/index';
import {persistState} from 'redux-devtools';
import DevTools from '../components/DevTools';
const enhancer = compose(
// Middleware you want to use in development
applyMiddleware(thunk),
// Required! Enable Redux DevTools with the monitors you chose
DevTools.instrument(),
// Optional. Lets you write ?debug_session=<key> in address bar to persist debug sessions
persistState(getDebugSessionKey())
);
export default function configureStore(initialState) {
const store = createStore(
rootReducer,
initialState,
enhancer,
);
if (module.hot) {
// Enable Webpack hot module replacement for reducers
module.hot.accept('../reducers', () => {
const nextReducer = rootReducer;
store.replaceReducer(nextReducer);
});
}
return store;
}
function getDebugSessionKey() {
// You can write custom logic here!
// By default we try to read the key from ?debug_session=<key> in the address bar
const matches = window.location.href.match(/[?&]debug_session=([^&#]+)\b/);
return (matches && matches.length > 0) ? matches[1] : null;
}
<file_sep>/api_server/chorp_rest_api/apps.py
from django.apps import AppConfig
class ChorpRestApiConfig(AppConfig):
name = 'chorp_rest_api'
<file_sep>/chorp_angular/src/app/tasks/types/status/filter-by-status.pipe.spec.ts
/* tslint:disable:no-unused-variable */
import {TestBed, async} from '@angular/core/testing';
import {FilterByStatusPipe} from './filter-by-status.pipe';
import {StatusEnum} from "./StatusType";
import {ITaskType, TaskType} from "../TaskType";
describe('FilterByStatusPipe', () => {
it('create an instance', () => {
let pipe = new FilterByStatusPipe();
expect(pipe).toBeTruthy();
});
it('filter by a status', () => {
let pipe = new FilterByStatusPipe();
let tasks: ITaskType[] = [];
tasks.push(new TaskType().setId(101).setStatus(StatusEnum.TODO));
tasks.push(new TaskType().setId(102).setStatus(StatusEnum.DOING));
tasks.push(new TaskType().setId(103).setStatus(StatusEnum.DOING));
tasks.push(new TaskType().setId(104).setStatus(StatusEnum.DONE));
expect(pipe.transform(tasks, StatusEnum.DOING).length).toBe(2);
expect(pipe.transform(tasks, StatusEnum.DONE).length).toBe(1);
});
});
<file_sep>/chorp_angular/src/models/index.ts
export * from './account.model';
export * from './account-transaction.model';
<file_sep>/chorp_angular/src/app/app.module.ts
import { HttpModule } from '@angular/http';
import {NgModule} from '@angular/core';
import {APP_BASE_HREF} from '@angular/common';
import {BrowserModule} from '@angular/platform-browser';
import {FormsModule} from '@angular/forms';
import {DragulaModule} from 'ng2-dragula/ng2-dragula';
import './rxjs-extensions';
import {AppComponent} from './app.component';
import {routableComponents, AppRoutingModule} from './app-routing.module';
import {NavComponent} from './nav/nav.component';
import {StatusPipe} from './tasks/types/status/status.pipe';
import {StatusLabelComponent} from './status-label/status-label.component';
import {FilterByStatusPipe} from './tasks/types/status/filter-by-status.pipe';
import { TasksListComponent } from './tasks-list/tasks-list.component';
@NgModule({
declarations: [
AppComponent,
routableComponents,
NavComponent,
StatusPipe,
StatusLabelComponent,
FilterByStatusPipe,
TasksListComponent,
],
imports: [
AppRoutingModule,
BrowserModule,
FormsModule,
HttpModule,
DragulaModule
],
providers: [{provide: APP_BASE_HREF, useValue: '/'}],
bootstrap: [AppComponent]
})
export class AppModule {
}
<file_sep>/chorp_angular/src/app/tasks/types/status/status.pipe.spec.ts
/* tslint:disable:no-unused-variable */
import { TestBed, async } from '@angular/core/testing';
import { StatusPipe } from './status.pipe';
import {StatusEnum} from "./StatusType";
describe('StatusPipe', () => {
it('create an instance', () => {
let pipe = new StatusPipe();
expect(pipe).toBeTruthy();
});
it('convert from enum to string', () => {
let pipe = new StatusPipe();
expect(pipe.transform(StatusEnum.DOING)).toBe("Doing");
expect(pipe.transform(StatusEnum.DONE)).toBe("Done");
expect(pipe.transform(StatusEnum.TODO)).toBe("Todo");
});
it('handle incorrect inputs gracefully', () => {
let pipe = new StatusPipe();
expect(pipe.transform(null)).toBe("-");
expect(pipe.transform('test string')).toBe("-");
expect(pipe.transform(1324312333)).toBe("-");
});
});
<file_sep>/chorp_angular/src/app/tasks/tasks.service.spec.ts
/* tslint:disable:no-unused-variable */
import { TestBed, async, inject } from '@angular/core/testing';
import { TasksService } from './tasks.service';
import {StatusEnum} from "./types/status/StatusType";
import {TaskType, ITaskType} from "./types/TaskType";
function createTask(status: StatusEnum): ITaskType {
return new TaskType().setId(100).setStatus(status);
}
describe('TasksService', () => {
beforeEach(() => {
TestBed.configureTestingModule({
providers: [TasksService]
});
});
it('should return some tasks', inject([TasksService], (service: TasksService) => {
service.add(createTask(StatusEnum.DOING));
expect(service.getAll().length).toBeGreaterThan(0);
}));
it('should be able to save a new task', inject([TasksService], (service: TasksService) => {
const beforeCount: number = service.getAll().length;
service.add(createTask(StatusEnum.DOING));
service.add(createTask(StatusEnum.DOING));
const afterCount: number = service.getAll().length;
expect(afterCount).toBe(beforeCount + 2);
}));
it('should be able to return a filtered list of tasks', inject([TasksService], (service: TasksService) => {
const beforeCountTotal: number = service.getAll().length;
const beforeCountDoing: number = service.getAll(StatusEnum.DOING).length;
service.add(createTask(StatusEnum.DOING));
service.add(createTask(StatusEnum.TODO));
service.add(createTask(StatusEnum.DONE));
const afterCountTotal: number = service.getAll().length;
const afterCountDoing: number = service.getAll(StatusEnum.DOING).length;
expect(afterCountTotal).toBe(beforeCountTotal + 3);
expect(afterCountDoing).toBe(beforeCountDoing + 1);
}));
it('should be able to update a task status', inject([TasksService], (service: TasksService) => {
const task = createTask(StatusEnum.DOING);
service.add(task);
expect(service.getAll(StatusEnum.DOING).length).toBe(1);
expect(service.getAll(StatusEnum.DONE).length).toBe(0);
service.updateStatus(task.id, StatusEnum.DONE);
expect(service.getAll(StatusEnum.DOING).length).toBe(0);
expect(service.getAll(StatusEnum.DONE).length).toBe(1);
}));
});
<file_sep>/chorp_angular/src/app/tasks-list/tasks-list.component.ts
import { Component, OnInit } from '@angular/core';
import {Input} from "@angular/core/src/metadata/directives";
import {StatusEnum} from "../tasks/types/status/StatusType";
import {ITaskType} from "../tasks/types/TaskType";
@Component({
selector: 'app-tasks-list',
templateUrl: './tasks-list.component.html',
styleUrls: ['./tasks-list.component.css']
})
export class TasksListComponent implements OnInit {
@Input() status: StatusEnum;
@Input() tasks: ITaskType[];
constructor() { }
ngOnInit() {
}
}
| 3d2f921b381568271876ab536df71d6ab3d23b74 | [
"JavaScript",
"Markdown",
"Python",
"Text",
"TypeScript"
] | 43 | TypeScript | Noptech/chorp | dde0e53bf600e47d450453be6f471eac4214425d | ffa29cde676e092c64fb361d868c35b07a9701e9 |
refs/heads/master | <file_sep>#!/usr/bin/env sh
# Copy downloads into 'plugins'
if [ -d "/data/build/downloads/plugins" ]; then
cp /data/build/downloads/plugins/* /opt/xltv/server/plugins
fi
# Copy to plugins
cp /data/build/libs/*.jar /opt/xltv/server/plugins
# Link `ext` folder
find /data/src/main/resources -maxdepth 1 -mindepth 1 -type d -exec ln -s -f '{}' /opt/xltv/server/ext/ \;
count=0
mkdir -p /opt/xltv/server/log
touch /opt/xltv/server/log/xl-testview.log
nohup /opt/xltv/server/bin/server.sh > /opt/xltv/server/log/xl-testview.log 2>&1 & echo $! > /tmp/run.pid
while true
do
if [ $count -le 60 ]; then
wget --spider -q http://localhost:6516
if [ $? -ne 0 ] ;then
echo "waiting $count"
tail -1 /opt/xltv/server/log/xl-testview.log
sleep 4
count=$(( count+1 ))
else
echo "Loading test data..."
if [ -f /data/build/resources/test/docker/initialize/initialize_data.sh ]; then
/data/build/resources/test/docker/initialize/initialize_data.sh
if [ $? -ne 0 ]; then
exit $?
fi
fi
echo "Shutting down server..."
kill `cat /tmp/run.pid`
sleep 3
echo "Done."
exit
fi
else
echo "Timeout exceeded...giving up waiting for website"
exit 1
fi
done
<file_sep># xltv_dev_run #
Docker image that has XLTV installed, mounts your source code and executes compilation using gradle wrapper.
After compilation it starts XLTV and links the `ext` folder to your plugin.
# Supported tags #
* `latest`, `v1.4.4.2`
# Starting #
```
docker run -p 6516:6516 -v ~/myproject:/data -v ~/xl-licenses:/license -v ~/.xlgradle:/root/.gradle xebialabs/xltv_dev_run
```
where:
* `data`: Mountpoint pointing to root directory of your plugin.
* `xl-licenses`: Folder containing the XLTV license.
* `xlgradle`: Is used to cache gradle dependencies.
<file_sep>FROM xebialabs/xltv-dev-compile:v1.4.4.1
MAINTAINER <NAME> <<EMAIL>>
ENV REFRESHED_AT 2016-11-17
ADD resources/supervisord.conf /etc/supervisord.conf
ADD resources/command.sh /opt/xltv/command.sh
CMD ["/usr/bin/supervisord"] | 14b3902d1194ac11227926725cbbd746dd3fcbb9 | [
"Markdown",
"Dockerfile",
"Shell"
] | 3 | Shell | xebialabs-community/xltv-docker-dev-run | 032dcc03063499752e71622ccdcca91232bc4848 | b4aed0899bbdf85d9985aeb0346090d3733772b6 |
refs/heads/master | <file_sep>import React, { useState } from "react";
import { Tabs, Tab } from "@material-ui/core";
import { makeStyles } from "@material-ui/core/styles";
import { AddCircleOutline as AddCircleOutlineIcon } from "@material-ui/icons";
import { DragDropContext, Droppable, Draggable } from "react-beautiful-dnd";
import Project from "../redux/containers/Project";
// vertical tabs
function TabPanel(props) {
const { children, active, index, ...other } = props;
return (
<div
role="tabpanel"
hidden={index !== active}
id={`vertical-tabpanel-${index}`}
aria-labelledby={`vertical-tab-${index}`}
{...other}
>
{index === active && children}
</div>
);
}
function a11yProps(index) {
return {
id: `vertical-tab-${index}`,
"aria-controls": `vertical-tabpanel-${index}`,
};
}
const useStyles = makeStyles((theme) => ({
root: {
flexGrow: 1,
backgroundColor: theme.palette.background.paper,
display: "flex",
},
lefttabs: {
borderRight: `1px solid ${theme.palette.divider}`,
},
tabpanel: {
width: "100%",
},
}));
function Projects({ addProject, projects, projectsOrder, reorderProjects }) {
const classes = useStyles();
const [active, setActive] = useState(0);
const handleTabClick = (index) => {
setActive(index);
};
// drag & drop
const onDragEnd = (event) => {
if (!event.destination) {
return;
}
reorderProjects(event);
// if active tab index changes then update
if (active === event.source.index) {
setActive(event.destination.index);
} else if (event.source.index > active && event.destination.index <= active) {
setActive(active + 1);
} else if (event.source.index < active && event.destination.index >= active) {
setActive(active - 1);
}
};
const handleAddProject = () => {
addProject();
setActive(projectsOrder.length);
};
return (
<div className={classes.root}>
<DragDropContext onDragEnd={onDragEnd}>
<Droppable droppableId="abc">
{(provided) => (
<Tabs
orientation="vertical"
variant="scrollable"
value={active}
aria-label="Vertical tabs example"
className={classes.lefttabs}
{...provided.droppableProps}
ref={provided.innerRef}
>
{projectsOrder.map((id, index) => (
<Draggable key={id} draggableId={id} index={index}>
{(provided) => (
<Tab
component="div"
label={projects[id].title}
{...a11yProps(index)}
onClick={() => handleTabClick(index)}
{...provided.draggableProps}
{...provided.dragHandleProps}
ref={provided.innerRef}
/>
)}
</Draggable>
))}
{provided.placeholder}
<Tab
component="div"
icon={<AddCircleOutlineIcon color="primary" />}
onClick={handleAddProject}
/>
</Tabs>
)}
</Droppable>
</DragDropContext>
{projectsOrder.map((id, index) => (
<TabPanel
active={active}
className={classes.tabpanel}
index={index}
key={id}
>
<Project project={projects[id]} />
</TabPanel>
))}
</div>
);
}
export default Projects;
<file_sep>// import all the reducers
import { combineReducers } from "redux";
import projects from "./projects";
import projectsOrder from "./projectsOrder";
import todos from "./todos";
const rootReducer = combineReducers({
projects,
projectsOrder,
todos,
});
export default rootReducer;
<file_sep>import React, { useState } from "react";
import {
IconButton,
InputBase,
ListItem,
ListItemIcon,
Checkbox,
} from "@material-ui/core";
import { AddCircleOutline as AddCircleOutlineIcon } from "@material-ui/icons";
import { makeStyles } from "@material-ui/core/styles";
const useStyles = makeStyles(() => ({
input: {
flex: "1 1 auto",
},
}));
function AddTodoForm({ addTodo }) {
const classes = useStyles();
const [input, setInput] = useState("");
const handleSubmit = () => {
if (input.length > 0) {
addTodo(input);
setInput("");
}
};
return (
<ListItem>
<ListItemIcon>
<Checkbox disabled={true} />
</ListItemIcon>
<InputBase
className={classes.input}
placeholder="Enter a task"
value={input}
onChange={(e) => setInput(e.target.value)}
onKeyPress={(e) => e.key === "Enter" && handleSubmit()}
/>
<ListItemIcon>
<IconButton onClick={handleSubmit}>
<AddCircleOutlineIcon color="primary" />
</IconButton>
</ListItemIcon>
</ListItem>
);
}
export default AddTodoForm;
<file_sep>import { connect } from "react-redux";
import { generate as generateId } from "shortid";
import { addProject, reorder } from "../actions/projects";
import Projects from "../../Components/Projects";
const mapStateToProps = (state) => ({
projects: state.projects,
projectsOrder: state.projectsOrder,
});
const mapDispatchToProps = (dispatch) => ({
addProject: () => {
const id = generateId();
return dispatch(addProject(id));
},
reorderProjects: (event) =>
dispatch(reorder(event)),
});
export default connect(mapStateToProps, mapDispatchToProps)(Projects);
<file_sep>import React, { useState } from "react";
import { makeStyles } from "@material-ui/core/styles";
import { Draggable } from "react-beautiful-dnd";
import {
ListItem as MuiListItem,
ListItemIcon,
ListItemText,
TextField,
IconButton,
} from "@material-ui/core";
import {
Check as CheckIcon,
Clear as ClearIcon,
Edit as EditIcon,
} from "@material-ui/icons";
import DeleteButton from "./DeleteButton";
import Checkbox from "./Checkbox";
const useStyles = makeStyles((theme) => ({
header: {
display: "flex",
alignItems: "center",
},
title: {
flexGrow: 1,
},
}));
function ListItem({ editTodo, handleDelete, index, todo }) {
const classes = useStyles();
const [input, setInput] = useState(todo.text);
const [editListItem, setEditListItem] = useState(false);
const handleEditClick = () => setEditListItem(!editListItem);
const handleEditCancel = () => {
setEditListItem(false);
setInput(todo.text);
};
const handleEditSubmit = () => {
const updateText = input.length > 0 ? input : "[Untitled]";
setEditListItem(false);
editTodo(updateText);
if (input.length === 0) {
setInput(updateText);
}
};
const handleListItemChange = (e) => setInput(e.target.value);
return (
<Draggable draggableId={todo.id} index={index}>
{(provided) => (
<MuiListItem
{...provided.draggableProps}
{...provided.dragHandleProps}
ref={provided.innerRef}
>
<ListItemIcon>
<Checkbox todo={todo} />
</ListItemIcon>
{editListItem ? (
<ListItemText className={classes.header} disableTypography>
<TextField
className={classes.title}
placeholder="[Untitled]"
value={input}
onChange={handleListItemChange}
onKeyPress={(e) => e.key === "Enter" && handleEditSubmit()}
/>
</ListItemText>
) : (
<ListItemText>{todo.text}</ListItemText>
)}
<ListItemIcon>
{editListItem ? (
<>
<IconButton onClick={handleEditSubmit}>
<CheckIcon color="primary" />
</IconButton>
<IconButton onClick={handleEditCancel}>
<ClearIcon color="error" />
</IconButton>
</>
) : (
<IconButton onClick={handleEditClick}>
<EditIcon color="primary" fontSize="small" />
</IconButton>
)}
<DeleteButton handleDelete={handleDelete} id={todo.id} />
</ListItemIcon>
</MuiListItem>
)}
</Draggable>
);
}
export default ListItem;
<file_sep>import React from "react";
import { Checkbox as MuiCheckbox } from "@material-ui/core";
function Checkbox({ todo, setList, list }) {
function handleChecked(todo) {
const updatedTodo = { ...todo, complete: !todo.complete };
setList(list.map((item) => (item === todo ? updatedTodo : item)));
}
return (
<MuiCheckbox checked={todo.complete} onChange={() => handleChecked(todo)} />
);
}
export default Checkbox;
<file_sep>import React from "react";
import { Container, Typography, Paper } from "@material-ui/core";
import { makeStyles } from "@material-ui/core/styles";
import Projects from "./redux/containers/Projects";
import "./App.css";
const useStyles = makeStyles((theme) => ({
root: {
"& > *": {
height: "auto",
},
},
}));
function App() {
const classes = useStyles();
return (
<div className="App">
<Container maxWidth="md">
<Typography variant="h2" component="h1" gutterBottom>
To do:
</Typography>
<Paper className={classes.root}>
<Projects />
</Paper>
</Container>
</div>
);
}
export default App;
<file_sep>import React, { useState } from "react";
import { makeStyles } from "@material-ui/core/styles";
import {
Check as CheckIcon,
Clear as ClearIcon,
Edit as EditIcon,
} from "@material-ui/icons";
import { Box, TextField, Typography, IconButton } from "@material-ui/core";
import DeleteButton from "./DeleteButton";
import List from "../redux/containers/List";
const useStyles = makeStyles((theme) => ({
header: {
display: "flex",
alignItems: "center",
},
title: {
flexGrow: 1,
},
}));
function Project({ handleDelete, handleEditTitle, project }) {
const classes = useStyles();
const { id, title, list } = project;
const [input, setInput] = useState(title);
const [editTitle, setEditTitle] = useState(false);
const handleEditClick = () => setEditTitle(!editTitle);
const handleEditCancel = () => {
setEditTitle(false);
setInput(title);
};
const handleEditSubmit = () => {
const updateTitle = input.length > 0 ? input : "[Untitled]";
setEditTitle(false);
handleEditTitle(updateTitle);
if (input.length === 0) {
setInput(updateTitle);
}
};
const handleTitleChange = (e) => setInput(e.target.value);
return (
<Box>
<Box className={classes.header} p={2}>
{editTitle ? (
<>
<TextField
label="Project title"
className={classes.title}
placeholder="[Untitled]"
value={input}
onChange={handleTitleChange}
onKeyPress={(e) => e.key === "Enter" && handleEditSubmit()}
/>
<IconButton onClick={handleEditSubmit}>
<CheckIcon color="primary" />
</IconButton>
<IconButton onClick={handleEditCancel}>
<ClearIcon color="error" />
</IconButton>
</>
) : (
<>
<Typography
align="left"
className={classes.title}
component="h2"
contentEditable={editTitle}
variant="h4"
>
{title}
</Typography>
<IconButton onClick={handleEditClick}>
<EditIcon color="primary" fontSize="small" />
</IconButton>
</>
)}
<DeleteButton handleDelete={handleDelete} id={project.id} />
</Box>
<List list={list} projectId={id} />
</Box>
);
}
export default Project;
<file_sep>import { ADD, DELETE, EDIT_TITLE } from "../actions/projects";
import {
ADD as ADD_TODO,
DELETE as DELETE_TODO,
REORDER as REORDER_TODOS,
} from "../actions/todos";
import { reorderList } from "../../utils/drag-drop";
const initialState = {};
const projects = (state = initialState, action) => {
switch (action.type) {
case ADD:
return {
...state,
[action.payload.id]: {
id: action.payload.id,
title: "New Project",
list: [],
},
};
case DELETE:
// Destructure to get the project to delete and return the other projects
const { [action.payload.id]: _deletedProject, ...projects } = state;
return projects;
case EDIT_TITLE:
return {
...state,
[action.payload.id]: {
...state[action.payload.id],
title: action.payload.title,
},
};
case ADD_TODO:
return {
...state,
[action.payload.projectId]: {
...state[action.payload.projectId],
list: [...state[action.payload.projectId].list, action.payload.id],
},
};
case DELETE_TODO:
return {
...state,
[action.payload.projectId]: {
...state[action.payload.projectId],
list: state[action.payload.projectId].list.filter(
(todoId) => todoId !== action.payload.id
),
},
};
case REORDER_TODOS:
return {
...state,
[action.payload.projectId]: {
...state[action.payload.projectId],
list: reorderList(
action.payload.event,
state[action.payload.projectId].list
),
},
};
default:
return state;
}
};
export default projects;
<file_sep>import { generate as generateId } from "shortid";
export default function getInitialState() {
const projectId = generateId();
const todoId = generateId();
return {
projects: {
[projectId]: {
id: projectId,
title: "Example Project",
list: [todoId],
},
},
projectsOrder: [projectId],
todos: {
[todoId]: {
id: todoId,
text: "Example todo",
completed: false,
},
},
};
}
<file_sep>import { connect } from "react-redux";
import { deleteProject, editTitle } from "../actions/projects";
import Project from "../../Components/Project";
const mapStateToProps = null;
const mapDispatchToProps = (dispatch, { project }) => ({
handleDelete: () => dispatch(deleteProject(project.id)),
handleEditTitle: (title) => dispatch(editTitle(project.id, title)),
});
export default connect(mapStateToProps, mapDispatchToProps)(Project);
<file_sep>const NS = "todo";
export const ADD = `${NS}/add`;
export const DELETE = `${NS}/delete`;
export const EDIT = `${NS}/edit`;
export const REORDER = `${NS}/reorder`;
export const TOGGLE = `${NS}/toggle`;
export const addTodo = (id, text, projectId) => ({
type: ADD,
payload: {
id,
text,
projectId,
},
});
export const deleteTodo = (id, projectId) => ({
type: DELETE,
payload: {
id,
projectId,
},
});
export const editTodo = (id, text) => ({
type: EDIT,
payload: {
id,
text,
},
});
export const reorder = (event, projectId) => ({
type: REORDER,
payload: {
event,
projectId,
},
});
export const toggleCompletion = (id) => ({
type: TOGGLE,
payload: {
id,
},
});
<file_sep>export const reorderList = ({ destination, source }, list) => {
// do nothing when dragging outside container
if (!destination) {
return list;
}
// do nothing if item doesn't move
if (
destination.droppableId === source.droppableId &&
destination.index === source.index
) {
return list;
}
// find element in array that has same id as element dragged
const movedItem = list[source.index];
// remove the moved item from the list array
const otherItems = list.filter((_item, index) => index !== source.index);
// update the array
return [
// add items from 0 to moved item new index in new array
...otherItems.slice(0, destination.index),
// add moveItem to the new array
movedItem,
// add remaining items from new index onwards
...otherItems.slice(destination.index),
];
};
<file_sep>import { connect } from "react-redux";
import { editTodo, deleteTodo } from "../actions/todos";
import ListItem from "../../Components/ListItem";
const mapStateToProps = (state, { id }) => ({
todo: state.todos[id],
});
const mapDispatchToProps = (dispatch, { id, projectId }) => ({
editTodo: (text) => dispatch(editTodo(id, text)),
handleDelete: () => dispatch(deleteTodo(id, projectId)),
});
export default connect(mapStateToProps, mapDispatchToProps)(ListItem);
<file_sep>import React from "react";
import { IconButton } from "@material-ui/core";
import { Delete as DeleteIcon } from "@material-ui/icons";
function DeleteButton({ handleDelete }) {
return (
<IconButton onClick={handleDelete}>
<DeleteIcon />
</IconButton>
);
}
export default DeleteButton;
<file_sep>const NS = "project";
export const ADD = `${NS}/add`;
export const DELETE = `${NS}/delete`;
export const EDIT_TITLE = `${NS}/edit-title`;
export const REORDER = `${NS}/reorder`;
export const addProject = (id) => ({
type: ADD,
payload: {
id,
},
});
export const deleteProject = (id) => ({
type: DELETE,
payload: {
id,
},
});
export const editTitle = (id, title) => ({
type: EDIT_TITLE,
payload: {
id,
title,
},
});
export const reorder = (event) => ({
type: REORDER,
payload: {
event,
},
});
| d4b3f5b3ed6b17c23f07372ffe09c95e8ff26f65 | [
"JavaScript"
] | 16 | JavaScript | EmilieHumbert/react-todo-list | c99a8b68e47548a10b12d0107a0c0899d848e91a | 060d088a89cb741ad9dfbfec486b5c9874001352 |
refs/heads/master | <repo_name>DRAK0N41K/5.3<file_sep>/5.3/5.3.cpp
#include <iostream>
#include <cmath>
using namespace std;
double t(const double x);
int main()
{
double fp, fk, z;
int n;
cout << "fp = "; cin >> fp;
cout << "fk = "; cin >> fk;
cout << "n = "; cin >> n;
double df = (fk - fp) / n;
double f = fp;
while (f <= fk)
{
z = t(f * f) + 2*t(2*f + 1) + sqrt(t(1));
cout << f << " " << z << endl;
f += df;
}
return 0;
}
double t(const double x)
{
if (abs(x) >= 1)
return (cos(x) + 1) / (exp(x) + pow(sin(x),2));
else
{
double S = 0;
int j = 0;
double a = x;
S = a;
do
{
j++;
double R = -x*x/(2*j*(2*j + 1));
a *= R;
S += a;
} while (j < 5);
return S;
}
}
<file_sep>/UnitTest1/UnitTest1.cpp
#include "pch.h"
#include "CppUnitTest.h"
#include "../5.3/5.3.cpp"
using namespace Microsoft::VisualStudio::CppUnitTestFramework;
namespace UnitTest1
{
TEST_CLASS(UnitTest1)
{
public:
TEST_METHOD(TestMethod1)
{
double final;
const double x = 0;
final = t(x);
Assert::AreEqual(final, 0.);
}
};
}
| 7a54f8a2075506df00fc6df9cca7a74923c74cbe | [
"C++"
] | 2 | C++ | DRAK0N41K/5.3 | abcacdbe3b0fe6ae9ac0c778d70a7b3557e8df01 | 228ae9c69c40155e5914a7b7d71bd515b81d7c66 |
refs/heads/master | <repo_name>irene9adler/jiudu_book_2.3<file_sep>/README.md
# jiudu_book_2.3
九度机试书 sort降序2.3
<file_sep>/main.cpp
//¾Å¶È sort½µÐò2.3
#include <stdio.h>
#include <algorithm>
using namespace std;
bool cmp (int x,int y)
{
return x>y;
}
int main()
{
int a[100];
int n;
scanf("%d",&n);
int i;
for(i=0;i<n;i++)
scanf("%d",&a[i]);
sort(a,a+n,cmp);
for(i=0;i<n;i++)
printf("%d ",a[i]);
return 0;
}
| cfd4c9d0322ed6cebaf11e2dc09c5f24d0484c3e | [
"Markdown",
"C++"
] | 2 | Markdown | irene9adler/jiudu_book_2.3 | 0cd276e679431ae89c0f59c360997ac1104d666d | df1fd0b176b542759a7467b6c06d05bebfb29f1f |
refs/heads/master | <file_sep><?php
/* @var $this CategoriesController */
/* @var $model Categories */
$this->menu=array(
array('label'=>'Добавить категорию', 'url'=>array('create')),
);
?>
<a class="butlink" id="menu-icon" href="#"> Меню </a>
<div id="menu-popup">
<?php $this->widget('ext.zii.widgets.Menu',array(
'items'=>array(
array('label'=>'Главная', 'url'=>array('/site')),
array('label'=>'Чеки', 'url'=>array('/checksInvoices')),
array('label'=>'Клиенты', 'url'=>array('/clients')),
array('label'=>'Поставщики', 'url'=>array('/providers')),
array('label'=>'Продавцы', 'url'=>array('/users')),
array('label'=>'Накладные', 'url'=>array('/invoices')),
array('label'=>'Склад', 'url'=>array('/products')),
array('label'=>'Возвраты', 'url'=>array('/returns')),
array('label'=>'Отчет', 'url'=>array('/report')),
array('label'=>'Резервные копии', 'url'=>array('/jbackup')),
array('label'=>'Вход', 'url'=>array('/user/login'), 'visible'=>Yii::app()->user->isGuest),
array('label'=>'Выход ('.Yii::app()->user->name.')', 'url'=>array('/user/logout'), 'visible'=>!Yii::app()->user->isGuest),
),
'htmlOptions'=>array('class'=>'nav-popup'),
'lastItemCssClass'=>'pull-right',
)); ?>
</div>
<h2>Управление категориями</h2>
<?php $this->widget('zii.widgets.grid.CGridView', array(
'id'=>'categories-grid',
'dataProvider'=>$model->search(),
'filter'=>$model,
'columns'=>array(
array(
'name'=>'category_id',
'headerHtmlOptions'=>array('class'=>'s-column active'),
'htmlOptions'=>array('class'=>'s-column'),
'type' => 'raw',
'value'=>'CHtml::link("$data->category_id",array("'.Yii::app()->controller->id.'/update/$data->category_id",))',
),
array(
'name'=>'category_name',
'headerHtmlOptions'=>array('class'=>'l-column active'),
),
array(
'name'=>'category_parent_id',
'headerHtmlOptions'=>array('class'=>'l-column active'),
'htmlOptions'=>array('class'=>'l-column'),
'value'=>'Yii::app()->controller->getCategoryName($data->category_parent_id)',
'filter'=>Yii::app()->controller->getCategoriesList(),
),
array(
'htmlOptions'=>array('class'=>'s-column'),
'headerHtmlOptions'=>array('class'=>'s-column active'),
'class'=>'CButtonColumn',
'template'=>'{delete}',
'buttons'=>array(
'delete' => array(
'imageUrl'=>Yii::app()->request->baseUrl.'/themes/front/images/delete.png',
),
),
),
),
)); ?>
<file_sep><?php
/* @var $this ProductsController */
/* @var $model Products */
$this->menu=array(
array('label'=>'Добавить товар', 'url'=>array('create')),
);
?>
<h2>Управление товарами <?php echo CHtml::link("Добавить",array("products/create",),array('class'=>'create-button btn btn-primary btn-xs')) ?></h2>
<?php $this->widget('zii.widgets.grid.CGridView', array(
'id'=>'products-grid',
'dataProvider'=>$model->search(),
'filter'=>$model,
'columns'=>array(
array(
'name'=>'product_id',
'headerHtmlOptions'=>array('class'=>'s-column active'),
'htmlOptions'=>array('class'=>'s-column'),
'type'=>'raw',
'value'=>'CHtml::link("$data->product_id",array("'.Yii::app()->controller->id.'/update/$data->product_id",))',
),
array(
'name'=>'product_name',
'headerHtmlOptions'=>array('class'=>'active'),
),
array(
'name'=>'product_measurement',
'htmlOptions'=>array('class'=>'m-column'),
'headerHtmlOptions'=>array('class'=>'m-column active'),
'type' => 'raw',
'value'=>'CHtml::encode($data->productMeasurement->unit_name)',
'filter'=>Yii::app()->controller->getMeasurementUnitsList(),
),
array(
'name'=>'product_color',
'htmlOptions'=>array('class'=>'i-column'),
'headerHtmlOptions'=>array('class'=>'i-column active'),
'type' => 'raw',
'value'=>'CHtml::encode($data->productColor->color_name)',
'filter'=>Yii::app()->controller->getColorsList(),
),
array(
'name'=>'product_price',
'htmlOptions'=>array('class'=>'s-column'),
'headerHtmlOptions'=>array('class'=>'s-column active'),
),
array(
'name'=>'product_quantity',
'htmlOptions'=>array('class'=>'s-column'),
'headerHtmlOptions'=>array('class'=>'s-column active'),
),
array(
'name'=>'product_roll',
'htmlOptions'=>array('class'=>'s-column'),
'headerHtmlOptions'=>array('class'=>'s-column active'),
),
array(
'name'=>'product_status',
'htmlOptions'=>array('class'=>'i-column'),
'headerHtmlOptions'=>array('class'=>'i-column active'),
'value'=>'Yii::app()->controller->product_status[$data->product_status]',
'filter'=>Yii::app()->controller->product_status,
),
array(
'name'=>'product_sales',
'htmlOptions'=>array('class'=>'s-column'),
'headerHtmlOptions'=>array('class'=>'s-column active'),
'filter'=>'',
),
array(
'htmlOptions'=>array('class'=>'s-column'),
'headerHtmlOptions'=>array('class'=>'s-column active'),
'class'=>'CButtonColumn',
'template'=>'{delete}',
'buttons'=>array(
'delete' => array(
'imageUrl'=>Yii::app()->request->baseUrl.'/themes/front/images/delete.png',
),
),
),
),
)); ?>
<file_sep><?php
/* @var $this ProvidersInvoicesController */
/* @var $model ProvidersInvoices */
$this->menu=array(
array('label'=>'Добавить накладную', 'url'=>array('create')),
);
?>
<h2>Управление накладными поставщикам</h2>
<?php $this->widget('zii.widgets.grid.CGridView', array(
'id'=>'providers-invoices-grid',
'dataProvider'=>$model->search(),
'filter'=>$model,
'columns'=>array(
array(
'name'=>'invoice_id',
'headerHtmlOptions'=>array('class'=>'s-column active'),
'htmlOptions'=>array('class'=>'s-column'),
'type'=>'raw',
'value'=>'CHtml::link("$data->invoice_id",array("'.Yii::app()->controller->id.'/update/$data->invoice_id",))',
),
array(
'name'=>'invoice_code',
'headerHtmlOptions'=>array('class'=>'m-column active'),
'htmlOptions'=>array('class'=>'m-column'),
),
array(
'name'=>'invoice_datetime',
'headerHtmlOptions'=>array('class'=>'l-column active'),
'htmlOptions'=>array('class'=>'l-column'),
'filter'=>'',
),
array(
'name'=>'invoice_provider_id',
'headerHtmlOptions'=>array('class'=>'active'),
'type'=>'raw',
'value'=>'CHtml::link($data->invoiceProvider->provider_name,array("providers/update/$data->invoice_provider_id",))',
'filter'=>'',
),
array(
'name'=>'invoice_summ',
'headerHtmlOptions'=>array('class'=>'m-column active'),
'htmlOptions'=>array('class'=>'m-column'),
'filter'=>'',
),
/*'invoice_manager_comment',*/
array(
'name'=>'invoice_status',
'headerHtmlOptions'=>array('class'=>'i-column active'),
'htmlOptions'=>array('class'=>'i-column'),
'value'=>'Yii::app()->controller->invoices_conditions[$data->invoice_status]',
'filter'=>Yii::app()->controller->invoices_conditions,
),
array(
'htmlOptions'=>array('class'=>'s-column'),
'headerHtmlOptions'=>array('class'=>'s-column active'),
'class'=>'CButtonColumn',
'template'=>'{delete}',
'buttons'=>array(
'delete' => array(
'imageUrl'=>Yii::app()->request->baseUrl.'/themes/front/images/delete.png',
),
),
),
),
)); ?>
<file_sep><?php
/* @var $this SiteController */
?>
<h2>Накладная клиенту</h2>
<div class="form" >
<div class="col-lg-12 well">
<?php $form=$this->beginWidget('CActiveForm', array(
'id'=>'clients-invoices-form',
'action'=>'/clientsInvoices/create',
'enableAjaxValidation'=>false,
)); ?>
<div class="col-lg-4" >
<p><?php echo $form->textField($model1,'invoice_code', array('size'=>10,'placeholder'=>'Код')); ?></p>
</div>
<div class="col-lg-4" >
<p class="align-center">Продавец:
<?php echo $form->dropDownList($model1,'invoice_seller_id', Yii::app()->controller->getSellers()); ?>
</p>
</div>
<div class="col-lg-4" >
<img src="/themes/front/images/loading.gif" class="client-form-loader" />
<p class="align-right">Клиент:
<?php /*echo $form->dropDownList($model1,'invoice_client_id',
/*Yii::app()->controller->getClients(),
array('empty' => 'Оформить на себя', 'onchange'=>'getClientDebt($(this).val())')); */?>
<?php echo $form->hiddenField($model1,'invoice_client_id'); ?>
<?php $this->widget('zii.widgets.jui.CJuiAutoComplete', array(
'attribute'=>'client_name',
'model'=>$clients,
'sourceUrl'=>array('site/clients_list'),
'name'=>'client_name',
'options'=>array(
'minLength'=>'3',
),
'htmlOptions'=>array(
'size'=>25,
'maxlength'=>45,
'onblur'=>'getClientId($(this).val());',
),
)); ?>
</p>
</div>
<div class="clearfix" ></div>
<div class="form" >
<table class="table table-bordered table-striped table-hover" >
<thead>
<tr>
<th class="l-column">Наименование</th>
<th class="m-column">Цвет</th>
<th class="m-column">Мера</th>
<th class="l-column">Кол-во</th>
<th class="s-column">Рулоны</th>
<th class="m-column">Цена <br /> (за ед.)</th>
<th class="m-column">Цена <br /> (итог.)</th>
<th class="s-column"></th>
</tr>
</thead>
<tbody class="tasks1">
<?php for($i = 0; $i < count($models1); $i++):?>
<?php $this->renderPartial('_rowC', array(
'model' => $models1[$i],
'index' => $i,
))?>
<?php endfor; ?>
</tbody>
<tfoot>
<tr>
<td colspan="7" class="align-right">Долг клиента: </td>
<td class="s-column"><?php echo $form->textField($model1,'client_debt', array('value'=>'-','class'=>'nulled-input','readonly'=>true,'size'=>5)); ?></td>
</tr>
<tr>
<td colspan="7" class="align-right">Сумма накладной: </td>
<td class="s-column"><?php echo $form->textField($model1,'invoice_summ',array('maxlength'=>15,'value'=>0,'class'=>'nulled-input','readonly'=>true,'size'=>5)); ?></td>
</tr>
<tr>
<td class="align-right">Комментарии к накладной: </td>
<td colspan="7"><?php echo $form->textField($model1,'invoice_manager_comment', array('value'=>'-', 'class'=>'full-width')); ?></td>
</tr>
</tfoot>
</table>
<?php echo $form->hiddenField($model1,'invoice_status', array('value'=>0)); ?>
<?php echo CHtml::submitButton('Провести', array('class'=>'btn btn-primary pull-right btn-sm'))?>
<?php echo CHtml::button('+', array('class' => 'tasks-add1 btn btn-primary pull-right btn-sm', 'onclick' => 'addRow1();'))?>
</div>
<?php $this->endWidget(); ?>
</div>
<div class="clearfix" ></div>
</div>
<h2>Накладная поставщику</h2>
<div class="form" >
<div class="col-lg-12 well">
<?php $form=$this->beginWidget('CActiveForm', array(
'id'=>'providers-invoices-form',
'action'=>'/providersInvoices/create',
'enableAjaxValidation'=>false,
)); ?>
<div class="col-lg-4" >
<p><?php echo $form->textField($model,'invoice_code', array('size'=>10,'placeholder'=>'Код')); ?></p>
</div>
<div class="col-lg-4" >
<?php //echo $form->textField($model,'invoice_datetime', array('class'=>'datepicker')); ?>
</div>
<div class="col-lg-4" >
<img src="/themes/front/images/loading.gif" class="provider-form-loader" />
<p class="align-right">Поставщик:
<?php /*echo $form->dropDownList($model,'invoice_provider_id',
Yii::app()->controller->getProviders(),
array('empty' => 'Выбрать поставщика', 'onchange'=>'getProviderDebt($(this).val())'));*/ ?>
<?php echo $form->hiddenField($model,'invoice_provider_id'); ?>
<?php $this->widget('zii.widgets.jui.CJuiAutoComplete', array(
'attribute'=>'provider_name',
'model'=>$providers,
'sourceUrl'=>array('site/providers_list'),
'name'=>'provider_name',
'options'=>array(
'minLength'=>'3',
),
'htmlOptions'=>array(
'size'=>25,
'maxlength'=>45,
'onblur'=>'getProviderId($(this).val());',
),
)); ?>
</p>
</div>
<div class="clearfix" ></div>
<div class="form" >
<table class="table table-bordered table-striped table-hover" >
<thead>
<tr>
<th class="align-center">Наименование</th>
<th class="l-column">Цвет</th>
<th class="i-column">Мера</th>
<th class="l-column">Кол-во</th>
<th class="m-column">Цена <br /> (за ед.)</th>
<th class="m-column">Цена <br /> (итог.)</th>
<th class="s-column"></th>
</tr>
</thead>
<tbody class="tasks">
<?php for($i = 0; $i < count($models); $i++):?>
<?php $this->renderPartial('_rowP', array(
'model' => $models[$i],
'index' => $i,
))?>
<?php endfor; ?>
</tbody>
<tfoot>
<tr>
<td colspan="6" class="align-right">Доп. затраты: </td>
<td class="s-column"><?php echo $form->dropDownList($model,'invoice_extra', Yii::app()->controller->extraCosts()); ?></td>
</tr>
<tr>
<td colspan="6" class="align-right">Долг поставщику: </td>
<td class="s-column"><?php echo $form->textField($model,'provider_debt', array('value'=>'-','class'=>'nulled-input','readonly'=>true,'size'=>5)); ?></td>
</tr>
<tr>
<td colspan="6" class="align-right">Сумма накладной: </td>
<td class="s-column"><?php echo $form->textField($model,'invoice_summ',array('maxlength'=>15,'value'=>0,'class'=>'nulled-input','readonly'=>true,'size'=>5)); ?></td>
</tr>
<tr>
<td class="align-right">Комментарии к накладной: </td>
<td colspan="6"><?php echo $form->textField($model,'invoice_manager_comment', array('value'=>'-', 'class'=>'full-width')); ?></td>
</tr>
</tfoot>
</table>
<?php echo $form->hiddenField($model,'invoice_status', array('value'=>0)); ?>
<?php echo CHtml::submitButton('Провести', array('class'=>'btn btn-primary pull-right btn-sm'))?>
<?php echo CHtml::button('+', array('class' => 'tasks-add btn btn-primary pull-right btn-sm', 'onclick' => 'addRow();'))?>
</div>
<?php $this->endWidget(); ?>
</div>
<div class="clearfix" ></div>
</div>
<file_sep><?php
/**
* This is the model class for table "{{products}}".
*
* The followings are the available columns in table '{{products}}':
* @property integer $product_id
* @property string $product_name
* @property string $product_roll
* @property integer $product_measurement
* @property integer $product_color
* @property integer $product_price
* @property integer $product_price_b
* @property integer $product_quantity
* @property integer $product_status
* @property integer $product_sales
*
* The followings are the available model relations:
* @property InvoicesProducts[] $invoicesProducts
* @property MeasurementUnits $productMeasurement
* @property Colors $productColor
*/
class Products extends CActiveRecord implements IECartPosition
{
public $colorName;
public $measurementName;
/**
* @return string the associated database table name
*/
public function tableName()
{
return '{{products}}';
}
/**
* @return array validation rules for model attributes.
*/
public function rules()
{
// NOTE: you should only define rules for those attributes that
// will receive user inputs.
return array(
array('product_name, product_roll, product_code, product_measurement, product_color, product_price, product_quantity, product_status, product_sales, product_category', 'required'),
array('product_measurement, product_roll, product_code, product_color, product_status, product_sales, product_category', 'numerical', 'integerOnly'=>true),
array('product_name', 'length', 'max'=>255),
array('product_price, product_price_b, product_roll, product_quantity', 'length', 'max'=>15),
array('product_code', 'length', 'max'=>20),
// The following rule is used by search().
// @todo Please remove those attributes that should not be searched.
array('measurementName, colorName, product_id, product_code, product_name, product_roll, product_measurement, product_color, product_price, product_price_b, product_quantity, product_status, product_sales, product_code, product_category', 'safe', 'on'=>'search'),
);
}
/**
* @return array relational rules.
*/
public function relations()
{
// NOTE: you may need to adjust the relation name and the related
// class name for the relations automatically generated below.
return array(
'productMeasurement' => array(self::BELONGS_TO, 'MeasurementUnits', 'product_measurement'),
'productColor' => array(self::BELONGS_TO, 'Colors', 'product_color'),
'productUsers' => array(self::BELONGS_TO, 'ProductsUsers', 'product_id'),
'productCategories' => array(self::BELONGS_TO, 'Categories','product_category'),
'parentP' => array(self::BELONGS_TO, 'Categories', 'product_category'),
);
}
public function scopes()
{
return array(
'avaliable'=>array(
'condition'=>'product_status=1',
),
);
}
/**
* @return array customized attribute labels (name=>label)
*/
public function attributeLabels()
{
return array(
'product_id' => 'ID',
'product_name' => 'Название',
'product_roll' => 'Рулоны',
'product_measurement' => 'Мера',
'product_category' => 'Категория',
'product_color' => 'Цвет',
'product_price' => 'Цена',
'product_price_b' => 'Цена покупки',
'product_quantity' => 'Количество',
'product_status' => 'Статус',
'product_sales' => 'Продаж',
'product_code' => 'Штрих-код',
);
}
/**
* Retrieves a list of models based on the current search/filter conditions.
*
* Typical usecase:
* - Initialize the model fields with values from filter form.
* - Execute this method to get CActiveDataProvider instance which will filter
* models according to data in model fields.
* - Pass data provider to CGridView, CListView or any similar widget.
*
* @return CActiveDataProvider the data provider that can return the models
* based on the search/filter conditions.
*/
public function search()
{
// @todo Please modify the following code to remove attributes that should not be searched.
$criteria=new CDbCriteria;
if(!empty($this->product_category)){
$s = $this->product_category;
}else{
$s = 1;
}
$subCat = Categories::model()->getSubCategories($s);
array_push($subCat, $s);
$criteria->compare('product_id',$this->product_id);
$criteria->compare('product_code',$this->product_code,true);
$criteria->compare('product_name',$this->product_name,true);
$criteria->addInCondition('product_category',$subCat);
$criteria->compare('product_roll',$this->product_roll);
$criteria->compare('product_measurement',$this->product_measurement,true);
$criteria->with = array('productColor','productMeasurement');
$criteria->addSearchCondition('productColor.color_name', $this->colorName);
$criteria->addSearchCondition('productMeasurement.unit_name', $this->measurementName);
//$criteria->compare('product_color',$this->product_color);
$criteria->compare('product_price',$this->product_price,true);
$criteria->compare('product_price_b',$this->product_price_b,true);
$criteria->compare('product_quantity',$this->product_quantity,true);
$criteria->compare('product_status',$this->product_status,true);
$criteria->compare('product_sales',$this->product_sales,true);
return new CActiveDataProvider($this, array(
'criteria'=>$criteria,
'pagination'=>array(
'pageSize'=>15,
),
));
}
/**
* Returns the static model of the specified AR class.
* Please note that you should have this exact method in all your CActiveRecord descendants!
* @param string $className active record class name.
* @return Products the static model class
*/
public static function model($className=__CLASS__)
{
return parent::model($className);
}
function getId(){
return 'Product'.$this->product_id;
}
function getPriceS(){
return $this->product_price;
}
}
<file_sep><?php
class ClientsInvoicesController extends Controller
{
/**
* @var string the default layout for the views. Defaults to '//layouts/column2', meaning
* using two-column layout. See 'protected/views/layouts/column2.php'.
*/
public $layout='//layouts/column1';
/**
* @return array action filters
*/
public function filters()
{
return array(
'accessControl', // perform access control for CRUD operations
'postOnly + delete', // we only allow deletion via POST request
);
}
/**
* Specifies the access control rules.
* This method is used by the 'accessControl' filter.
* @return array access control rules
*/
public function accessRules()
{
return array(
array('allow', // allow all users to perform 'index' and 'view' actions
'actions'=>array(),
'users'=>array('*'),
),
array('allow', // allow authenticated user to perform 'create' and 'update' actions
'actions'=>array('create','update'),
'users'=>array('@'),
),
array('allow', // allow admin user to perform 'admin' and 'delete' actions
'actions'=>array('index','delete'),
'users'=>array('admin'),
),
array('deny', // deny all users
'users'=>array('*'),
),
);
}
/**
* Creates a new model.
* If creation is successful, the browser will be redirected to the 'view' page.
*/
public function actionCreate()
{
$model=new ClientsInvoices;
// Uncomment the following line if AJAX validation is needed
// $this->performAjaxValidation($model);
if(isset($_POST['ClientsInvoices']))
{
$model->attributes=$_POST['ClientsInvoices'];
$model->invoice_datetime = date('Y-m-d H:i:s');
if($model->save()){
if(isset($_POST['InvoicesProducts']))
{
foreach($_POST['InvoicesProducts'] as $index => $product){
$product_model=new InvoicesProducts;
$product_model->attributes = $product;
$product_model->invoice_id = $model->invoice_id;
$product_base = Products::model()->findByPk($product_model->product_id);
$product_model->product_color = $product_base->product_color;
$product_model->product_measurement = $product_base->product_measurement;
$product_model->product_name = $product_base->product_name;
if(!empty($product_model->product_id)){
if($product_model->save()){
$product = Products::model()->findByPk($product_model->product_id);
$product->saveCounters(array('product_sales'=>1, 'product_quantity'=>-$product_model->product_quantity, 'product_roll'=>-$product_model->product_roll));
$seller_for_history = Users::model()->findByPk($model->invoice_seller_id);
$client_for_history = Clients::model()->findByPk($model->invoice_client_id);
$record = new History;
$record->record_datetime = date('Y-m-d H:i:s');
$record->record_group = 'product';
$record->record_item_id = $product_model->product_id;
$record->record_content = 'Продано ' . $product_model->product_quantity . ' (' . $product_model->product_quantity_details . '). Рулонов - ' . $product_model->product_roll . '. Продавец - ' . CHtml::link($seller_for_history->username, array('/users/update', 'id'=>$model->invoice_seller_id)) . '. Клиент - ' . CHtml::link($client_for_history->client_name, array('/clients/update', 'id'=>$model->invoice_client_id)) . '. Накладная - ' . CHtml::link($model->invoice_code, array('/clientsInvoices/update', 'id'=>$model->invoice_id));
$record->save();
}
}
}
}
Users::model()->updateByPk($model->invoice_seller_id,array('activkey'=>$model->invoice_summ));
$this->redirect(array('index'));
}
}
$this->render('update',array(
'model'=>$model,
));
}
/**
* Updates a particular model.
* If update is successful, the browser will be redirected to the 'view' page.
* @param integer $id the ID of the model to be updated
*/
public function actionUpdate($id)
{
$model=$this->loadModel($id);
$criteria=new CDbCriteria;
$criteria->condition='invoice_id=:invoice_id';
$criteria->params=array(':invoice_id'=>$id);
$products = InvoicesProducts::model()->findAll($criteria);
// Uncomment the following line if AJAX validation is needed
// $this->performAjaxValidation($model);
if(isset($_POST['ClientsInvoices']))
{
$model->attributes=$_POST['ClientsInvoices'];
if($model->save())
$this->redirect(array('index'));
}
$this->render('update',array(
'model'=>$model,
'products'=>$products,
));
}
/**
* Deletes a particular model.
* If deletion is successful, the browser will be redirected to the 'index' page.
* @param integer $id the ID of the model to be deleted
*/
public function actionDelete($id)
{
$criteria = new CDbCriteria;
$criteria->condition = 'invoice_id = :invoice_id';
$criteria->params=array(':invoice_id'=> $id,);
InvoicesProducts::model()->deleteAll($criteria);
$this->loadModel($id)->delete();
// if AJAX request (triggered by deletion via index grid view), we should not redirect the browser
if(!isset($_GET['ajax']))
$this->redirect(isset($_POST['returnUrl']) ? $_POST['returnUrl'] : array('index'));
}
/**
* Lists all models.
*/
public function actionIndex()
{
$model=new ClientsInvoices('search');
$model->unsetAttributes(); // clear any default values
if(isset($_GET['ClientsInvoices']))
$model->attributes=$_GET['ClientsInvoices'];
$this->render('admin',array(
'model'=>$model,
));
}
/**
* Returns the data model based on the primary key given in the GET variable.
* If the data model is not found, an HTTP exception will be raised.
* @param integer $id the ID of the model to be loaded
* @return ClientsInvoices the loaded model
* @throws CHttpException
*/
public function loadModel($id)
{
$model=ClientsInvoices::model()->with('invoiceClient', 'invoiceSeller')->findByPk($id);
if($model===null)
throw new CHttpException(404,'The requested page does not exist.');
return $model;
}
/**
* Performs the AJAX validation.
* @param ClientsInvoices $model the model to be validated
*/
protected function performAjaxValidation($model)
{
if(isset($_POST['ajax']) && $_POST['ajax']==='clients-invoices-form')
{
echo CActiveForm::validate($model);
Yii::app()->end();
}
}
}
<file_sep><?php
/**
* This is the model class for table "{{expected_products}}".
*
* The followings are the available columns in table '{{expected_products}}':
* @property integer $product_id
* @property integer $invoice_id
* @property string $product_name
* @property integer $product_roll
* @property string $product_color
* @property integer $product_measurement
* @property string $product_quantity
* @property string $product_price
* @property string $product_total
*
* The followings are the available model relations:
* @property ProvidersInvoices $invoice
*/
class ExpectedProducts extends CActiveRecord
{
/**
* @return string the associated database table name
*/
public function tableName()
{
return '{{expected_products}}';
}
/**
* @return array validation rules for model attributes.
*/
public function rules()
{
// NOTE: you should only define rules for those attributes that
// will receive user inputs.
return array(
array('invoice_id, product_name, product_color, product_measurement, product_quantity, product_price, product_total, product_price_b, product_code', 'required'),
array('invoice_id, product_roll, product_category, product_measurement', 'numerical', 'integerOnly'=>true),
array('product_name, product_color', 'length', 'max'=>255),
array('product_quantity, product_quantity_yard, product_price, product_total', 'length', 'max'=>15),
// The following rule is used by search().
// @todo Please remove those attributes that should not be searched.
array('product_id, invoice_id, product_name, product_color, product_measurement, product_quantity, product_price, product_sales, product_roll, product_price_b, product_code, product_total', 'safe', 'on'=>'search'),
);
}
/**
* @return array relational rules.
*/
public function relations()
{
// NOTE: you may need to adjust the relation name and the related
// class name for the relations automatically generated below.
return array(
'invoice' => array(self::BELONGS_TO, 'ProvidersInvoices', 'invoice_id'),
'color' => array(self::BELONGS_TO, 'Colors', 'product_color'),
'measurement' => array(self::BELONGS_TO, 'MeasurementUnits', 'product_measurement'),
);
}
/**
* @return array customized attribute labels (name=>label)
*/
public function attributeLabels()
{
return array(
'product_id' => 'ID',
'product_code' => 'Штрих-код',
'invoice_id' => 'Накладная',
'product_name' => 'Название',
'product_roll' => 'Рулоны',
'product_color' => 'Цвет',
'product_measurement' => 'Мера',
'product_quantity' => 'Кол-во',
'product_price' => 'Цена',
'product_price_b' => 'Цена покупки',
'product_total' => 'Всего',
);
}
/**
* Retrieves a list of models based on the current search/filter conditions.
*
* Typical usecase:
* - Initialize the model fields with values from filter form.
* - Execute this method to get CActiveDataProvider instance which will filter
* models according to data in model fields.
* - Pass data provider to CGridView, CListView or any similar widget.
*
* @return CActiveDataProvider the data provider that can return the models
* based on the search/filter conditions.
*/
public function search()
{
// @todo Please modify the following code to remove attributes that should not be searched.
$criteria=new CDbCriteria;
$criteria->compare('product_code',$this->product_code);
$criteria->compare('product_id',$this->product_id);
$criteria->compare('invoice_id',$this->invoice_id);
$criteria->compare('product_name',$this->product_name,true);
$criteria->compare('product_roll',$this->product_roll);
$criteria->compare('product_color',$this->product_color,true);
$criteria->compare('product_measurement',$this->product_measurement);
$criteria->compare('product_quantity',$this->product_quantity,true);
$criteria->compare('product_price',$this->product_price,true);
$criteria->compare('product_price_b',$this->product_price_b,true);
$criteria->compare('product_total',$this->product_total,true);
return new CActiveDataProvider($this, array(
'criteria'=>$criteria,
));
}
/**
* Returns the static model of the specified AR class.
* Please note that you should have this exact method in all your CActiveRecord descendants!
* @param string $className active record class name.
* @return ExpectedProducts the static model class
*/
public static function model($className=__CLASS__)
{
return parent::model($className);
}
}
<file_sep><?php
/* @var $this ProductsController */
/* @var $model Products */
if($model->isNewRecord){
$this->menu=array(
array('label'=>'Список товаров', 'url'=>array('index')),
);
} else{
$this->menu=array(
array('label'=>'Список товаров', 'url'=>array('index')),
array('label'=>'Добавить товар', 'url'=>array('create')),
);
}
?>
<?php if($model->isNewRecord){ ?>
<h2>Добавить товар</h2>
<?php } else{ ?>
<h2>Изменить товар - «<?php echo $model->product_name; ?>»</h2>
<?php } ?>
<div class="form">
<?php $form=$this->beginWidget('CActiveForm', array(
'id'=>'products-form',
'enableAjaxValidation'=>false,
)); ?>
<?php echo $form->errorSummary($model); ?>
<table class="table table-bordered table-striped table-hover" >
<tr>
<td><?php echo $form->labelEx($model,'product_name'); ?></td>
<td class="m-column"><?php echo $form->labelEx($model,'product_roll'); ?></td>
<td class="i-column"><?php echo $form->labelEx($model,'product_color'); ?></td>
<td class="m-column"><?php echo $form->labelEx($model,'product_measurement'); ?></td>
<td class="m-column"><?php echo $form->labelEx($model,'product_price'); ?></td>
<td class="i-column"><?php echo $form->labelEx($model,'product_quantity'); ?></td>
<td class="m-column"><?php echo $form->labelEx($model,'product_sales'); ?></td>
<td class="i-column"><?php echo $form->labelEx($model,'product_status'); ?></td>
</tr>
<tr>
<td><?php echo $form->textField($model,'product_name',array('size'=>40,'maxlength'=>255)); ?></td>
<td class="m-column"><?php echo $form->textField($model,'product_roll',array('size'=>3)); ?></td>
<td class="i-column"><?php echo $form->dropDownList($model,'product_color', Yii::app()->controller->getColorsList()); ?></td>
<td class="m-column"><?php echo $form->dropDownList($model,'product_measurement', Yii::app()->controller->getMeasurementUnitsList()); ?></td>
<td class="m-column"><?php echo $form->textField($model,'product_price',array('size'=>5,'maxlength'=>15)); ?></td>
<td class="i-column"><?php echo $form->textField($model,'product_quantity',array('size'=>10,'maxlength'=>15)); ?></td>
<td class="m-column"><?php echo $form->textField($model,'product_sales',array('size'=>3)); ?></td>
<td class="i-column"><?php echo $form->dropDownList($model,'product_status', Yii::app()->controller->product_status); ?></td>
</tr>
</table>
<?php echo CHtml::submitButton($model->isNewRecord ? 'Создать' : 'Обновить', array('class'=>'btn btn-primary btn-sm')); ?>
<?php $this->endWidget(); ?>
</div>
<?php $i = 0; ?>
<?php if(count($history) > 0){ ?>
<div class="m-form" >
<table class="table table-bordered table-striped table-hover" >
<tr>
<th class="s-column">ID</th>
<th class="i-column">Дата</th>
<th>Инфо</th>
</tr>
<?php foreach($history as $story){ ?>
<?php $i++; ?>
<tr>
<td class="s-column"><?php echo $story->record_id ?></td>
<td class="i-column"><?php echo $story->record_datetime; ?></td>
<td><?php echo $story->record_content; ?></td>
</tr>
<?php } ?>
</table>
</div>
<div class="bs-callout-right bs-callout-info align-right">Всего записей: <?=$i; ?></div>
<?php } ?><file_sep><?php
/* @var $this ProductsController */
/* @var $model Products */
$is_admin = (isset(Yii::app()->user->name) && Yii::app()->user->name == 'admin')?true:false;
$this->menu=array(
array('label'=>'Добавить товар', 'url'=>array('create')),
);
?>
<a class="butlink" id="menu-icon" href="#"> Меню </a>
<div id="menu-popup">
<?php $this->widget('ext.zii.widgets.Menu',array(
'items'=>array(
array('label'=>'Главная', 'url'=>array('/site')),
array('label'=>'Чеки', 'url'=>array('/checksInvoices')),
array('label'=>'Клиенты', 'url'=>array('/clients')),
array('label'=>'Поставщики', 'url'=>array('/providers')),
array('label'=>'Продавцы', 'url'=>array('/users')),
array('label'=>'Накладные', 'url'=>array('/invoices')),
array('label'=>'Склад', 'url'=>array('/products')),
array('label'=>'Возвраты', 'url'=>array('/returns')),
array('label'=>'Отчет', 'url'=>array('/reports')),
array('label'=>'Резервные копии', 'url'=>array('/jbackup')),
array('label'=>'Вход', 'url'=>array('/user/login'), 'visible'=>Yii::app()->user->isGuest),
array('label'=>'Выход ('.Yii::app()->user->name.')', 'url'=>array('/user/logout'), 'visible'=>!Yii::app()->user->isGuest),
),
'htmlOptions'=>array('class'=>'nav-popup'),
'lastItemCssClass'=>'pull-right',
)); ?>
</div>
<h2>Управление товарами <?php //echo CHtml::link("Добавить",array("products/create",),array('class'=>'create-button btn btn-primary btn-xs')) ?></h2>
<? if($is_admin): ?>
<?php $this->widget('zii.widgets.grid.CGridView', array(
'id'=>'products-grid',
'dataProvider'=>$model->search(),
'filter'=>$model,
'columns'=>array(
array(
'name'=>'product_code',
'htmlOptions'=>array('class'=>'i-column'),
'headerHtmlOptions'=>array('class'=>'i-column active'),
),
/*array(
'name'=>'product_id',
'headerHtmlOptions'=>array('class'=>'s-column active'),
'htmlOptions'=>array('class'=>'s-column'),
'type'=>'raw',
'value'=>'CHtml::link("$data->product_id",array("'.Yii::app()->controller->id.'/update/$data->product_id",))',
),*/
array(
'name'=>'product_name',
'headerHtmlOptions'=>array('class'=>'active'),
'type'=>'raw',
'value'=>'CHtml::link("$data->product_name",array("'.Yii::app()->controller->id.'/update/$data->product_id",))',
),
array(
'name'=>'product_measurement',
'htmlOptions'=>array('class'=>'m-column'),
'headerHtmlOptions'=>array('class'=>'m-column active'),
'type' => 'raw',
'value'=>'CHtml::encode($data->productMeasurement->unit_name)',
'filter'=>Yii::app()->controller->getMeasurementUnitsList(),
),
array(
'name'=>'product_category',
'htmlOptions'=>array('class'=>'l-column'),
'headerHtmlOptions'=>array('class'=>'l-column active'),
'type'=>'raw',
'value'=>'CHtml::encode($data->productCategories->category_name)',
'filter'=>Yii::app()->controller->getCategoriesList(),
),
/*array(
'name'=>'product_color',
'htmlOptions'=>array('class'=>'i-column'),
'headerHtmlOptions'=>array('class'=>'i-column active'),
'type' => 'raw',
'value'=>'CHtml::encode($data->productColor->color_name)',
'filter'=>Yii::app()->controller->getColorsList(),
),*/
array(
'name'=>'product_price_b',
'htmlOptions'=>array('class'=>'s-column'),
'headerHtmlOptions'=>array('class'=>'s-column active'),
),
array(
'name'=>'product_price',
'htmlOptions'=>array('class'=>'s-column'),
'headerHtmlOptions'=>array('class'=>'s-column active'),
),
array(
'name'=>'product_quantity',
'htmlOptions'=>array('class'=>'s-column'),
'headerHtmlOptions'=>array('class'=>'s-column active'),
),
/*
array(
'name'=>'product_roll',
'htmlOptions'=>array('class'=>'s-column'),
'headerHtmlOptions'=>array('class'=>'s-column active'),
),
*/
array(
'name'=>'product_status',
'htmlOptions'=>array('class'=>'i-column'),
'headerHtmlOptions'=>array('class'=>'i-column active'),
'value'=>'Yii::app()->controller->product_status[$data->product_status]',
'filter'=>Yii::app()->controller->product_status,
),
/*
array(
'name'=>'product_code',
'htmlOptions'=>array('class'=>'i-column'),
'headerHtmlOptions'=>array('class'=>'i-column active'),
),*/
array(
'name'=>'product_sales',
'htmlOptions'=>array('class'=>'s-column'),
'headerHtmlOptions'=>array('class'=>'s-column active'),
'filter'=>'',
),
/*
array(
'htmlOptions'=>array('class'=>'s-column'),
'headerHtmlOptions'=>array('class'=>'s-column active'),
'class'=>'CButtonColumn',
'template'=>'{delete}',
'buttons'=>array(
'delete' => array(
'imageUrl'=>Yii::app()->request->baseUrl.'/themes/front/images/delete.png',
),
),
array(
'class'=>'CButtonColumn',
),
),
*/
),
)); else:?>
<?php $this->widget('zii.widgets.grid.CGridView', array(
'id'=>'products-grid',
'dataProvider'=>$model->search(),
'filter'=>$model,
'columns'=>array(
array(
'name'=>'product_code',
'htmlOptions'=>array('class'=>'i-column'),
'headerHtmlOptions'=>array('class'=>'i-column active'),
),
array(
'name'=>'product_name',
'headerHtmlOptions'=>array('class'=>'active'),
'type'=>'raw',
'value'=>'CHtml::link("$data->product_name",array("'.Yii::app()->controller->id.'/update/$data->product_id",))',
),
array(
'name'=>'product_category',
'htmlOptions'=>array('class'=>'l-column'),
'headerHtmlOptions'=>array('class'=>'l-column active'),
'type'=>'raw',
'value'=>'CHtml::encode($data->productCategories->category_name)',
'filter'=>Yii::app()->controller->getCategoriesList(),
),
array(
'name'=>'product_measurement',
'htmlOptions'=>array('class'=>'m-column'),
'headerHtmlOptions'=>array('class'=>'m-column active'),
'type' => 'raw',
'value'=>'CHtml::encode($data->productMeasurement->unit_name)',
'filter'=>Yii::app()->controller->getMeasurementUnitsList(),
),
array(
'name'=>'product_price',
'htmlOptions'=>array('class'=>'s-column'),
'headerHtmlOptions'=>array('class'=>'s-column active'),
),
array(
'name'=>'product_quantity',
'htmlOptions'=>array('class'=>'s-column'),
'headerHtmlOptions'=>array('class'=>'s-column active'),
),
array(
'name'=>'product_status',
'htmlOptions'=>array('class'=>'i-column'),
'headerHtmlOptions'=>array('class'=>'i-column active'),
'value'=>'Yii::app()->controller->product_status[$data->product_status]',
'filter'=>Yii::app()->controller->product_status,
),
array(
'name'=>'product_sales',
'htmlOptions'=>array('class'=>'s-column'),
'headerHtmlOptions'=>array('class'=>'s-column active'),
'filter'=>'',
),
),
)); endif;?><file_sep><a class="butlink" id="menu-icon" href="#"> Меню </a>
<div id="menu-popup">
<?php $this->widget('ext.zii.widgets.Menu',array(
'items'=>array(
array('label'=>'Главная', 'url'=>array('/site')),
array('label'=>'Чеки', 'url'=>array('/checksInvoices')),
array('label'=>'Клиенты', 'url'=>array('/clients')),
array('label'=>'Поставщики', 'url'=>array('/providers')),
array('label'=>'Продавцы', 'url'=>array('/users')),
array('label'=>'Накладные', 'url'=>array('/invoices')),
array('label'=>'Склад', 'url'=>array('/products')),
array('label'=>'Возвраты', 'url'=>array('/returns')),
array('label'=>'Отчет', 'url'=>array('/reports')),
array('label'=>'Резервные копии', 'url'=>array('/jbackup')),
array('label'=>'Вход', 'url'=>array('/user/login'), 'visible'=>Yii::app()->user->isGuest),
array('label'=>'Выход ('.Yii::app()->user->name.')', 'url'=>array('/user/logout'), 'visible'=>!Yii::app()->user->isGuest),
),
'htmlOptions'=>array('class'=>'nav-popup'),
'lastItemCssClass'=>'pull-right',
)); ?>
</div>
<h2>Отчет по продажам</h2>
<div class="grid-view">
<form method="get" >
<label>От: </label>
<input type="text" class="datepicker1" value="<?php echo $from;?>" name="from" size="19" id="from" />
<label>До: </label>
<input type="text" class="datepicker1" value="<?php echo $to;?>" name="to" size="19" id="to" />
<select name="category">
<option value=0>Выберите категорию</option>
<?php
$categories = Yii::app()->controller->getCategoriesList();
foreach ($categories as $cid => $category) {
echo '<option value="'.$cid.'" '.( (isset($_GET['category']) && $cid==$_GET['category'])?'selected':'').'>'.$category.'</option>';
}
?>
</select>
<input type="submit" value="ok"/>
</form>
<table class="table table-bordered table-striped table-hover">
<thead>
<tr><th>ID</th><th>Код</th><th>Наименование</th><th>Поступило</th><th>Выбыло</th><th>Разница</th></tr>
</thead>
<?php
$sum_q_in = 0;
$sum_t_in = 0;
$sum_q_out = 0;
$sum_t_out = 0;
foreach ($products as $product) {
$sum_q_in += $product['sum_quantity_in'];
$sum_t_in += $product['sum_total_in'];
$sum_q_out += $product['sum_quantity_out'];
$sum_t_out += $product['sum_total_out'];
echo '
<tr>
<td rowspan=2>'.$product['product_id'].'</td>
<td rowspan=2>'.$product['product_code'].'</td>
<td rowspan=2>'.$product['product_name'].'</td>
<td>'.$product['sum_quantity_in'].'</td>
<td>'.$product['sum_quantity_out'].'</td>
<td>'.($product['sum_quantity_in'] - $product['sum_quantity_out']).'</td>
</tr>
<tr>
<td>'.$product['sum_total_in'].'</td>
<td>'.$product['sum_total_out'].'</td>
<td>'.($product['sum_total_in'] - $product['sum_total_out']).'</td>
</tr>
';
}
?>
<?php
echo '
<tr>
<td rowspan=2 colspan=3>ВСЕГО:</td>
<td>'.$sum_q_in.'</td>
<td>'.$sum_q_out.'</td>
<td>'.($sum_q_in - $sum_q_out).'</td>
</tr>
<tr>
<td>'.$sum_t_in.'</td>
<td>'.$sum_t_out.'</td>
<td>'.($sum_t_in - $sum_t_out).'</td>
</tr>
';
?>
</table>
</div>
<file_sep><?php
/* @var $this ReportController */
?>
<a class="butlink" id="menu-icon" href="#"> Меню </a>
<div id="menu-popup">
<?php $this->widget('ext.zii.widgets.Menu',array(
'items'=>array(
array('label'=>'Главная', 'url'=>array('/site')),
array('label'=>'Чеки', 'url'=>array('/checksInvoices')),
array('label'=>'Клиенты', 'url'=>array('/clients')),
array('label'=>'Поставщики', 'url'=>array('/providers')),
array('label'=>'Продавцы', 'url'=>array('/users')),
array('label'=>'Накладные', 'url'=>array('/invoices')),
array('label'=>'Склад', 'url'=>array('/products')),
array('label'=>'Возвраты', 'url'=>array('/returns')),
array('label'=>'Отчет', 'url'=>array('/report')),
array('label'=>'Резервные копии', 'url'=>array('/jbackup')),
array('label'=>'Вход', 'url'=>array('/user/login'), 'visible'=>Yii::app()->user->isGuest),
array('label'=>'Выход ('.Yii::app()->user->name.')', 'url'=>array('/user/logout'), 'visible'=>!Yii::app()->user->isGuest),
),
'htmlOptions'=>array('class'=>'nav-popup'),
'lastItemCssClass'=>'pull-right',
)); ?>
</div>
<h2>Отчеты</h2>
<div class="form" >
<div class="col-lg-6">
<div class="alert alert-info invoice-type">
<a onclick="clientsDialogOpen();" ><strong>По клиенту</strong></a>
</div>
</div>
<div class="col-lg-6">
<div class="alert alert-info invoice-type">
<a onclick="providersDialogOpen();" ><strong>По поставщику</strong></a>
</div>
</div>
<div class="col-lg-6">
<div class="alert alert-info invoice-type">
<a onclick="sellersDialogOpen();" ><strong>По продавцу</strong></a>
</div>
</div>
<div class="col-lg-6">
<div class="alert alert-info invoice-type">
<a onclick="datesDialogOpen();" ><strong>По времени (приходным накладным)</strong></a>
</div>
</div>
<div class="clearfix" ></div>
<div style="display: none;">
<div class="box-modal reports-modal" id="clientsModal">
<label>Клиент: </label>
<?php $this->widget('zii.widgets.jui.CJuiAutoComplete', array(
'attribute'=>'client_name',
'model'=>$clients,
'sourceUrl'=>array('site/clients_list'),
'name'=>'client_name',
'options'=>array(
'minLength'=>'3',
),
'htmlOptions'=>array(
'size'=>35,
'maxlength'=>45,
'onchange'=>'getClientIdForReport($(this));',
),
)); ?><br />
<a href="/report/ByClient/#" class="report-form-button pull-right" style="display: none;" >Сформировать</a>
<img src="/themes/front/images/loading.gif" class="report-form-loader" />
<div class="clear-fix" ></div>
</div>
</div>
<div style="display: none;">
<div class="box-modal reports-modal" id="providersModal">
<label>Поставщик: </label>
<?php $this->widget('zii.widgets.jui.CJuiAutoComplete', array(
'attribute'=>'provider_name',
'model'=>$providers,
'sourceUrl'=>array('site/providers_list'),
'name'=>'provider_name',
'options'=>array(
'minLength'=>'3',
),
'htmlOptions'=>array(
'size'=>30,
'maxlength'=>45,
'onchange'=>'getProviderIdForReport($(this));',
),
)); ?><br />
<a href="/report/ByProvider/#" class="report-form-button pull-right" style="display: none;" >Сформировать</a>
<img src="/themes/front/images/loading.gif" class="report-form-loader" />
<div class="clear-fix" ></div>
</div>
</div>
<?php if (false) : ?>
<div style="display: none;">
<div class="box-modal reports-modal" id="sellersModal">
<label>Продавец: </label>
<?php $this->widget('zii.widgets.jui.CJuiAutoComplete', array(
'attribute'=>'username',
'model'=>$sellers,
'sourceUrl'=>array('site/sellers_list'),
'name'=>'username',
'options'=>array(
'minLength'=>'3',
),
'htmlOptions'=>array(
'size'=>30,
'maxlength'=>45,
'onchange'=>'getSellerIdForReport($(this));',
),
)); ?><br />
<a href="/report/BySeller/#" class="report-form-button pull-right" style="display: none;" >Сформировать</a>
<img src="/themes/front/images/loading.gif" class="report-form-loader" />
<div class="clear-fix" ></div>
</div>
</div>
<?php endif; ?>
<div style="display: none;">
<div class="box-modal reports-modal" id="datesModal">
<form action="#" onsubmit="return false;" >
<label>От: </label>
<input type="text" class="datepicker1" name="from" size="19" id="from" />
<label>До: </label>
<input type="text" class="datepicker1" name="to" size="19" id="to" onchange="getDatesIdForReport($(this));" />
<br />
</form>
<img src="/themes/front/images/loading.gif" class="report-form-loader" />
<div class="clear-fix" ></div>
</div>
</div>
</div>
<file_sep><?php
/* @var $this ProvidersController */
/* @var $model Providers */
$this->menu=array(
array('label'=>'Добавить поставщика', 'url'=>array('create')),
);
?>
<a class="butlink" id="menu-icon" href="#"> Меню </a>
<div id="menu-popup">
<?php $this->widget('ext.zii.widgets.Menu',array(
'items'=>array(
array('label'=>'Главная', 'url'=>array('/site')),
array('label'=>'Чеки', 'url'=>array('/checksInvoices')),
array('label'=>'Клиенты', 'url'=>array('/clients')),
array('label'=>'Поставщики', 'url'=>array('/providers')),
array('label'=>'Продавцы', 'url'=>array('/users')),
array('label'=>'Накладные', 'url'=>array('/invoices')),
array('label'=>'Склад', 'url'=>array('/products')),
array('label'=>'Возвраты', 'url'=>array('/returns')),
array('label'=>'Отчет', 'url'=>array('/report')),
array('label'=>'Резервные копии', 'url'=>array('/jbackup')),
array('label'=>'Вход', 'url'=>array('/user/login'), 'visible'=>Yii::app()->user->isGuest),
array('label'=>'Выход ('.Yii::app()->user->name.')', 'url'=>array('/user/logout'), 'visible'=>!Yii::app()->user->isGuest),
),
'htmlOptions'=>array('class'=>'nav-popup'),
'lastItemCssClass'=>'pull-right',
)); ?>
</div>
<h2>Управление поставщиками</h2>
<?php $this->widget('zii.widgets.grid.CGridView', array(
'id'=>'providers-grid',
'dataProvider'=>$model->search(),
'filter'=>$model,
'columns'=>array(
array(
'name'=>'provider_id',
'headerHtmlOptions'=>array('class'=>'s-column active'),
'htmlOptions'=>array('class'=>'s-column'),
'type'=>'raw',
'value'=>'CHtml::link("$data->provider_id",array("'.Yii::app()->controller->id.'/update/$data->provider_id",))',
),
array(
'name'=>'provider_name',
'headerHtmlOptions'=>array('class'=>'active'),
),
array(
'name'=>'provider_category',
'headerHtmlOptions'=>array('class'=>'xl-column active'),
'htmlOptions'=>array('class'=>'xl-column'),
'filter'=>Yii::app()->controller->provider_categories_array,
'value'=>'Yii::app()->controller->provider_categories_array[$data->provider_category]',
),
array(
'name'=>'provider_debt',
'headerHtmlOptions'=>array('class'=>'m-column active'),
'htmlOptions'=>array('class'=>'m-column'),
),
array(
'htmlOptions'=>array('class'=>'s-column'),
'headerHtmlOptions'=>array('class'=>'s-column active'),
'class'=>'CButtonColumn',
'template'=>'{delete}',
'buttons'=>array(
'delete' => array(
'imageUrl'=>Yii::app()->request->baseUrl.'/themes/front/images/delete.png',
),
),
),
),
)); ?>
<file_sep><?php
/* @var $this ReturnsController */
/* @var $model Returns */
if($model->isNewRecord){
$this->menu=array(
array('label'=>'Список возвратов', 'url'=>array('index')),
);
} else{
$this->menu=array(
array('label'=>'Список возвратов', 'url'=>array('index')),
array('label'=>'Добавить возврат', 'url'=>array('create')),
);
}
?>
<?php if($model->isNewRecord){ ?>
<h2>Добавить возврат</h2>
<?php } else { ?>
<h2>Изменить возврат - «<?php echo $model->return_id; ?>»</h2>
<?php } ?>
<div class="form">
<?php $form=$this->beginWidget('CActiveForm', array(
'id'=>'returns-form',
'enableAjaxValidation'=>false,
)); ?>
<?php echo $form->errorSummary($model); ?>
<table class="table table-bordered table-striped table-hover" >
<tr>
<td><?php echo $form->labelEx($model,'return_datetime'); ?></td>
<td><?php echo $form->textField($model,'return_datetime', array('class'=>'datepicker')); ?></td>
</tr>
<tr>
<td><?php echo $form->labelEx($model,'invoice_id'); ?></td>
<td><?php echo $form->textField($model,'invoice_id'); ?></td>
</tr>
<tr>
<td><?php echo $form->labelEx($model,'invoice_row'); ?></td>
<td><?php echo $form->textField($model,'invoice_row'); ?></td>
</tr>
<tr>
<td><?php echo $form->labelEx($model,'client_id'); ?></td>
<td><?php echo $form->textField($model,'client_id'); ?></td>
</tr>
<tr>
<td><?php echo $form->labelEx($model,'product_id'); ?></td>
<td><?php echo $form->textField($model,'product_id'); ?></td>
</tr>
<tr>
<td><?php echo $form->labelEx($model,'product_name'); ?></td>
<td><?php echo $form->textField($model,'product_name',array('size'=>30,'maxlength'=>255)); ?></td>
</tr>
<tr>
<td><?php echo $form->labelEx($model,'product_color'); ?></td>
<td><?php echo $form->dropDownList($model,'product_color', Yii::app()->controller->getColorsList()); ?></td>
</tr>
<tr>
<td><?php echo $form->labelEx($model,'product_measurement'); ?></td>
<td><?php echo $form->dropDownList($model,'product_measurement', Yii::app()->controller->getMeasurementUnitsList()); ?></td>
</tr>
<tr>
<td><?php echo $form->labelEx($model,'product_quantity'); ?></td>
<td><?php echo $form->textField($model,'product_quantity',array('size'=>15,'maxlength'=>15)); ?></td>
</tr>
<tr>
<td><?php echo $form->labelEx($model,'product_roll'); ?></td>
<td><?php echo $form->textField($model,'product_roll'); ?></td>
</tr>
<tr>
<td><?php echo $form->labelEx($model,'product_price'); ?></td>
<td><?php echo $form->textField($model,'product_price',array('size'=>15,'maxlength'=>15)); ?></td>
</tr>
<tr>
<td><?php echo $form->labelEx($model,'product_total'); ?></td>
<td><?php echo $form->textField($model,'product_total',array('size'=>15,'maxlength'=>15)); ?></td>
</tr>
<tr>
<td><?php echo $form->labelEx($model,'return_status'); ?></td>
<td><?php echo $form->dropDownList($model,'return_status', Yii::app()->controller->return_status); ?></td>
</tr>
</table>
<?php echo CHtml::submitButton($model->isNewRecord ? 'Создать' : 'Обновить', array('class'=>'btn btn-primary btn-sm')); ?>
<?php $this->endWidget(); ?>
</div><file_sep><a class="butlink" id="menu-icon" href="#"> Меню </a>
<div id="menu-popup">
<?php $this->widget('ext.zii.widgets.Menu',array(
'items'=>array(
array('label'=>'Главная', 'url'=>array('/site')),
array('label'=>'Чеки', 'url'=>array('/checksInvoices')),
array('label'=>'Клиенты', 'url'=>array('/clients')),
array('label'=>'Поставщики', 'url'=>array('/providers')),
array('label'=>'Продавцы', 'url'=>array('/users')),
array('label'=>'Накладные', 'url'=>array('/invoices')),
array('label'=>'Склад', 'url'=>array('/products')),
array('label'=>'Возвраты', 'url'=>array('/returns')),
array('label'=>'Отчет', 'url'=>array('/reports')),
array('label'=>'Резервные копии', 'url'=>array('/jbackup')),
array('label'=>'Вход', 'url'=>array('/user/login'), 'visible'=>Yii::app()->user->isGuest),
array('label'=>'Выход ('.Yii::app()->user->name.')', 'url'=>array('/user/logout'), 'visible'=>!Yii::app()->user->isGuest),
),
'htmlOptions'=>array('class'=>'nav-popup'),
'lastItemCssClass'=>'pull-right',
)); ?>
</div>
<h2>Отчет по продажам</h2>
<div class="grid-view">
<form method="get" >
<label>От: </label>
<input type="text" class="datepicker1" value="<?php echo $from;?>" name="from" size="19" id="from" />
<label>До: </label>
<input type="text" class="datepicker1" value="<?php echo $to;?>" name="to" size="19" id="to" />
<input type="submit" value="ok"/>
</form>
<table class="table table-bordered table-striped table-hover">
<thead>
<tr><th>Код</th><th>Номер чека</th><th>Дата</th><th>Наименование</th><th>Покупка</th><th>Продажа</th><th>Кол-во</th><th>всего</th><th>профит</th></tr>
</thead>
<?php
$sum_product_price_b = 0;
$sum_product_price = 0;
$sum_product_quantity = 0;
$sum_product_total = 0;
$sum_profit = 0;
foreach ($products as $product) {
$profit = ($product['product_total'] - ($product['product_price_b']*$product['product_quantity']));
$sum_product_price_b += $product['product_price_b'];
$sum_product_price += $product['product_price'];
$sum_product_quantity += $product['product_quantity'];
$sum_product_total += $product['product_total'];
$sum_profit += $profit;
echo '
<tr>
<td>'.$product['product_code'].'</td>
<td>'.$product['invoice_id'].'</td>
<td>'.$product['invoice_datetime'].'</td>
<td>'.$product['product_name'].'</td>
<td>'.$product['product_price_b'].'</td>
<td>'.$product['product_price'].'</td>
<td>'.$product['product_quantity'].'</td>
<td>'.$product['product_total'].'</td>
<td>'.$profit.'</td>
</tr>
';
}
?>
<?php
echo '
<tr>
<td colspan=4>ВСЕГО:</td>
<td>'.$sum_product_price_b.'</td>
<td>'.$sum_product_price.'</td>
<td>'.$sum_product_quantity.'</td>
<td>'.$sum_product_total.'</td>
<td>'.$sum_profit.'</td>
</tr>
';
?>
</table>
</div>
<file_sep><?php
/* @var $this ExpectedProductsController */
/* @var $model ExpectedProducts */
?>
<a class="butlink" id="menu-icon" href="#"> Меню </a>
<div id="menu-popup">
<?php $this->widget('ext.zii.widgets.Menu',array(
'items'=>array(
array('label'=>'Главная', 'url'=>array('/site')),
array('label'=>'Чеки', 'url'=>array('/checksInvoices')),
array('label'=>'Клиенты', 'url'=>array('/clients')),
array('label'=>'Поставщики', 'url'=>array('/providers')),
array('label'=>'Продавцы', 'url'=>array('/users')),
array('label'=>'Накладные', 'url'=>array('/invoices')),
array('label'=>'Склад', 'url'=>array('/products')),
array('label'=>'Возвраты', 'url'=>array('/returns')),
array('label'=>'Отчет', 'url'=>array('/report')),
array('label'=>'Резервные копии', 'url'=>array('/jbackup')),
array('label'=>'Вход', 'url'=>array('/user/login'), 'visible'=>Yii::app()->user->isGuest),
array('label'=>'Выход ('.Yii::app()->user->name.')', 'url'=>array('/user/logout'), 'visible'=>!Yii::app()->user->isGuest),
),
'htmlOptions'=>array('class'=>'nav-popup'),
'lastItemCssClass'=>'pull-right',
)); ?>
</div>
<?php if($model->isNewRecord){ ?>
<h2>Добавить товар</h2>
<?php } else{ ?>
<h2>Изменить товар - «<?php echo $model->product_name; ?>»</h2>
<?php } ?>
<div class="form">
<?php $form=$this->beginWidget('CActiveForm', array(
'id'=>'expected-products-form',
'enableAjaxValidation'=>false,
)); ?>
<?php echo $form->errorSummary($model); ?>
<table class="table table-bordered table-striped table-hover" >
<tr>
<td class="m-column"><?php echo $form->labelEx($model,'invoice_id'); ?></td>
<td><?php echo $form->labelEx($model,'product_name'); ?></td>
<td class="i-column"><?php echo $form->labelEx($model,'product_color'); ?></td>
<td class="m-column"><?php echo $form->labelEx($model,'product_measurement'); ?></td>
<td class="m-column"><?php echo $form->labelEx($model,'product_quantity'); ?></td>
<td class="m-column"><?php echo $form->labelEx($model,'product_roll'); ?></td>
<td class="m-column"><?php echo $form->labelEx($model,'product_price'); ?></td>
</tr>
<tr>
<td class="m-column"><?php echo $form->textField($model,'invoice_id',array('class'=>'nulled-input','readonly'=>true)); ?></td>
<td><?php echo $form->textField($model,'product_name',array('size'=>60,'maxlength'=>255)); ?></td>
<td class="i-column"><?php echo $form->dropDownList($model,'product_color',Yii::app()->controller->getColorsList()); ?></td>
<td class="m-column"><?php echo $form->dropDownList($model,'product_measurement', Yii::app()->controller->getMeasurementUnitsList()); ?></td>
<td class="m-column"><?php echo $form->textField($model,'product_quantity',array('size'=>15,'maxlength'=>15)); ?></td>
<td class="m-column"><?php echo $form->textField($model,'product_roll',array('size'=>15,'maxlength'=>15)); ?></td>
<td class="m-column"><?php echo $form->textField($model,'product_price',array('size'=>15,'maxlength'=>15)); ?></td>
</tr>
</table>
<?php echo CHtml::submitButton($model->isNewRecord ? 'Создать' : 'Обновить', array('class'=>'btn btn-primary btn-sm')); ?>
<?php $this->endWidget(); ?>
</div><file_sep><?php
/* @var $this InvoicesController */
/* @var $dataProvider CActiveDataProvider */
?>
<h2>Накладные</h2>
<div class="form" >
<div class="col-lg-6">
<div class="alert alert-info invoice-type">
<a href="/clientsInvoices" ><strong>Накладные клиентам</strong></a>
</div>
</div>
<div class="col-lg-6">
<div class="alert alert-info invoice-type">
<a href="/providersInvoices" ><strong>Накладные поставщикам</strong></a>
</div>
</div>
<div class="clearfix" ></div>
</div><file_sep><?php
/* @var $this UsersController */
/* @var $model Users */
$this->menu=array(
array('label'=>'Добавить продавца', 'url'=>array('create')),
);
?>
<h2>Управление пользователями</h2>
<?php $this->widget('zii.widgets.grid.CGridView', array(
'id'=>'users-grid',
'dataProvider'=>$model->search(),
'filter'=>$model,
'columns'=>array(
array(
'name'=>'id',
'headerHtmlOptions'=>array('class'=>'s-column active'),
'htmlOptions'=>array('class'=>'s-column'),
'type'=>'raw',
'value'=>'CHtml::link("$data->id",array("'.Yii::app()->controller->id.'/update/$data->id",))',
),
array(
'name'=>'username',
'headerHtmlOptions'=>array('class'=>'active'),
),
/*'password',
'email',*/
array(
'name'=>'create_at',
'headerHtmlOptions'=>array('class'=>'l-column active'),
'htmlOptions'=>array('class'=>'l-column'),
'filter'=>'',
),
array(
'name'=>'lastvisit_at',
'headerHtmlOptions'=>array('class'=>'l-column active'),
'htmlOptions'=>array('class'=>'l-column'),
'filter'=>'',
),
/*array(
'name'=>'superuser',
'htmlOptions'=>array('class'=>'s-column'),
'headerHtmlOptions'=>array('class'=>'s-column active'),
),
array(
'name'=>'status',
'htmlOptions'=>array('class'=>'s-column'),
'headerHtmlOptions'=>array('class'=>'s-column active'),
),*/
array(
'name'=>'activkey',
'headerHtmlOptions'=>array('class'=>'m-column active'),
'htmlOptions'=>array('class'=>'m-column'),
'filter'=>'',
),
array(
'htmlOptions'=>array('class'=>'s-column'),
'headerHtmlOptions'=>array('class'=>'s-column active'),
'class'=>'CButtonColumn',
'template'=>'{delete}',
'buttons'=>array(
'delete' => array(
'imageUrl'=>Yii::app()->request->baseUrl.'/themes/front/images/delete.png',
),
),
),
),
)); ?>
<file_sep><?php
class UsersController extends Controller
{
/**
* @var string the default layout for the views. Defaults to '//layouts/column2', meaning
* using two-column layout. See 'protected/views/layouts/column2.php'.
*/
public $layout='//layouts/column2';
/**
* @return array action filters
*/
public function filters()
{
return array(
'accessControl', // perform access control for CRUD operations
'postOnly + delete', // we only allow deletion via POST request
);
}
/**
* Specifies the access control rules.
* This method is used by the 'accessControl' filter.
* @return array access control rules
*/
public function accessRules()
{
return array(
/*array('allow', // allow all users to perform 'index' and 'view' actions
'actions'=>array(),
'users'=>array('*'),
),
*/
array('allow', // allow authenticated user to perform 'create' and 'update' actions
'actions'=>array('index','stock'),
'users'=>array('@'),
),
array('allow', // allow admin user to perform 'admin' and 'delete' actions
'actions'=>array('index','create','update','delete','getUserId'),
'users'=>array('admin'),
),
array('deny', // deny all users
'users'=>array('*'),
),
);
}
/**
* Creates a new model.
* If creation is successful, the browser will be redirected to the 'view' page.
*/
public function actionCreate()
{
$model=new Users;
// Uncomment the following line if AJAX validation is needed
// $this->performAjaxValidation($model);
if(isset($_POST['Users']))
{
$model->attributes=$_POST['Users'];
$soucePassword = $model->password;
$model->activkey=md5(microtime().$model->password);
$model->password=md5($model->password);
$model->superuser=0;
$model->status = 1;
if($model->save())
$this->redirect(array('index'));
}
$this->render('update',array(
'model'=>$model,
));
}
public function actionCreateSalaryTransaction($id)
{
//$user = Users::model()->findByPk($id);
$salary=new UsersSalary;
// Uncomment the following line if AJAX validation is needed
// $this->performAjaxValidation($model);
if(isset($_POST['UsersSalary']))
{
$salary->attributes=$_POST['UsersSalary'];
$salary->user_id = $id;
if($salary->save())
$this->redirect(array('view','id'=>$salary->id));
}
$this->render('create',array(
'salaty'=>$salary,
));
}
/**
* Updates a particular model.
* If update is successful, the browser will be redirected to the 'view' page.
* @param integer $id the ID of the model to be updated
*/
public function actionUpdate($id)
{
$model=$this->loadModel($id);
// Uncomment the following line if AJAX validation is needed
// $this->performAjaxValidation($model);
$criteria=new CDbCriteria;
$criteria->condition='invoice_seller_id=:invoice_seller_id';
$criteria->params=array(':invoice_seller_id'=>$id);
$criteria->order = 'invoice_datetime DESC';
$invoices = ChecksInvoices::model()->findAll($criteria);
$count = count($invoices);
$pages = new CPagination($count);
$pages->pageSize=20;
$pages->applyLimit($criteria);
$invoices = ChecksInvoices::model()->findAll($criteria);
$d = new DateTime('first day of this month');
$salaryCriteria = new CDbCriteria;
$salaryCriteria->condition='user_id=:user_id AND salary_datetime > :time';
$salaryCriteria->params=array(':user_id'=>$id,':time'=>$d->format('Y-m-d'));
$salaryCriteria->order = 'salary_datetime DESC';
$salaryMounth = UsersSalary::model()->findAll($salaryCriteria);
$count = count($salaryMounth);
$pagesSalary = new CPagination($count);
$pagesSalary->pageSize=15;
$pagesSalary->applyLimit($salaryCriteria);
$salaryMounth = UsersSalary::model()->findAll($salaryCriteria);
$salaryCriteria = new CDbCriteria;
//$salaryCriteria->select = 'sum(salary_summ) AS sumMonth, salary_datetime, salary_comment';
$salaryCriteria->condition='user_id=:user_id';
$salaryCriteria->params=array(':user_id'=>$id);
$salaryCriteria->group = 'MONTH(salary_datetime)';
$salaryCriteria->order = 'salary_datetime DESC';
$query='SELECT SUM(salary_summ) as sumMonth, MONTH(salary_datetime) as m, YEAR(salary_datetime) as y
FROM stock_users_salary
GROUP BY YEAR(salary_datetime), MONTH(salary_datetime)
ORDER BY YEAR(salary_datetime), MONTH(salary_datetime);';
$summ=Yii::app()->db->createCommand($query)->queryAll();
// $command=Yii::app()->db->createCommand();
// $command->select('sum(salary_summ) AS sumMonth');
// $command->from('stock_users_salary');
// $command->where('user_id=:user_id', array(':user_id'=>$id));
// $command->group('MONTH(salary_datetime)');
// $command->order('salary_datetime DESC');
// $summ = $command->queryScalar();
$salaryAll = UsersSalary::model()->findAll($salaryCriteria);//var_dump($salaryAll);
$count = count($salaryMounth);
$pagesSalary = new CPagination($count);
$pagesSalary->pageSize=15;
$pagesSalary->applyLimit($salaryCriteria);
$salaryAll = UsersSalary::model()->findAll($salaryCriteria);
$salary=new UsersSalary;
if(isset($_POST['UsersSalary']))
{
$salary->attributes=$_POST['UsersSalary'];
$salary->user_id = $id;
if($salary->save())
$this->redirect(array('update','id'=>$id));
}
if(isset($_POST['Users']))
{
$model->attributes=$_POST['Users'];
if(!empty($model->password)){
$model->password = md5($model->password);
} else{
$user = Users::model()->findByPk($model->id);
$model->password = $user->password;
}
if($model->save())
$this->redirect(array('index'));
}
$this->render('update',array(
'model'=>$model,
'invoices'=>$invoices,
'pages'=>$pages,
'salary'=>$salary,
'salaryMounth'=>$salaryMounth,
'pagesSalary'=>$pagesSalary,
'salaryAll'=>$salaryAll,
'summ'=>$summ,
));
}
/**
* Deletes a particular model.
* If deletion is successful, the browser will be redirected to the 'admin' page.
* @param integer $id the ID of the model to be deleted
*/
public function actionDelete($id)
{
$this->loadModel($id)->delete();
// if AJAX request (triggered by deletion via admin grid view), we should not redirect the browser
if(!isset($_GET['ajax']))
$this->redirect(isset($_POST['returnUrl']) ? $_POST['returnUrl'] : array('index'));
}
/**
* Lists all models.
*/
public function actionIndex()
{
$model=new Users('search');
$model->unsetAttributes(); // clear any default values
if(isset($_GET['Users']))
$model->attributes=$_GET['Users'];
$this->render('admin',array(
'model'=>$model,
));
}
/**
* Returns the data model based on the primary key given in the GET variable.
* If the data model is not found, an HTTP exception will be raised.
* @param integer $id the ID of the model to be loaded
* @return Users the loaded model
* @throws CHttpException
*/
public function loadModel($id)
{
$model=Users::model()->findByPk($id);
if($model===null)
throw new CHttpException(404,'The requested page does not exist.');
return $model;
}
/**
* Performs the AJAX validation.
* @param Users $model the model to be validated
*/
protected function performAjaxValidation($model)
{
if(isset($_POST['ajax']) && $_POST['ajax']==='users-form')
{
echo CActiveForm::validate($model);
Yii::app()->end();
}
}
public function actionGetUserId(){
if(isset($_GET['username'])){
$user_criteria=new CDbCriteria;
$user_criteria->condition='username=:username';
$user_criteria->params=array(':username'=> $_GET['username']);
$user = Users::model()->find($user_criteria);
echo $user->id;
Yii::app()->end();
}
}
public function actionStock($id)
{
$user=$this->loadModel($id);
$model=new Products('search');
$model->unsetAttributes(); // clear any default values
if(isset($_GET['Products']))
$model->attributes=$_GET['Products'];
$stock=new ProductsUsers('search');
$stock->unsetAttributes(); // clear any default values
$stock->attributes = array('user_id' => $user->id);
if(isset($_GET['ProductsUsers']))
$stock->attributes=$_GET['ProductsUsers'];
$this->render('stock',array(
'model'=>$model,
'user'=>$user,
'stock'=>$stock,
));
}
}
<file_sep><?php
/* @var $this ReportsController */
/* @var $model Products */
/* @var $form CActiveForm */
?>
<div class="wide form">
<?php $form=$this->beginWidget('CActiveForm', array(
'action'=>Yii::app()->createUrl($this->route),
'method'=>'get',
)); ?>
<div class="row">
<?php echo $form->label($model,'product_id'); ?>
<?php echo $form->textField($model,'product_id'); ?>
</div>
<div class="row">
<?php echo $form->label($model,'product_name'); ?>
<?php echo $form->textField($model,'product_name',array('size'=>60,'maxlength'=>255)); ?>
</div>
<div class="row">
<?php echo $form->label($model,'product_roll'); ?>
<?php echo $form->textField($model,'product_roll'); ?>
</div>
<div class="row">
<?php echo $form->label($model,'product_measurement'); ?>
<?php echo $form->textField($model,'product_measurement'); ?>
</div>
<div class="row">
<?php echo $form->label($model,'product_color'); ?>
<?php echo $form->textField($model,'product_color'); ?>
</div>
<div class="row">
<?php echo $form->label($model,'product_price_b'); ?>
<?php echo $form->textField($model,'product_price_b',array('size'=>15,'maxlength'=>15)); ?>
</div>
<div class="row">
<?php echo $form->label($model,'product_price'); ?>
<?php echo $form->textField($model,'product_price',array('size'=>15,'maxlength'=>15)); ?>
</div>
<div class="row">
<?php echo $form->label($model,'product_quantity'); ?>
<?php echo $form->textField($model,'product_quantity',array('size'=>15,'maxlength'=>15)); ?>
</div>
<div class="row">
<?php echo $form->label($model,'product_status'); ?>
<?php echo $form->textField($model,'product_status'); ?>
</div>
<div class="row">
<?php echo $form->label($model,'product_sales'); ?>
<?php echo $form->textField($model,'product_sales'); ?>
</div>
<div class="row">
<?php echo $form->label($model,'product_code'); ?>
<?php echo $form->textField($model,'product_code',array('size'=>20,'maxlength'=>20)); ?>
</div>
<div class="row buttons">
<?php echo CHtml::submitButton('Search'); ?>
</div>
<?php $this->endWidget(); ?>
</div><!-- search-form --><file_sep>$(document).ready(function(){
if($("input").is(".datepicker")){
$(".datepicker").datetimepicker({
showOtherMonths: true,
selectOtherMonths: true,
timeOnlyTitle: 'Выберите время',
timeText: 'Время',
hourText: 'Часы',
minuteText: 'Минуты',
secondText: 'Секунды',
currentText: 'Сейчас',
closeText: 'Закрыть',
timeFormat: 'HH:mm:ss'
});
}
if($("input").is(".datepicker1")){
$(".datepicker1").datepicker({
showOtherMonths: true,
selectOtherMonths: true,
timeOnlyTitle: 'Выберите время',
timeText: 'Время',
hourText: 'Часы',
minuteText: 'Минуты',
secondText: 'Секунды',
currentText: 'Сейчас',
closeText: 'Закрыть',
dateFormat: 'yy-mm-dd',
prevText: '<Пред',
nextText: 'След>',
monthNames: ['Январь','Февраль','Март','Апрель','Май','Июнь','Июль','Август','Сентябрь','Октябрь','Ноябрь','Декабрь'],
monthNamesShort: ['Янв','Фев','Мар','Апр','Май','Июн','Июл','Авг','Сен','Окт','Ноя','Дек'],
dayNames: ['воскресенье','понедельник','вторник','среда','четверг','пятница','суббота'],
dayNamesShort: ['вс','пн','вт','ср','чт','пт','сб'],
dayNamesMin: ['Вс','Пн','Вт','Ср','Чт','Пт','Сб'],
weekHeader: 'Не',
firstDay: 1,
isRTL: false,
showMonthAfterYear: false,
yearSuffix: '',
showButtonPanel: true,
autoOpen: false
});
}
});
function clientsDialogOpen(){
$("#clientsModal").dialog({
autoOpen: false,
show: "fade",
hide: "fade",
modal: true,
resizable: false,
closeOnEscape: true,
closeText: "",
width: 380,
height: 175,
title: "Отчет по клиенту"
});
$('#clientsModal').dialog('open');
}
function providersDialogOpen(){
$("#providersModal").dialog({
autoOpen: false,
show: "fade",
hide: "fade",
modal: true,
resizable: false,
closeOnEscape: true,
closeText: "",
width: 380,
height: 175,
title: "Отчет по поставщику"
});
$('#providersModal').dialog('open');
}
function sellersDialogOpen(){
$("#sellersModal").dialog({
autoOpen: false,
show: "fade",
hide: "fade",
modal: true,
resizable: false,
closeOnEscape: true,
closeText: "",
width: 380,
height: 175,
title: "Отчет по продавцу"
});
$('#sellersModal').dialog('open');
}
function datesDialogOpen(){
$("#datesModal").dialog({
autoOpen: false,
show: "fade",
hide: "fade",
modal: true,
resizable: false,
closeOnEscape: true,
closeText: "",
width: 380,
height: 175,
title: "Отчет по времени",
open: function (event, ui) {
if ($(".ui-datepicker").is(":visible"))
$(".ui-datepicker").hide();
$("#from").blur();
}
});
$('#datesModal').dialog('open');
}
$(function($){
$.datepicker.regional['ru'] = {
closeText: 'Закрыть',
prevText: '<Пред',
nextText: 'След>',
currentText: 'Сегодня',
monthNames: ['Январь','Февраль','Март','Апрель','Май','Июнь','Июль','Август','Сентябрь','Октябрь','Ноябрь','Декабрь'],
monthNamesShort: ['Янв','Фев','Мар','Апр','Май','Июн','Июл','Авг','Сен','Окт','Ноя','Дек'],
dayNames: ['воскресенье','понедельник','вторник','среда','четверг','пятница','суббота'],
dayNamesShort: ['вс','пн','вт','ср','чт','пт','сб'],
dayNamesMin: ['Вс','Пн','Вт','Ср','Чт','Пт','Сб'],
weekHeader: 'Не',
dateFormat: 'yy-mm-dd',
firstDay: 1,
isRTL: false,
showMonthAfterYear: false,
yearSuffix: ''
};
$.datepicker.setDefaults($.datepicker.regional['ru']);
});
function getClientDebt(clientId){
$.ajax({
url: "/clients/getDebt",
type: 'post',
data: 'client_id='+clientId,
success: function(data){
$("#ClientsInvoices_client_debt").val(data);
$('.client-form-loader').hide();
}
});
}
function getProviderDebt(providerId){
$.ajax({
url: "/providers/getDebt",
type: 'post',
data: 'provider_id='+providerId,
success: function(data){
$("#ProvidersInvoices_provider_debt").val(data);
$('.provider-form-loader').hide();
}
});
}
function addRow(){
$.ajax({
success: function(html){
$(".tasks").append(html);
},
type: 'get',
url: '/site/field',
data: {
index: $(".tasks tr.rowP").size()
},
cache: false,
dataType: 'html'
});
}
function addRow1(){
$.ajax({
success: function(html){
$(".tasks1").append(html);
},
type: 'get',
url: '/site/field1',
data: {
index: $(".tasks1 tr.rowP1").size()
},
cache: false,
dataType: 'html'
});
}
function getSubTotal(element){
var pricePerOne = $(element).val();
var quantity = $(element).parents('.rowP').find('.quantity-field').val();
var subTotal = pricePerOne * quantity;
$(element).parents('.rowP').find('.provider_invoice_subtotal').val(subTotal);
}
function getCSubTotal(element){
var quantity = $(element).parents('.rowP1').find('.quantity-field').val();
var pricePerOne = $(element).parents('.rowP1').find('.price-field').val();
var subTotal = pricePerOne * quantity;
$(element).parents('.rowP1').find('.client_invoice_subtotal').val(subTotal);
}
function invoicePTotal(element){
var total = 0.00;
$("#providers-invoices-form .provider_invoice_subtotal").each(function(){
total += parseFloat($(this).val());
});
$("#ProvidersInvoices_invoice_summ").val(total);
}
function invoiceCTotal(element){
var total = 0.00;
$("#clients-invoices-form .client_invoice_subtotal").each(function(){
total += parseFloat($(this).val());
});
$("#ClientsInvoices_invoice_summ").val(total);
}
function formatRolls(element){
var input = $(element).val();
var value = $.trim(input).replace(/\s+/g," ");
$(element).val(value);
if(value.length > 0){
var rolls = value.split(" ").length;
$(element).parents('.rowP1').find('.rolls-field').val(rolls);
var arrayRolls = value.split(" ");
var total = 0;
for(var i = 0; i < rolls; i++){
total += parseInt(arrayRolls[i]);
}
if(isNaN(total)){
alert('Неправильное количество');
$(element).val('');
} else {
$(element).parents('.rowP1').find(".quantity-field").val(total);
}
} else{
alert('Неправильное количество');
}
}
function charFinder(char,string){
var count = 0,
pos = string.indexOf(char);
while ( pos != -1 ){
count++;
pos = string.indexOf(char,pos+1);
}
return count;
}
function getCProductInfo(element){
var id = $(element).val();
$.ajax({
url: "/products/getProductInfo",
type: 'get',
data: 'product_id='+id,
success: function(data){
var obj = jQuery.parseJSON(data);
$(element).parents('.rowP1').find(".color-field").text(obj.product_color);
$(element).parents('.rowP1').find(".measurement-field").text(obj.product_measurement);
$(element).parents('.rowP1').find(".price-field").val(obj.product_price);
if(obj.product_quantity > 0)
var itemClass = 'label label-success';
else
var itemClass = 'label label-danger';
var availability = "Доступно на складе: <span class='" + itemClass + "'>" + obj.product_quantity + "<span>";
$(element).parents('.rowP1').next('tr').find(".product-additional-info").html('');
$(element).parents('.rowP1').next('tr').find(".product-additional-info").append(availability);
}
});
}
function getClientId(clientName){
$.ajax({
url: "/clients/getClientId",
type: 'get',
data: 'client_name='+clientName,
beforeSend: function(){
$('.client-form-loader').show();
},
success: function(data){
$('#ClientsInvoices_invoice_client_id').val(data);
getClientDebt(data);
}
});
}
function getClientIdForReport(element){
var clientName = $(element).val();
$.ajax({
url: "/clients/getClientId",
type: 'get',
data: 'client_name='+clientName,
beforeSend: function(){
$(element).parents('.reports-modal').find('.report-form-loader').show();
},
success: function(data){
var cap = $(element).parents('.reports-modal').find('.report-form-button').attr('href');
var parts = cap.split('/');
parts[parts.length - 1] = data;
var link = parts.join('/');
$(element).parents('.reports-modal').find('.report-form-button').attr('href', link).show();
$(element).parents('.reports-modal').find('.report-form-loader').hide();
}
});
}
function getProviderId(providerName){
$.ajax({
url: "/providers/getProviderId",
type: 'get',
data: 'provider_name='+providerName,
beforeSend: function(){
$('.provider-form-loader').show();
},
success: function(data){
$('#ProvidersInvoices_invoice_provider_id').val(data);
getProviderDebt(data);
}
});
}
function getProviderIdForReport(element){
var providerName = $(element).val();
$.ajax({
url: "/providers/getProviderId",
type: 'get',
data: 'provider_name='+providerName,
beforeSend: function(){
$(element).parents('.reports-modal').find('.report-form-loader').show();
},
success: function(data){
var cap = $(element).parents('.reports-modal').find('.report-form-button').attr('href');
var parts = cap.split('/');
parts[parts.length - 1] = data;
var link = parts.join('/');
$(element).parents('.reports-modal').find('.report-form-button').attr('href', link).show();
$(element).parents('.reports-modal').find('.report-form-loader').hide();
}
});
}
function getSellerIdForReport(element){
var userName = $(element).val();
$.ajax({
url: "/users/getUserId",
type: 'get',
data: 'username='+userName,
beforeSend: function(){
$(element).parents('.reports-modal').find('.report-form-loader').show();
},
success: function(data){
var cap = $(element).parents('.reports-modal').find('.report-form-button').attr('href');
var parts = cap.split('/');
parts[parts.length - 1] = data;
var link = parts.join('/');
$(element).parents('.reports-modal').find('.report-form-button').attr('href', link).show();
$(element).parents('.reports-modal').find('.report-form-loader').hide();
}
});
}
function getDatesIdForReport(element){
var from = $('#from').val();
var to = $('#to').val();
$(element).parents('.reports-modal').find('.report-form-loader').show();
$(element).parents('form').append('<a href="/report/ByDates?from=' + from + '&to=' + to + '" class="report-form-button pull-right" >Сформулировать</a>');
$(element).parents('.reports-modal').find('.report-form-loader').hide();
}
function changeFieldType(element){
var currentType = $(element).prop('type');
if(currentType == 'password'){
$(element).prop('type', 'text');
} else{
$(element).prop('type', 'password');
}
}
function deleteRow(element, isNext){
if(isNext){
if($('tr.rowP1').length > 1){
$(element).parents('tr.rowP1').next('tr').remove();
$(element).parents('tr').remove();
}
} else{
if($('tr.rowP').length > 1){
$(element).parents('tr.rowP').remove();
}
}
}
function loadProductInfo(element){
var productName = $(element).val();
$.ajax({
url: "/products/getProductByName",
type: 'get',
data: 'product_name='+productName,
beforeSend: function(){
//$(element).parents('.reports-modal').find('.report-form-loader').show();
},
success: function(data){
var obj = jQuery.parseJSON(data);
$(element).parents('tr.rowP1').find('.id-field').val(obj.product_id);
$(element).parents('tr.rowP1').find('.price-field').val(obj.product_price);
$(element).parents('tr.rowP1').find('.color-field option').each(function(){
if($(this).val() == obj.product_color){
$(this).attr('selected', 'selected');
}
});
$(element).parents('tr.rowP1').find('.measurement-field option').each(function(){
if($(this).val() == obj.product_measurement){
$(this).attr('selected', 'selected');
}
});
if(obj.product_quantity > 0)
var itemClass = 'label label-success';
else
var itemClass = 'label label-danger';
var availability = "Доступно на складе: <span class='" + itemClass + "'>" + obj.product_quantity + "<span>";
$(element).parents('.rowP1').next('tr').find(".product-additional-info").html('');
$(element).parents('.rowP1').next('tr').find(".product-additional-info").append(availability);
}
});
}<file_sep><tr class="rowP">
<td class="align-center">
<?php echo CHtml::activeTextField($model, "[$index]product_name")?>
</td>
<td class="l-column">
<?php echo CHtml::activeTextField($model, "[$index]product_color", array("size"=>15))?>
</td>
<td class="i-column">
<?php echo CHtml::dropDownList(
"ExpectedProducts[".$index."][product_measurement]",
'',
Yii::app()->controller->getMeasurementUnitsList()); ?>
</td>
<td class="l-column">
<?php echo CHtml::activeTextField($model, "[$index]product_quantity", array("size"=>10, "class"=>"quantity-field"))?>
</td>
<td class="m-column">
<?php echo CHtml::activeHiddenField($model, "[$index]invoice_id", array('value'=>1)); ?>
<?php echo CHtml::activeTextField($model, "[$index]product_price", array("class"=>"last-field align-center", "onblur" => "getSubTotal($(this)); invoicePTotal();","value"=>0,"size"=>5))?>
</td>
<td class="m-column">
<!--<span id="<? echo $index; ?>_subtotal" class="provider_invoice_subtotal" >0</span>-->
<?php echo CHtml::activeTextField($model, "[$index]product_total",array('value'=>0,'class'=>'provider_invoice_subtotal align-center','readonly'=>true,'size'=>5))?>
</td>
<td class="align-center">
<a onclick="deleteRow($(this));" class="delete-row" ><img src="<?php echo Yii::app()->request->baseUrl.'/themes/front/images/delete.png'; ?>" /></a>
</td>
</tr>
<script type="text/javascript" >
$('.last-field').last().on('blur', function(){
$('.tasks-add').trigger('click');
});
</script><file_sep><tr class="rowP">
<td class="align-center">
<?php echo CHtml::activeDropDownList($model,"[$index]product_real_id",
Yii::app()->controller->getUserProducts(Yii::app()->user->id),
array('class'=>'product-name-stock')
); ?>
<?php echo CHtml::activeHiddenField($model, "[$index]product_name", array('class'=>'product-str-stock'))?>
</td>
<td class="i-column">
<?php echo CHtml::activeDropDownList($model, "[$index]product_measurement",
Yii::app()->controller->getMeasurementUnitsList(),
array('class'=>'product-measurement-stock')); ?>
</td>
<td class="l-column">
<?php echo CHtml::activeTextField($model, "[$index]product_quantity", array("size"=>10, "class"=>"quantity-field"))?>
</td>
<td class="m-column">
<?php echo CHtml::activeHiddenField($model, "[$index]invoice_id", array('value'=>1)); ?>
<?php echo CHtml::activeTextField($model, "[$index]product_price", array("class"=>"last-field align-center", "onblur" => "getSubTotal($(this)); invoicePTotal();","value"=>0,'readonly'=>true,"size"=>5))?>
</td>
<td class="m-column">
<!--<span id="<? echo $index; ?>_subtotal" class="provider_invoice_subtotal" >0</span>-->
<?php echo CHtml::activeTextField($model, "[$index]product_total",array('value'=>0,'class'=>'provider_invoice_subtotal align-center','readonly'=>true,'size'=>5))?>
</td>
<td class="align-center">
<a onclick="deleteRow($(this));" class="delete-row" ><img src="<?php echo Yii::app()->request->baseUrl.'/themes/front/images/delete.png'; ?>" /></a>
</td>
</tr>
<script type="text/javascript" >
$('.last-field').last().on('blur', function(){
$('.tasks-add').trigger('click');
});
$('.product-name-stock').last().on('change', function(){
elem = $(this);
$.ajax({
url:'/stockInvoices/findcode',
data: 'code='+$(this).val(),
success: function(result) {
objres = JSON.parse(result);
elem.parent().parent().find('.quantity-field').val(objres.product_quantity);
elem.parent().parent().find('.product-color-stock').val(objres.product_color);
elem.parent().parent().find('.product-str-stock').val(objres.product_name);
elem.parent().parent().find('.product-measurement-stock').val(objres.product_measurement);
elem.parent().parent().find('.last-field').val(objres.product_price);
getSubTotal(elem.parent().parent().find('.last-field'));
invoicePTotal();
$('.tasks-add').trigger('click');
},
error: function() {
alert('Ошибка!!');
},
});
});
</script>
<file_sep><?php
/* @var $this InvoicesController */
/* @var $dataProvider CActiveDataProvider */
?>
<a class="butlink" id="menu-icon" href="#"> Меню </a>
<div id="menu-popup">
<?php $this->widget('ext.zii.widgets.Menu',array(
'items'=>array(
array('label'=>'Главная', 'url'=>array('/site')),
array('label'=>'Чеки', 'url'=>array('/checksInvoices')),
array('label'=>'Клиенты', 'url'=>array('/clients')),
array('label'=>'Поставщики', 'url'=>array('/providers')),
array('label'=>'Продавцы', 'url'=>array('/users')),
array('label'=>'Накладные', 'url'=>array('/invoices')),
array('label'=>'Склад', 'url'=>array('/products')),
array('label'=>'Возвраты', 'url'=>array('/returns')),
array('label'=>'Отчет', 'url'=>array('/report')),
array('label'=>'Резервные копии', 'url'=>array('/jbackup')),
array('label'=>'Вход', 'url'=>array('/user/login'), 'visible'=>Yii::app()->user->isGuest),
array('label'=>'Выход ('.Yii::app()->user->name.')', 'url'=>array('/user/logout'), 'visible'=>!Yii::app()->user->isGuest),
),
'htmlOptions'=>array('class'=>'nav-popup'),
'lastItemCssClass'=>'pull-right',
)); ?>
</div>
<h2>Накладные</h2>
<div class="form" >
<div class="col-lg-6">
<div class="alert alert-info invoice-type">
<a href="/providersInvoices" ><strong>Накладные поставщикам</strong></a>
</div>
</div>
<div class="col-lg-6">
<div class="alert alert-info invoice-type">
<a href="/stockInvoices" ><strong>Накладные на внутреннее перемещение</strong></a>
</div>
</div>
<div class="clearfix" ></div>
</div>
<file_sep><?php
class ChecksInvoicesController extends Controller
{
/**
* @var string the default layout for the views. Defaults to '//layouts/column2', meaning
* using two-column layout. See 'protected/views/layouts/column2.php'.
*/
public $layout='//layouts/column1';
/**
* @return array action filters
*/
public function filters()
{
return array(
'accessControl', // perform access control for CRUD operations
'postOnly + delete', // we only allow deletion via POST request
);
}
/**
* Specifies the access control rules.
* This method is used by the 'accessControl' filter.
* @return array access control rules
*/
public function accessRules()
{
return array(
array('allow', // allow authenticated user to perform 'create' and 'update' actions
'actions'=>array('create','index','update','createLc'),
'users'=>array('@'),
),
array('allow', // allow admin user to perform 'admin' and 'delete' actions
'actions'=>array('delete'),
'users'=>array('admin'),
),
array('deny', // deny all users
'users'=>array('*'),
),
);
}
public function actionCreateLc()
{
$model=new ChecksInvoices;
$model->invoice_datetime = date('Y-m-d H:i:s');
if (isset($_POST['productsLines']))
$positions = json_decode($_POST['productsLines']);
if (isset($_POST['total']))
$model->invoice_summ = $_POST['total'];
if (isset($_POST['client']) && is_numeric($_POST['client']))
$model->invoice_client_id = $_POST['client'];
else
$model->invoice_client_id = 1;
$model->invoice_seller_id = Yii::app()->user->id;
if($model->save()){
foreach($positions as $position => $product_position) {
if(@$product = Products::model()->findByPk($product_position->id)) {
$product_model=new InvoicesProducts;
$product_model->attributes = $product;
$product_model->invoice_id = $model->invoice_id;
$product_base = Products::model()->findByPk($product->product_id);
$product_model->product_id = $product->product_id;
$product_model->product_name = $product_base->product_name;
$product_model->product_quantity = $product_position->quantity;
$product_model->product_color = $product_position->color;
$product_model->product_measurement = $product_position->measurement;
$product_model->product_roll = intval($product_position->roll);
//$product_model->product_quantity_details = 0;
$product_model->product_price = $product_position->price;
$product_model->product_total = $product_position->total;
if(!empty($product_model->product_id)){
$stockusers_criteria=new CDbCriteria;
$stockusers_criteria->condition='product_id=:product_id AND user_id=:user_id ';
$stockusers_criteria->params=array(
':product_id'=> $product_model->product_id,
':user_id'=> Yii::app()->user->id,
);
$stockusers_products = ProductsUsers::model()->find($stockusers_criteria);
if(!$stockusers_products || ($stockusers_products->product_quantity < $product_model->product_quantity) ){
return false;
}
$stockusers_products->saveCounters(array('product_quantity'=>-$product_model->product_quantity));
if($product_model->save()){
$product = Products::model()->findByPk($product_model->product_id);
$product->saveCounters(array('product_sales'=>1, 'product_quantity'=>-$product_model->product_quantity, 'product_roll'=>-$product_model->product_roll));
$seller_for_history = Users::model()->findByPk($model->invoice_seller_id);
$client_for_history = Clients::model()->findByPk($model->invoice_client_id);
$record = new History;
$record->record_datetime = date('Y-m-d H:i:s');
$record->record_group = 'product';
$record->record_item_id = $product_model->product_id;
$record->record_content = 'Продано ' . $product_model->product_quantity . ' Чек - ' . CHtml::link($model->invoice_id, array('/ChecksInvoices/update', 'id'=>$model->invoice_id));
$record->save();
}
else {
}
}
}
}
}
$data['tablo'] = 'Оформлен чек!';
Yii::app()->end(json_encode($data));
}
/**
* Creates a new model.
* If creation is successful, the browser will be redirected to the 'view' page.
*/
public function actionCreate()
{
$model=new ChecksInvoices;
$model->invoice_datetime = date('Y-m-d H:i:s');
if (isset($_GET['summ']))
$model->invoice_summ = $_GET['summ'];
if (isset($_GET['client']) && is_numeric($_GET['client']))
$model->invoice_client_id = $_GET['client'];
else
$model->invoice_client_id = 1;
$model->invoice_seller_id = Yii::app()->user->id;
if($model->save()){
$positions = Yii::app()->shoppingCart->getPositions();
foreach($positions as $position => $product_position) {
if(@$product = Products::model()->findByPk($product_position['product_id'])) {
$product_model=new InvoicesProducts;
$product_model->attributes = $product;
$product_model->invoice_id = $model->invoice_id;
$product_base = Products::model()->findByPk($product->product_id);
$product_model->product_id = $product->product_id;
$product_model->product_name = $product_base->product_name;
$product_model->product_quantity = $product_position->getQuantity();
$product_model->product_color = 0;
$product_model->product_measurement = 1;
$product_model->product_roll = intval($product_position->getRoll());
//$product_model->product_quantity_details = 0;
$product_model->product_price = $product_position->getPrice();
$product_model->product_total = $product_position->getPrice()*$product_position->getQuantity();
if(!empty($product_model->product_id)){
$stockusers_criteria=new CDbCriteria;
$stockusers_criteria->condition='product_id=:product_id AND user_id=:user_id ';
$stockusers_criteria->params=array(
':product_id'=> $product_model->product_id,
':user_id'=> Yii::app()->user->id,
);
$stockusers_products = ProductsUsers::model()->find($stockusers_criteria);
if(!$stockusers_products || ($stockusers_products->product_quantity < $product_model->product_quantity) ){
return false;
}
$stockusers_products->saveCounters(array('product_quantity'=>-$product_model->product_quantity));
if($product_model->save()){
$product = Products::model()->findByPk($product_model->product_id);
$product->saveCounters(array('product_sales'=>1, 'product_quantity'=>-$product_model->product_quantity, 'product_roll'=>-$product_model->product_roll));
$seller_for_history = Users::model()->findByPk($model->invoice_seller_id);
$client_for_history = Clients::model()->findByPk($model->invoice_client_id);
$record = new History;
$record->record_datetime = date('Y-m-d H:i:s');
$record->record_group = 'product';
$record->record_item_id = $product_model->product_id;
$record->record_content = 'Продано ' . $product_model->product_quantity . ' Чек - ' . CHtml::link($model->invoice_id, array('/ChecksInvoices/update', 'id'=>$model->invoice_id));
$record->save();
}
else {
}
}
}
}
}
$user = Yii::app()->getUser();
$StateKeyPrefix = $user->getStateKeyPrefix();
$CurrentCheck = Yii::app()->getUser()->getState('CurrentCheck', 1);
$count_checks = 0;
$array_checks = array();
foreach ($_SESSION as $key => $value) {
if(!(false===($pos=strpos($key,$StateKeyPrefix.'CartID')))) {
$count_checks ++;
$key_checks = substr($key,strlen($StateKeyPrefix)+6);
$array_checks[$count_checks] = $key_checks;
}
}
if (!isset($array_checks[$CurrentCheck])) $array_checks[$CurrentCheck] = 1;
$key = $StateKeyPrefix.'CartID'.$array_checks[$CurrentCheck];
if (isset($_SESSION[$key]))
unset($_SESSION[$key]);
Yii::app()->shoppingCart->clear();
if ($count_checks > 1)
$count_checks --;
$current = Yii::app()->getUser()->setState('CurrentCheck', 1);
$data['curr'] = $current.'/'.$count_checks;
$data['total'] = number_format(Yii::app()->shoppingCart->getCost(),2,'.',' ');
$output = '';
$data['check'] = $output;
$data['tablo'] = 'Оформлен чек!';
Yii::app()->end(json_encode($data));
/*
$this->redirect(array('index'));
$this->render('update',array(
'model'=>$model,
));
*/
}
/**
* Updates a particular model.
* If update is successful, the browser will be redirected to the 'view' page.
* @param integer $id the ID of the model to be updated
*/
public function actionUpdate($id)
{
$model=$this->loadModel($id);
$criteria=new CDbCriteria;
$criteria->condition='invoice_id=:invoice_id';
$criteria->params=array(':invoice_id'=>$id);
$products = InvoicesProducts::model()->findAll($criteria);
// Uncomment the following line if AJAX validation is needed
// $this->performAjaxValidation($model);
if(isset($_POST['ChecksInvoices']))
{
$model->attributes=$_POST['ChecksInvoices'];
if($model->save())
$this->redirect(array('index'));
}
$this->render('update',array(
'model'=>$model,
'products'=>$products,
));
}
/**
* Deletes a particular model.
* If deletion is successful, the browser will be redirected to the 'index' page.
* @param integer $id the ID of the model to be deleted
*/
public function actionDelete($id)
{
$criteria = new CDbCriteria;
$criteria->condition = 'invoice_id = :invoice_id';
$criteria->params=array(':invoice_id'=> $id,);
InvoicesProducts::model()->deleteAll($criteria);
$this->loadModel($id)->delete();
// if AJAX request (triggered by deletion via index grid view), we should not redirect the browser
if(!isset($_GET['ajax']))
$this->redirect(isset($_POST['returnUrl']) ? $_POST['returnUrl'] : array('index'));
}
/**
* Lists all models.
*/
public function actionIndex()
{
$model=new ChecksInvoices('search');
$model->unsetAttributes(); // clear any default values
$is_admin = (isset(Yii::app()->user->name) && Yii::app()->user->name == 'admin')?true:false;
if (!$is_admin)
$_GET['ChecksInvoices']['invoice_seller_id'] = Yii::app()->user->id;
if(isset($_GET['ChecksInvoices']))
$model->attributes=$_GET['ChecksInvoices'];
$this->render('admin',array(
'model'=>$model,
));
}
/**
* Returns the data model based on the primary key given in the GET variable.
* If the data model is not found, an HTTP exception will be raised.
* @param integer $id the ID of the model to be loaded
* @return ChecksInvoices the loaded model
* @throws CHttpException
*/
public function loadModel($id)
{
$model=ChecksInvoices::model()->findByPk($id);
if($model===null)
throw new CHttpException(404,'The requested page does not exist.');
return $model;
}
/**
* Performs the AJAX validation.
* @param ChecksInvoices $model the model to be validated
*/
protected function performAjaxValidation($model)
{
if(isset($_POST['ajax']) && $_POST['ajax']==='clients-invoices-form')
{
echo CActiveForm::validate($model);
Yii::app()->end();
}
}
}
<file_sep><?php
/* @var $this ExpectedProductsController */
/* @var $model ExpectedProducts */
$this->menu=array(
array('label'=>'List ExpectedProducts', 'url'=>array('index')),
array('label'=>'Create ExpectedProducts', 'url'=>array('create')),
);
?>
<h2>Manage Expected Products</h2>
<?php $this->widget('zii.widgets.grid.CGridView', array(
'id'=>'expected-products-grid',
'dataProvider'=>$model->search(),
'filter'=>$model,
'columns'=>array(
'product_id',
'invoice_id',
'product_name',
'product_color',
'product_measurement',
'product_quantity',
/*
'product_price',
*/
array(
'class'=>'CButtonColumn',
),
),
)); ?>
<file_sep><?php
/**
* Controller is the customized base controller class.
* All controller classes for this application should extend from this base class.
*/
class Controller extends CController
{
function __construct($id,$module=null)
{
parent :: __construct($id,$module);
//$this->getClients();
//$this->getProviders();
}
/**
* @var string the default layout for the controller view. Defaults to '//layouts/column1',
* meaning using a single column layout. See 'protected/views/layouts/column1.php'.
*/
public $layout='//layouts/column1';
/**
* @var array context menu items. This property will be assigned to {@link CMenu::items}.
*/
public $menu=array();
/**
* @var array the breadcrumbs of the current page. The value of this property will
* be assigned to {@link CBreadcrumbs::links}. Please refer to {@link CBreadcrumbs::links}
* for more details on how to specify this property.
*/
public $breadcrumbs=array();
public $invoices_array=array(
1=>'Накладная поставщику',
2=>'Накладная клиенту',
);
public $client_categories_array=array(
0=>'Нет категории',
1=>'Категория клиента 1',
2=>'Категория клиента 2',
);
public $provider_categories_array=array(
0=>'Нет категории',
1=>'Категория поставщика 1',
2=>'Категория поставщика 2',
);
public $invoices_conditions = array(
0=>'Новая',
//1=>'В работе',
2=>'Обработана',
);
public $product_status = array(
0=>'Не доступен',
1=>'Доступен',
);
public $return_status = array(
0=>'Новый',
1=>'Обработан',
);
public $clients = array();
public $providers = array();
public function getMeasurementUnitsList()
{
$measurementUnitsList = CHtml::listData(
MeasurementUnits::model()->findAll(array(
'select'=>array('unit_id','unit_name'))
),
"unit_id",
"unit_name"
);
return $measurementUnitsList;
}
public function getColorsList()
{
$colorsList = CHtml::listData(
Colors::model()->findAll(array(
'select'=>array('color_id','color_name'))
),
"color_id",
"color_name"
);
return $colorsList;
}
public function getProviders(){
$providers = Providers::model()->resetScope()->findAll();
$providersList = CHtml::listData($providers,'provider_id','provider_name');
$this->providers = $providersList;
return $providersList;
}
public function getSellers(){
Yii::app()->getModule('user')->defaultScope = array();
$sellers = User::model()->resetScope()->sellers()->findAll();
$sellersList = CHtml::listData($sellers,'id','username');
return $sellersList;
}
public function getClients(){
$clients = Clients::model()->resetScope()->findAll();
$clientsList = CHtml::listData($clients,'client_id','client_name');
$this->clients = $clientsList;
return $clientsList;
}
public function extraCosts(){
$extras = ExtraCosts::model()->resetScope()->findAll();
$extrasList = CHtml::listData($extras,'extra_id','extra_price','extra_name');
return $extrasList;
}
public function getAvaliableProducts(){
$products = Products::model()->resetScope()->avaliable()->with('productColor', 'productMeasurement')->findAll(/*array("limit" => 3,)*/);
$productsList = array();
foreach($products as $product){
$productsList[$product->product_id] = $product->product_name.' - '.$product->productColor->color_name.' - '.$product->productMeasurement->unit_name;
//$product->product_color = $product->productColor->color_name;
//$product->product_measurement = $product->productMeasurement->unit_name;
//$productsList[$product->product_id] = $product->product_name;
}
//var_dump(CHtml::listData($products,'product_id', 'product_color', 'product_name'));
return $productsList;
}
public function getCategoryName($id){
$category = Categories::model()->findByPk($id);
return $category['category_name'];
}
public function getCategories(){
$categories = Categories::model()->findALL();
$categoriesList = CHtml::listData($categories,'category_id','category_name','category_parent_id');
return $categoriesList;
}
public function getCategoriesList()
{
$categoriesList = CHtml::listData(
Categories::model()->findAll(array(
'select'=>array('category_id','category_name'))
),
'category_id',
'category_name'
);
return $categoriesList;
}
}<file_sep><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="language" content="en" />
<link rel="stylesheet" type="text/css" href="<?php echo Yii::app()->request->baseUrl; ?>/themes/front/css/bootstrap.css" media="all" />
<link rel="stylesheet" type="text/css" href="<?php echo Yii::app()->request->baseUrl; ?>/themes/front/css/bootstrap-cerulean.min.css" media="all" />
<link rel="stylesheet" type="text/css" href="<?php echo Yii::app()->request->baseUrl; ?>/themes/front/css/main.css" media="all" />
<script type="text/javascript" src="<?php echo Yii::app()->request->baseUrl; ?>/themes/front/js/jquery.js" ></script>
<script type="text/javascript" src="<?php echo Yii::app()->request->baseUrl; ?>/themes/front/js/bootstrap.min.js" ></script>
<script type="text/javascript" src="<?php echo Yii::app()->request->baseUrl; ?>/themes/front/js/scripts.js" ></script>
<title><?php echo CHtml::encode($this->pageTitle); ?></title>
</head>
<body>
<?php
$this->pageTitle=Yii::app()->name . ' - '.UserModule::t("Login");
$this->breadcrumbs=array(
UserModule::t("Login"),
);
?>
<?php if(Yii::app()->user->hasFlash('loginMessage')): ?>
<div class="success">
<?php echo Yii::app()->user->getFlash('loginMessage'); ?>
</div>
<?php endif; ?>
<div id="login-form1">
<?php echo CHtml::beginForm(); ?>
<div class="panel panel-primary">
<div class="panel-heading">
<h3 class="panel-title">Авторизация</h3>
</div>
<div class="panel-body">
<?php echo CHtml::errorSummary($model); ?>
<div class="row">
<div class="col-md-12">
<?php echo CHtml::activeLabelEx($model,'username'); ?><br />
<?php echo CHtml::activeTextField($model,'username', array('class'=>'form-control')) ?>
</div>
</div><br />
<div class="row">
<div class="col-md-12">
<?php echo CHtml::activeLabelEx($model,'password'); ?><br />
<?php echo CHtml::activePasswordField($model,'password', array('class'=>'form-control')) ?>
</div>
</div><br />
<!--<div class="row">
<div class="col-md-12">
<p class="hint">
<?php echo CHtml::link(UserModule::t("Register"),Yii::app()->getModule('user')->registrationUrl); ?> | <?php echo CHtml::link(UserModule::t("Lost Password?"),Yii::app()->getModule('user')->recoveryUrl); ?>
</p>
</div>
</div><br />-->
<!--<div class="row rememberMe">
<div class="col-md-12">
<?php echo CHtml::activeCheckBox($model,'rememberMe'); ?>
<?php echo CHtml::activeLabelEx($model,'rememberMe'); ?>
</div>
</div><br />-->
<div class="row submit">
<div class="col-md-12">
<?php echo CHtml::submitButton(UserModule::t("Войти"), array('class'=>'btn btn-primary btn-sm col-md-12')); ?>
</div>
</div>
</div>
</div>
<?php echo CHtml::endForm(); ?>
</div>
<?php
$form = new CForm(array(
'elements'=>array(
'username'=>array(
'type'=>'text',
'maxlength'=>32,
),
'password'=>array(
'type'=>'<PASSWORD>',
'maxlength'=>32,
),
'rememberMe'=>array(
'type'=>'checkbox',
)
),
'buttons'=>array(
'login'=>array(
'type'=>'submit',
'label'=>'Login',
),
),
), $model);
?>
</body>
</html><file_sep><?php
/* @var $this ClientsInvoicesController */
/* @var $model ClientsInvoices */
if($model->isNewRecord){
$this->menu=array(
array('label'=>'Список накладных', 'url'=>array('index')),
);
} else{
$this->menu=array(
array('label'=>'Список накладных', 'url'=>array('index')),
array('label'=>'Добавить накладную', 'url'=>array('create')),
);
}
?>
<?php if($model->isNewRecord){ ?>
<h2>Добавить накладную</h2>
<?php } else { ?>
<h2>Изменить накладную - «<?php echo $model->invoice_id; ?>»</h2>
<?php } ?>
<div class="form">
<?php $form=$this->beginWidget('CActiveForm', array(
'id'=>'clients-invoices-form',
'enableAjaxValidation'=>false,
)); ?>
<?php echo $form->errorSummary($model); ?>
<table class="table table-bordered table-striped table-hover" >
<tr>
<td class="m-column"><?php echo $form->labelEx($model,'invoice_code'); ?></td>
<td class="l-column"><?php echo $form->labelEx($model,'invoice_datetime'); ?></td>
<td class="l-column"><?php echo $form->labelEx($model,'invoice_seller_id'); ?></td>
<td><?php echo $form->labelEx($model,'invoice_client_id'); ?></td>
<td class="m-column"><?php echo $form->labelEx($model,'invoice_summ'); ?></td>
<td class="l-column"><?php echo $form->labelEx($model,'invoice_manager_comment'); ?></td>
<td class="m-column"><?php echo $form->labelEx($model,'invoice_status'); ?></td>
</tr>
<tr>
<td class="m-column"><?php echo $form->textField($model,'invoice_code', array('size'=>8)); ?></td>
<td class="l-column"><?php echo $form->textField($model,'invoice_datetime', array('class'=>'datepicker')); ?></td>
<td class="l-column"><?php echo $form->dropDownList($model,'invoice_seller_id',Yii::app()->controller->getSellers()); ?></td>
<td><?php echo $form->hiddenField($model,'invoice_client_id'); ?>
<?php echo CHtml::link($model->invoiceClient->client_name,array('clients/update/', 'id'=>$model->invoice_client_id)); ?></td>
<td class="m-column"><?php echo $form->textField($model,'invoice_summ',array('size'=>8,'maxlength'=>15)); ?></td>
<td class="l-column"><?php echo $form->textField($model,'invoice_manager_comment'); ?></td>
<td class="m-column"><?php echo $form->dropDownList($model,'invoice_status',Yii::app()->controller->invoices_conditions); ?></td>
</tr>
</table>
<?php echo CHtml::submitButton($model->isNewRecord ? 'Создать' : 'Обновить', array('class'=>'btn btn-primary btn-sm')); ?>
<?php $this->endWidget(); ?>
</div>
<?php if(!$model->isNewRecord){ ?>
<h3>Товары</h3>
<?php $total = 0.00; ?>
<div class="m-form" >
<table class="table table-bordered table-striped table-hover" >
<tr>
<td><b>Наименование</</td>
<td class="l-column"><b>Количество</b></td>
<td class="l-column"><b>Рулоны</b></td>
<td class="i-column"><b>Цвет</b></td>
<td class="m-column"><b>Мера</b></td>
<td class="m-column"><b>Цена</b></td>
<td class="m-column"><b>Всего</b></td>
<td class="i-column"></td>
</tr>
<?php foreach($products as $product){ ?>
<?php $total += $product->product_price; ?>
<tr>
<td><?php echo CHtml::link($product->product_name, array('invoicesProducts/update', 'id'=>$product->id)); ?></td>
<td class="l-column"><?php echo $product->product_quantity; ?></td>
<td class="l-column"><?php echo $product->product_roll; ?> (<?php echo $product->product_quantity_details; ?>)</td>
<td class="i-column"><?php echo $product->productColor->color_name; ?></td>
<td class="m-column"><?php echo $product->productMeasurement->unit_name; ?></td>
<td class="m-column"><?php echo $product->product_price; ?></td>
<td class="m-column"><?php echo $product->product_total; ?></td>
<td class="i-column">
<?php if($product->return_status == 0){ ?>
<?php echo CHtml::link('Оформить возврат', array('returns/return', 'id'=>$product->id), array('class'=>'pull-right btn btn-warning btn-sm return-button')); ?>
<?php } else{ ?>
<span class="label label-danger return-label">Возвращен</span>
<?php } ?>
</td>
</tr>
<?php } ?>
</table>
</div>
<?php } ?>
<file_sep><?php
class ReturnsController extends Controller
{
/**
* @var string the default layout for the views. Defaults to '//layouts/column2', meaning
* using two-column layout. See 'protected/views/layouts/column2.php'.
*/
public $layout='//layouts/column1';
/**
* @return array action filters
*/
public function filters()
{
return array(
'accessControl', // perform access control for CRUD operations
'postOnly + delete', // we only allow deletion via POST request
);
}
/**
* Specifies the access control rules.
* This method is used by the 'accessControl' filter.
* @return array access control rules
*/
public function accessRules()
{
return array(
array('allow', // allow authenticated user to perform 'create' and 'update' actions
'actions'=>array('index','create','update','return'),
'users'=>array('@'),
),
array('allow', // allow admin user to perform 'admin' and 'delete' actions
'actions'=>array('index','delete','return'),
'users'=>array('admin'),
),
array('deny', // deny all users
'users'=>array('*'),
),
);
}
/**
* Creates a new model.
* If creation is successful, the browser will be redirected to the 'view' page.
*/
public function actionCreate()
{
$model=new Returns;
// Uncomment the following line if AJAX validation is needed
// $this->performAjaxValidation($model);
if(isset($_POST['Returns']))
{
$model->attributes=$_POST['Returns'];
if($model->save())
$this->redirect(array('index'));
}
$this->render('update',array(
'model'=>$model,
));
}
/**
* Updates a particular model.
* If update is successful, the browser will be redirected to the 'view' page.
* @param integer $id the ID of the model to be updated
*/
public function actionUpdate($id)
{
$model=$this->loadModel($id);
// Uncomment the following line if AJAX validation is needed
// $this->performAjaxValidation($model);
if(isset($_POST['Returns']))
{
$model->attributes=$_POST['Returns'];
if($model->return_status == 1){
//InvoicesProducts::model()->deleteByPk($model->invoice_row);
$invoice_product = InvoicesProducts::model()->findByPk($model->invoice_row);
//$invoice_product->updateCounters(array('return_status'=>1));
$invoice_product->return_status = 1;
$invoice_product->save();
$product = Products::model()->findByPk($model->product_id);
$product->saveCounters(array('product_sales'=>-1, 'product_quantity'=>$model->product_quantity, 'product_roll'=>$model->product_roll));
$invoice = ChecksInvoices::model()->findByPk($model->invoice_id);
$invoice->saveCounters(array('invoice_summ'=>-$model->product_total));
$stockusers_criteria=new CDbCriteria;
$stockusers_criteria->condition='product_id=:product_id AND user_id=:user_id ';
$stockusers_criteria->params=array(
':product_id'=> $model->product_id,
':user_id'=> $invoice->invoice_seller_id,
);
$stockusers_products = ProductsUsers::model()->find($stockusers_criteria);
$stockusers_products->saveCounters(array('product_quantity'=>$model->product_quantity));
$record = new History;
$record->record_datetime = date('Y-m-d H:i:s');
$record->record_group = 'product';
$record->record_item_id = $model->product_id;
$record->record_content = 'Возврат ' . $model->product_quantity . '. Чек - ' . CHtml::link($model->invoice_id, array('/ChecksInvoices/update', 'id'=>$model->invoice_id));
$record->save();
}
if($model->save())
$this->redirect(array('index'));
}
$this->render('update',array(
'model'=>$model,
));
}
/**
* Deletes a particular model.
* If deletion is successful, the browser will be redirected to the 'admin' page.
* @param integer $id the ID of the model to be deleted
*/
public function actionDelete($id)
{
$this->loadModel($id)->delete();
// if AJAX request (triggered by deletion via admin grid view), we should not redirect the browser
if(!isset($_GET['ajax']))
$this->redirect(isset($_POST['returnUrl']) ? $_POST['returnUrl'] : array('index'));
}
/**
* Lists all models.
*/
public function actionIndex()
{
$model=new Returns('search');
$model->unsetAttributes(); // clear any default values
if(isset($_GET['Returns']))
$model->attributes=$_GET['Returns'];
$this->render('admin',array(
'model'=>$model,
));
}
public function actionReturn($id){
$invoice_product = InvoicesProducts::model()->findByPk($id);
$model = new Returns;
$model->attributes = $invoice_product->attributes;
$model->return_datetime = date('Y-m-d H:i:s');
$model->return_status = 0;
$model->invoice_row = $id;
$client = ChecksInvoices::model()->findByPk($model->invoice_id);
$model->client_id = $client->invoice_client_id;
if($model->save())
$this->redirect(array('update','id'=>$model->return_id));
//$this->redirect(array('index'));
}
/**
* Returns the data model based on the primary key given in the GET variable.
* If the data model is not found, an HTTP exception will be raised.
* @param integer $id the ID of the model to be loaded
* @return Returns the loaded model
* @throws CHttpException
*/
public function loadModel($id)
{
$model=Returns::model()->findByPk($id);
if($model===null)
throw new CHttpException(404,'The requested page does not exist.');
return $model;
}
/**
* Performs the AJAX validation.
* @param Returns $model the model to be validated
*/
protected function performAjaxValidation($model)
{
if(isset($_POST['ajax']) && $_POST['ajax']==='returns-form')
{
echo CActiveForm::validate($model);
Yii::app()->end();
}
}
}
<file_sep><?php
/* @var $this ReportsController */
/* @var $dataProvider CActiveDataProvider */
$this->breadcrumbs=array(
'Products',
);
$this->menu=array(
array('label'=>'Create Products', 'url'=>array('create')),
array('label'=>'Manage Products', 'url'=>array('admin')),
);
?>
<h1>Products</h1>
<!--<?php $this->widget('zii.widgets.CListView', array(
'dataProvider'=>$dataProvider,
'itemView'=>'_view',
)); ?>-->
<div class="form" >
<div class="col-lg-6">
<div class="alert alert-info invoice-type">
<a onclick="clientsDialogOpen();" ><strong><?php echo CHtml::link('Report Invoices',array('reports/reportInvoices')); ?></strong></a>
</div>
</div>
<div class="col-lg-6">
<div class="alert alert-info invoice-type">
<a onclick="providersDialogOpen();" ><strong>По поставщику</strong></a>
</div>
</div>
<div class="col-lg-6">
<div class="alert alert-info invoice-type">
<a onclick="sellersDialogOpen();" ><strong>По продавцу</strong></a>
</div>
</div>
<div class="col-lg-6">
<div class="alert alert-info invoice-type">
<a onclick="datesDialogOpen();" ><strong>По времени (приходным накладным)</strong></a>
</div>
</div>
<file_sep><?php
/* @var $this ProductsUsersController */
/* @var $model ProductsUsers */
$this->breadcrumbs=array(
'Products Users'=>array('index'),
$model->id_stock_products_users,
);
$this->menu=array(
array('label'=>'List ProductsUsers', 'url'=>array('index')),
array('label'=>'Create ProductsUsers', 'url'=>array('create')),
array('label'=>'Update ProductsUsers', 'url'=>array('update', 'id'=>$model->id_stock_products_users)),
array('label'=>'Delete ProductsUsers', 'url'=>'#', 'linkOptions'=>array('submit'=>array('delete','id'=>$model->id_stock_products_users),'confirm'=>'Are you sure you want to delete this item?')),
array('label'=>'Manage ProductsUsers', 'url'=>array('admin')),
);
?>
<h1>View ProductsUsers #<?php echo $model->id_stock_products_users; ?></h1>
<?php $this->widget('zii.widgets.CDetailView', array(
'data'=>$model,
'attributes'=>array(
'id_stock_products_users',
'product_id',
'user_id',
'product_quantity',
),
)); ?>
<file_sep><a class="butlink" id="menu-icon" href="#"> Меню </a>
<div id="menu-popup">
<?php $this->widget('ext.zii.widgets.Menu',array(
'items'=>array(
array('label'=>'Главная', 'url'=>array('/site')),
array('label'=>'Чеки', 'url'=>array('/checksInvoices')),
array('label'=>'Клиенты', 'url'=>array('/clients')),
array('label'=>'Поставщики', 'url'=>array('/providers')),
array('label'=>'Продавцы', 'url'=>array('/users')),
array('label'=>'Накладные', 'url'=>array('/invoices')),
array('label'=>'Склад', 'url'=>array('/products')),
array('label'=>'Возвраты', 'url'=>array('/returns')),
array('label'=>'Отчет', 'url'=>array('/reports')),
array('label'=>'Резервные копии', 'url'=>array('/jbackup')),
array('label'=>'Вход', 'url'=>array('/user/login'), 'visible'=>Yii::app()->user->isGuest),
array('label'=>'Выход ('.Yii::app()->user->name.')', 'url'=>array('/user/logout'), 'visible'=>!Yii::app()->user->isGuest),
),
'htmlOptions'=>array('class'=>'nav-popup'),
'lastItemCssClass'=>'pull-right',
)); ?>
</div>
<h2>Продажи</h3
<div class="grid-view">
<table class="table table-bordered table-striped table-hover">
<thead>
<tr>
<th class="s-column active" id="clients-invoices-grid_c1">
<a>Название товара</a></th>
<th class="m-column active" id="clients-invoices-grid_c3">
<a class="sort-link" >Кол-во</a></th>
<th class="m-column active" id="clients-invoices-grid_c5">
<a class="sort-link">Всего</a></th>
</tr>
</thead>
<tbody>
<?
foreach($model as $m) {
echo '<tr class="success1"><td class="s-column">'.$m['product_name'].'</td><td class="m-column">'.$m['product_q'].'</td><td class="m-column">'.$m['product_t'].'</td></tr>';
}
?>
</tr>
</tbody>
</table>
</div>
<file_sep><?php
/**
* This is the model class for table "{{clients_invoices}}".
*
* The followings are the available columns in table '{{clients_invoices}}':
* @property integer $invoice_id
* @property string $invoice_datetime
* @property string $code
* @property integer $invoice_seller_id
* @property integer $invoice_client_id
* @property string $invoice_summ
* @property string $invoice_manager_comment
* @property integer $invoice_status
*
* The followings are the available model relations:
* @property Users $invoiceSeller
* @property Clients $invoiceClient
*/
class ChecksInvoices extends CActiveRecord
{
public $sellerName;
public $clientName;
/**
* @return string the associated database table name
*/
public function tableName()
{
return '{{checks_invoices}}';
}
/**
* @return array validation rules for model attributes.
*/
public function rules()
{
// NOTE: you should only define rules for those attributes that
// will receive user inputs.
return array(
array('invoice_datetime', 'required'),
array('invoice_seller_id, invoice_client_id, invoice_status', 'numerical', 'integerOnly'=>true),
array('invoice_summ', 'length', 'max'=>15),
// The following rule is used by search().
// @todo Please remove those attributes that should not be searched.
array('sellerName, clientName, invoice_id, invoice_code, invoice_datetime, invoice_seller_id, invoice_client_id, invoice_summ, invoice_manager_comment, invoice_status', 'safe', 'on'=>'search'),
);
}
/**
* @return array relational rules.
*/
public function relations()
{
// NOTE: you may need to adjust the relation name and the related
// class name for the relations automatically generated below.
return array(
'invoiceSeller' => array(self::BELONGS_TO, 'Users', 'invoice_seller_id'),
'invoiceClient' => array(self::BELONGS_TO, 'Clients', 'invoice_client_id'),
);
}
/**
* @return array customized attribute labels (name=>label)
*/
public function attributeLabels()
{
return array(
'invoice_id' => 'ID',
'invoice_code' => 'Код',
'invoice_datetime' => 'Дата составления',
'invoice_seller_id' => 'Продавец',
'invoice_client_id' => 'Клиент',
'invoice_summ' => 'Сумма',
'invoice_manager_comment' => 'Комментарии',
'invoice_status' => 'Статус',
);
}
/**
* Retrieves a list of models based on the current search/filter conditions.
*
* Typical usecase:
* - Initialize the model fields with values from filter form.
* - Execute this method to get CActiveDataProvider instance which will filter
* models according to data in model fields.
* - Pass data provider to CGridView, CListView or any similar widget.
*
* @return CActiveDataProvider the data provider that can return the models
* based on the search/filter conditions.
*/
public function search()
{
// @todo Please modify the following code to remove attributes that should not be searched.
$criteria=new CDbCriteria;
$criteria->compare('invoice_id',$this->invoice_id);
$criteria->compare('invoice_code',$this->invoice_code,true);
$criteria->compare('invoice_datetime',$this->invoice_datetime,true);
$criteria->with = array('invoiceSeller', 'invoiceClient',);
$criteria->addSearchCondition('invoiceSeller.username', $this->sellerName);
$criteria->addSearchCondition('invoiceClient.client_name', $this->clientName);
$criteria->compare('invoice_seller_id',$this->invoice_seller_id,true);
//$criteria->compare('invoice_client_id',$this->invoiceClient->client_name,true);
$criteria->compare('invoice_summ',$this->invoice_summ,true);
$criteria->compare('invoice_manager_comment',$this->invoice_manager_comment,true);
$criteria->compare('invoice_status',$this->invoice_status);
return new CActiveDataProvider($this, array(
'criteria'=>$criteria,
'sort'=>array(
'defaultOrder'=>'invoice_datetime DESC',
)
));
}
public function searchtoday()
{
$is_admin = (isset(Yii::app()->user->name) && Yii::app()->user->name == 'admin')?true:false;
// @todo Please modify the following code to remove attributes that should not be searched.
$criteria=new CDbCriteria;
if(!$is_admin){
$criteria->addCondition('invoice_seller_id = "'.Yii::app()->user->id.'" ',true);
}
$criteria->addCondition('invoice_datetime > "'.date("Y-m-d H:i:s", mktime(0,0,0)).'" ');
$criteria->compare('invoice_datetime',$this->invoice_datetime,true);
$criteria->compare('invoice_id',$this->invoice_id);
$criteria->compare('invoice_code',$this->invoice_code,true);
$criteria->with = array('invoiceSeller', 'invoiceClient',);
$criteria->addSearchCondition('invoiceSeller.username', $this->sellerName);
$criteria->addSearchCondition('invoiceClient.client_name', $this->clientName);
//$criteria->compare('invoice_datetime',date("Y-m-d H:i:s", time() - 3600 * 8),true);
$criteria->compare('invoice_summ',$this->invoice_summ,true);
$criteria->compare('invoice_manager_comment',$this->invoice_manager_comment,true);
$criteria->compare('invoice_status',$this->invoice_status);
return new CActiveDataProvider($this, array(
'criteria'=>$criteria,
'sort'=>array(
'defaultOrder'=>'invoice_datetime DESC',
)
));
}
public function getTotals($ids)
{
$ids = implode(",",$ids);
$date = date('Y-m-d H:i:s', mktime(0,0,0));
$user = Yii::app()->user->id;
$is_admin = (isset(Yii::app()->user->name) && Yii::app()->user->name == 'admin')?true:false;
$connection=Yii::app()->db;
if (!$is_admin){
$command=$connection->createCommand("SELECT SUM(invoice_summ) FROM `stock_checks_invoices` where invoice_id in ($ids) and invoice_datetime > '$date' and invoice_seller_id = $user");
}else{
$command=$connection->createCommand("SELECT SUM(invoice_summ) FROM `stock_checks_invoices` where invoice_id in ($ids) and invoice_datetime > '$date'");
}
return '<h4 class="h4"> Продано на: '.'<strong style="font-size: x-large">'.$amount = $command->queryScalar().'</strong> грн</h4>';
}
/**
* Returns the static model of the specified AR class.
* Please note that you should have this exact method in all your CActiveRecord descendants!
* @param string $className active record class name.
* @return ChecksInvoices the static model class
*/
public static function model($className=__CLASS__)
{
return parent::model($className);
}
}
<file_sep><?php
/* @var $this ExpectedProductsController */
/* @var $model ExpectedProducts */
$this->menu=array(
array('label'=>'List ExpectedProducts', 'url'=>array('index')),
array('label'=>'Create ExpectedProducts', 'url'=>array('create')),
);
?>
<a class="butlink" id="menu-icon" href="#"> Меню </a>
<div id="menu-popup">
<?php $this->widget('ext.zii.widgets.Menu',array(
'items'=>array(
array('label'=>'Главная', 'url'=>array('/site')),
array('label'=>'Чеки', 'url'=>array('/checksInvoices')),
array('label'=>'Клиенты', 'url'=>array('/clients')),
array('label'=>'Поставщики', 'url'=>array('/providers')),
array('label'=>'Продавцы', 'url'=>array('/users')),
array('label'=>'Накладные', 'url'=>array('/invoices')),
array('label'=>'Склад', 'url'=>array('/products')),
array('label'=>'Возвраты', 'url'=>array('/returns')),
array('label'=>'Отчет', 'url'=>array('/report')),
array('label'=>'Резервные копии', 'url'=>array('/jbackup')),
array('label'=>'Вход', 'url'=>array('/user/login'), 'visible'=>Yii::app()->user->isGuest),
array('label'=>'Выход ('.Yii::app()->user->name.')', 'url'=>array('/user/logout'), 'visible'=>!Yii::app()->user->isGuest),
),
'htmlOptions'=>array('class'=>'nav-popup'),
'lastItemCssClass'=>'pull-right',
)); ?>
</div>
<h2>Manage Expected Products</h2>
<?php $this->widget('zii.widgets.grid.CGridView', array(
'id'=>'expected-products-grid',
'dataProvider'=>$model->search(),
'filter'=>$model,
'columns'=>array(
'product_id',
'invoice_id',
'product_name',
'product_color',
'product_measurement',
'product_quantity',
/*
'product_price',
*/
array(
'class'=>'CButtonColumn',
),
),
)); ?>
<file_sep><?php
/* @var $this ExpectedProductsController */
/* @var $model ExpectedProducts */
?>
<?php if($model->isNewRecord){ ?>
<h2>Добавить товар</h2>
<?php } else{ ?>
<h2>Изменить товар - «<?php echo $model->product_name; ?>»</h2>
<?php } ?>
<div class="form">
<?php $form=$this->beginWidget('CActiveForm', array(
'id'=>'expected-products-form',
'enableAjaxValidation'=>false,
)); ?>
<?php echo $form->errorSummary($model); ?>
<table class="table table-bordered table-striped table-hover" >
<tr>
<td class="m-column"><?php echo $form->labelEx($model,'invoice_id'); ?></td>
<td><?php echo $form->labelEx($model,'product_name'); ?></td>
<td class="i-column"><?php echo $form->labelEx($model,'product_color'); ?></td>
<td class="m-column"><?php echo $form->labelEx($model,'product_measurement'); ?></td>
<td class="m-column"><?php echo $form->labelEx($model,'product_quantity'); ?></td>
<td class="m-column"><?php echo $form->labelEx($model,'product_roll'); ?></td>
<td class="m-column"><?php echo $form->labelEx($model,'product_price'); ?></td>
</tr>
<tr>
<td class="m-column"><?php echo $form->textField($model,'invoice_id',array('class'=>'nulled-input','readonly'=>true)); ?></td>
<td><?php echo $form->textField($model,'product_name',array('size'=>60,'maxlength'=>255)); ?></td>
<td class="i-column"><?php echo $form->dropDownList($model,'product_color',Yii::app()->controller->getColorsList()); ?></td>
<td class="m-column"><?php echo $form->dropDownList($model,'product_measurement', Yii::app()->controller->getMeasurementUnitsList()); ?></td>
<td class="m-column"><?php echo $form->textField($model,'product_quantity',array('size'=>15,'maxlength'=>15)); ?></td>
<td class="m-column"><?php echo $form->textField($model,'product_roll',array('size'=>15,'maxlength'=>15)); ?></td>
<td class="m-column"><?php echo $form->textField($model,'product_price',array('size'=>15,'maxlength'=>15)); ?></td>
</tr>
</table>
<?php echo CHtml::submitButton($model->isNewRecord ? 'Создать' : 'Обновить', array('class'=>'btn btn-primary btn-sm')); ?>
<?php $this->endWidget(); ?>
</div><file_sep><?php
/**
* This is the model class for table "{{returns}}".
*
* The followings are the available columns in table '{{returns}}':
* @property integer $return_id
* @property string $return_datetime
* @property integer $invoice_id
* @property integer $client_id
* @property integer $product_id
* @property string $product_name
* @property integer $product_color
* @property integer $product_measurement
* @property string $product_quantity
* @property integer $product_roll
* @property string $product_price
* @property string $product_total
* @property integer $return_status
*
* The followings are the available model relations:
* @property Clients $client
* @property ClientsInvoices $invoice
* @property Products $product
* @property Colors $productColor
* @property MeasurementUnits $productMeasurement
*/
class Returns extends CActiveRecord
{
/**
* @return string the associated database table name
*/
public function tableName()
{
return '{{returns}}';
}
/**
* @return array validation rules for model attributes.
*/
public function rules()
{
// NOTE: you should only define rules for those attributes that
// will receive user inputs.
return array(
array('return_datetime, invoice_id, client_id, product_id, product_name, product_color, product_measurement, product_quantity, product_roll, product_price, product_total, return_status', 'required'),
array('invoice_id, client_id, product_id, product_color, product_measurement, product_roll, return_status', 'numerical', 'integerOnly'=>true),
array('product_name', 'length', 'max'=>255),
array('product_quantity, product_price, product_total', 'length', 'max'=>15),
// The following rule is used by search().
// @todo Please remove those attributes that should not be searched.
array('return_id, return_datetime, invoice_id, client_id, product_id, product_name, product_color, product_measurement, product_quantity, product_roll, product_price, product_total, return_status', 'safe', 'on'=>'search'),
);
}
/**
* @return array relational rules.
*/
public function relations()
{
// NOTE: you may need to adjust the relation name and the related
// class name for the relations automatically generated below.
return array(
'invoice' => array(self::BELONGS_TO, 'ClientsInvoices', 'invoice_id'),
'product' => array(self::BELONGS_TO, 'Products', 'product_id'),
'client' => array(self::BELONGS_TO, 'Clients', 'client_id'),
'productColor' => array(self::BELONGS_TO, 'Colors', 'product_color'),
'productMeasurement' => array(self::BELONGS_TO, 'MeasurementUnits', 'product_measurement'),
);
}
/**
* @return array customized attribute labels (name=>label)
*/
public function attributeLabels()
{
return array(
'return_id' => 'ID',
'return_datetime' => 'Дата',
'invoice_id' => 'Накладная',
'invoice_row' => 'Линия',
'client_id' => 'Клиент',
'product_id' => 'Товар',
'product_name' => 'Название товара',
'product_color' => 'Цвет',
'product_measurement' => 'Мера',
'product_quantity' => 'Количество',
'product_roll' => 'Рулоны',
'product_price' => 'Цена',
'product_total' => 'Цена итог.',
'return_status' => 'Статус',
);
}
/**
* Retrieves a list of models based on the current search/filter conditions.
*
* Typical usecase:
* - Initialize the model fields with values from filter form.
* - Execute this method to get CActiveDataProvider instance which will filter
* models according to data in model fields.
* - Pass data provider to CGridView, CListView or any similar widget.
*
* @return CActiveDataProvider the data provider that can return the models
* based on the search/filter conditions.
*/
public function search()
{
// @todo Please modify the following code to remove attributes that should not be searched.
$criteria=new CDbCriteria;
$criteria->compare('return_id',$this->return_id);
$criteria->compare('return_datetime',$this->return_datetime,true);
$criteria->compare('invoice_id',$this->invoice_id);
$criteria->compare('invoice_row',$this->invoice_row);
//$criteria->compare('client_id',$this->client->client_name);
$criteria->compare('product_id',$this->product_id);
$criteria->compare('product_name',$this->product_name,true);
$criteria->compare('product_color',$this->product_color);
$criteria->compare('product_measurement',$this->product_measurement);
$criteria->compare('product_quantity',$this->product_quantity,true);
$criteria->compare('product_roll',$this->product_roll);
$criteria->compare('product_price',$this->product_price,true);
$criteria->compare('product_total',$this->product_total,true);
$criteria->compare('return_status',$this->return_status);
return new CActiveDataProvider($this, array(
'criteria'=>$criteria,
));
}
/**
* Returns the static model of the specified AR class.
* Please note that you should have this exact method in all your CActiveRecord descendants!
* @param string $className active record class name.
* @return Returns the static model class
*/
public static function model($className=__CLASS__)
{
return parent::model($className);
}
}
<file_sep><?php
/* @var $this ProductsController */
/* @var $model Products */
$is_admin = (isset(Yii::app()->user->name) && Yii::app()->user->name == 'admin')?true:false;
if($model->isNewRecord){
$this->menu=array(
array('label'=>'Список товаров', 'url'=>array('index')),
);
} else{
$this->menu=array(
array('label'=>'Список товаров', 'url'=>array('index')),
array('label'=>'Добавить товар', 'url'=>array('create')),
);
}
?>
<a class="butlink" id="menu-icon" href="#"> Меню </a>
<div id="menu-popup">
<?php $this->widget('ext.zii.widgets.Menu',array(
'items'=>array(
array('label'=>'Главная', 'url'=>array('/site')),
array('label'=>'Чеки', 'url'=>array('/checksInvoices')),
array('label'=>'Клиенты', 'url'=>array('/clients')),
array('label'=>'Поставщики', 'url'=>array('/providers')),
array('label'=>'Продавцы', 'url'=>array('/users')),
array('label'=>'Накладные', 'url'=>array('/invoices')),
array('label'=>'Склад', 'url'=>array('/products')),
array('label'=>'Возвраты', 'url'=>array('/returns')),
array('label'=>'Отчет', 'url'=>array('/reports')),
array('label'=>'Резервные копии', 'url'=>array('/jbackup')),
array('label'=>'Вход', 'url'=>array('/user/login'), 'visible'=>Yii::app()->user->isGuest),
array('label'=>'Выход ('.Yii::app()->user->name.')', 'url'=>array('/user/logout'), 'visible'=>!Yii::app()->user->isGuest),
),
'htmlOptions'=>array('class'=>'nav-popup'),
'lastItemCssClass'=>'pull-right',
)); ?>
</div>
<?php if($model->isNewRecord){ ?>
<h2>Добавить товар</h2>
<?php } else{ ?>
<h2>Изменить товар - «<?php echo $model->product_name; ?>»</h2>
<?php } ?>
<div class="form">
<?php $form=$this->beginWidget('CActiveForm', array(
'id'=>'products-form',
'enableAjaxValidation'=>false,
)); ?>
<?php echo $form->errorSummary($model); ?>
<table class="table table-bordered table-striped table-hover" >
<tr>
<td class="i-column"><?php echo $form->labelEx($model,'product_code'); ?></td>
<td><?php echo $form->labelEx($model,'product_name'); ?></td>
<td><?php echo $form->labelEx($model,'product_category'); ?></td>
<!--<td class="m-column"><?php echo $form->labelEx($model,'product_roll'); ?></td>-->
<!--<td class="i-column"><?php echo $form->labelEx($model,'product_color'); ?></td>-->
<td class="m-column"><?php echo $form->labelEx($model,'product_measurement'); ?></td>
<!--<td class="m-column"><?php echo $form->labelEx($model,'product_price_b'); ?></td>-->
<td class="m-column"><?php echo $form->labelEx($model,'product_price'); ?></td>
<td class="i-column"><?php echo $form->labelEx($model,'product_quantity'); ?></td>
<!-- <td class="m-column"><?php echo $form->labelEx($model,'product_sales'); ?></td> -->
<td class="i-column"><?php echo $form->labelEx($model,'product_status'); ?></td>
</tr>
<?php if($is_admin) : ?>
<tr>
<td class="m-column"><?php echo $form->textField($model,'product_code',array('size'=>20)); ?></td>
<td><?php echo $form->textField($model,'product_name',array('size'=>40,'maxlength'=>255)); ?></td>
<td class="m-column"><?php echo $form->dropDownList($model,'product_category', Yii::app()->controller->getCategoriesList()); ?></td>
<!--<td class="m-column"><?php echo $form->textField($model,'product_roll',array('size'=>3)); ?></td>-->
<!--<td class="i-column"><?php echo $form->dropDownList($model,'product_color', Yii::app()->controller->getColorsList()); ?></td>-->
<td class="m-column"><?php echo $form->dropDownList($model,'product_measurement', Yii::app()->controller->getMeasurementUnitsList()); ?></td>
<!--<td class="m-column"><?php echo $form->textField($model,'product_price_b',array('size'=>5,'maxlength'=>15)); ?></td>-->
<td class="m-column"><?php echo $form->textField($model,'product_price',array('size'=>5,'maxlength'=>15)); ?></td>
<td class="i-column"><?php echo $model->product_quantity; ?></td>
<!-- <td class="m-column"><?php echo $form->textField($model,'product_sales',array('size'=>3)); ?></td>-->
<td class="i-column"><?php echo $form->dropDownList($model,'product_status', Yii::app()->controller->product_status); ?></td>
</tr>
<?php else : ?>
<tr>
<td class="m-column"><?php echo $model->product_code; ?></td>
<td><?php echo $model->product_name; ?></td>
<td class="m-column"><?php $msrnt = Yii::app()->controller->getCategoriesList(); echo $msrnt[$model->product_category]; ?></td>
<!--<td class="m-column"><?php echo $model->product_roll; ?></td>-->
<td class="m-column"><?php $msrnt = Yii::app()->controller->getMeasurementUnitsList(); echo $msrnt[$model->product_measurement]; ?></td>
<!--<td class="m-column"><?php ?></td>-->
<td class="m-column"><?php echo $model->product_price; ?></td>
<td class="i-column"><?php echo $model->product_quantity; ?></td>
<td class="i-column"><?php echo Yii::app()->controller->product_status[$model->product_status]; ?></td>
</tr>
<?php endif; ?>
</table>
<?php echo CHtml::submitButton($model->isNewRecord ? 'Создать' : 'Обновить', array('class'=>'btn btn-primary btn-sm')); ?>
<?php $this->endWidget(); ?>
</div>
<?php if(isset($stockusers) && count($stockusers) > 0){ ?>
<div class="m-form" >
<h3>Наличие у продавцов </h3>
<table class="table table-bordered table-striped table-hover" >
<tr>
<th class="s-column">Продавец</th>
<th class="i-column">Кол-во</th>
</tr>
<?php foreach($stockusers as $row){ ?>
<tr>
<td class="s-column"><?php echo $row->user->username ?></td>
<td class="i-column"><?php echo $row->product_quantity; ?></td>
</tr>
<?php } ?>
</table>
</div>
<?php } ?>
<?php $i = 0; ?>
<? if($is_admin): ?>
<?php if(isset($history) && count($history) > 0){ ?>
<div class="m-form" >
<table class="table table-bordered table-striped table-hover" >
<tr>
<th class="s-column">ID</th>
<th class="i-column">Дата</th>
<th>Инфо</th>
</tr>
<?php foreach($history as $story){ ?>
<?php $i++; ?>
<tr>
<td class="s-column"><?php echo $story->record_id ?></td>
<td class="i-column"><?php echo $story->record_datetime; ?></td>
<td><?php echo $story->record_content; ?></td>
</tr>
<?php } ?>
</table>
</div>
<div class="bs-callout-right bs-callout-info align-right">Всего записей: <?=$i; ?></div>
<?php } ?>
<? endif; ?>
<file_sep><?php
/* @var $this ProductsController */
/* @var $model Products */
?>
<a class="butlink" id="menu-icon" href="#"> Меню </a>
<div id="menu-popup">
<?php $this->widget('ext.zii.widgets.Menu',array(
'items'=>array(
array('label'=>'Главная', 'url'=>array('/site')),
array('label'=>'Чеки', 'url'=>array('/checksInvoices')),
array('label'=>'Клиенты', 'url'=>array('/clients')),
array('label'=>'Поставщики', 'url'=>array('/providers')),
array('label'=>'Продавцы', 'url'=>array('/users')),
array('label'=>'Накладные', 'url'=>array('/invoices')),
array('label'=>'Склад', 'url'=>array('/products')),
array('label'=>'Возвраты', 'url'=>array('/returns')),
array('label'=>'Отчет', 'url'=>array('/reports')),
array('label'=>'Резервные копии', 'url'=>array('/jbackup')),
array('label'=>'Вход', 'url'=>array('/user/login'), 'visible'=>Yii::app()->user->isGuest),
array('label'=>'Выход ('.Yii::app()->user->name.')', 'url'=>array('/user/logout'), 'visible'=>!Yii::app()->user->isGuest),
),
'htmlOptions'=>array('class'=>'nav-popup'),
'lastItemCssClass'=>'pull-right',
)); ?>
</div>
<h2>Склад продавца <?php echo CHtml::link($user->username,array("users/update/".$user->id,),array('class'=>'create-button btn btn-primary btn-xs')) ?></h2>
<?php $this->widget('zii.widgets.grid.CGridView', array(
'id'=>'products-grid',
'dataProvider'=>$stock->search(),
'filter'=>$stock,
'columns'=>array(
array(
'header'=>'Штрих-код',
'headerHtmlOptions'=>array('class'=>'active'),
'type'=>'raw',
'value'=>'$data->product->product_code',
),
array(
'header'=>'Название',
'headerHtmlOptions'=>array('class'=>'active'),
'type'=>'raw',
'value'=>'CHtml::link($data->product->product_name,array("/products/update/$data->product_id",))',
),
array(
'header'=>'Мера',
'headerHtmlOptions'=>array('class'=>'active'),
'type'=>'raw',
'value'=>'CHtml::encode($data->product->productMeasurement->unit_name)',
),
array(
'header'=>'Цена',
'headerHtmlOptions'=>array('class'=>'active'),
'type'=>'raw',
'value'=>'$data->product->product_price',
),
array(
'header'=>'Кол-во',
'headerHtmlOptions'=>array('class'=>'active'),
'type'=>'raw',
'value'=>'$data->product_quantity',
),
array(
'header'=>'Рулоны',
'headerHtmlOptions'=>array('class'=>'active'),
'type'=>'raw',
'value'=>'$data->product->product_roll',
),
array(
'header'=>'Продаж',
'headerHtmlOptions'=>array('class'=>'active'),
'type'=>'raw',
'value'=>'$data->product->product_sales',
),
),
)); ?>
<file_sep><?php
/* @var $this StockInvoicesController */
/* @var $model StockInvoices */
$this->breadcrumbs=array(
'Stock Invoices'=>array('index'),
$model->invoice_id,
);
$this->menu=array(
array('label'=>'List StockInvoices', 'url'=>array('index')),
array('label'=>'Create StockInvoices', 'url'=>array('create')),
array('label'=>'Update StockInvoices', 'url'=>array('update', 'id'=>$model->invoice_id)),
array('label'=>'Delete StockInvoices', 'url'=>'#', 'linkOptions'=>array('submit'=>array('delete','id'=>$model->invoice_id),'confirm'=>'Are you sure you want to delete this item?')),
array('label'=>'Manage StockInvoices', 'url'=>array('admin')),
);
?>
<h1>View StockInvoices #<?php echo $model->invoice_id; ?></h1>
<?php $this->widget('zii.widgets.CDetailView', array(
'data'=>$model,
'attributes'=>array(
'invoice_id',
'invoice_code',
'invoice_sender',
'invoice_receiver',
'invoice_datetime',
'invoice_summ',
'invoice_extra',
'invoice_manager_comment',
'invoice_status',
),
)); ?>
<file_sep>function findcode(codeval) {
//search code in base products
$.ajax({
url:'/checks/FindCode',
data: 'code='+codeval,
success: function(result) {
objres = JSON.parse(result);
$('#tablotext').html(objres.tablo);
$('#check-products-lines').html(objres.check);
$('#check-summ').html(objres.total);
$('#total-price').html(objres.total);
$('#menu-icon-balance').html(objres.balance);
},
error: function() {
alert('Не найдено!');
},
});
}
$(document).ready(function(){
if($("input").is(".datepicker")){
$(".datepicker").datetimepicker({
showOtherMonths: true,
selectOtherMonths: true,
timeOnlyTitle: 'Выберите время',
timeText: 'Время',
hourText: 'Часы',
minuteText: 'Минуты',
secondText: 'Секунды',
currentText: 'Сейчас',
closeText: 'Закрыть',
timeFormat: 'HH:mm:ss'
});
}
if($("input").is(".datepicker1")){
$(".datepicker1").datepicker({
showOtherMonths: true,
selectOtherMonths: true,
timeOnlyTitle: 'Выберите время',
timeText: 'Время',
hourText: 'Часы',
minuteText: 'Минуты',
secondText: 'Секунды',
currentText: 'Сейчас',
closeText: 'Закрыть',
dateFormat: 'yy-mm-dd',
prevText: '<Пред',
nextText: 'След>',
monthNames: ['Январь','Февраль','Март','Апрель','Май','Июнь','Июль','Август','Сентябрь','Октябрь','Ноябрь','Декабрь'],
monthNamesShort: ['Янв','Фев','Мар','Апр','Май','Июн','Июл','Авг','Сен','Окт','Ноя','Дек'],
dayNames: ['воскресенье','понедельник','вторник','среда','четверг','пятница','суббота'],
dayNamesShort: ['вс','пн','вт','ср','чт','пт','сб'],
dayNamesMin: ['Вс','Пн','Вт','Ср','Чт','Пт','Сб'],
weekHeader: 'Не',
firstDay: 1,
isRTL: false,
showMonthAfterYear: false,
yearSuffix: '',
showButtonPanel: true,
autoOpen: false
});
}
});
function clientsDialogOpen(){
$("#clientsModal").dialog({
autoOpen: false,
show: "fade",
hide: "fade",
modal: true,
resizable: false,
closeOnEscape: true,
closeText: "",
width: 380,
height: 175,
title: "Отчет по клиенту"
});
$('#clientsModal').dialog('open');
}
function providersDialogOpen(){
$("#providersModal").dialog({
autoOpen: false,
show: "fade",
hide: "fade",
modal: true,
resizable: false,
closeOnEscape: true,
closeText: "",
width: 380,
height: 175,
title: "Отчет по поставщику"
});
$('#providersModal').dialog('open');
}
function sellersDialogOpen(){
$("#sellersModal").dialog({
autoOpen: false,
show: "fade",
hide: "fade",
modal: true,
resizable: false,
closeOnEscape: true,
closeText: "",
width: 380,
height: 175,
title: "Отчет по продавцу"
});
$('#sellersModal').dialog('open');
}
function datesDialogOpen(){
$("#datesModal").dialog({
autoOpen: false,
show: "fade",
hide: "fade",
modal: true,
resizable: false,
closeOnEscape: true,
closeText: "",
width: 380,
height: 175,
title: "Отчет по времени",
open: function (event, ui) {
if ($(".ui-datepicker").is(":visible"))
$(".ui-datepicker").hide();
$("#from").blur();
}
});
$('#datesModal').dialog('open');
}
$(function($){
$.datepicker.regional['ru'] = {
closeText: 'Закрыть',
prevText: '<Пред',
nextText: 'След>',
currentText: 'Сегодня',
monthNames: ['Январь','Февраль','Март','Апрель','Май','Июнь','Июль','Август','Сентябрь','Октябрь','Ноябрь','Декабрь'],
monthNamesShort: ['Янв','Фев','Мар','Апр','Май','Июн','Июл','Авг','Сен','Окт','Ноя','Дек'],
dayNames: ['воскресенье','понедельник','вторник','среда','четверг','пятница','суббота'],
dayNamesShort: ['вс','пн','вт','ср','чт','пт','сб'],
dayNamesMin: ['Вс','Пн','Вт','Ср','Чт','Пт','Сб'],
weekHeader: 'Не',
dateFormat: 'yy-mm-dd',
firstDay: 1,
isRTL: false,
showMonthAfterYear: false,
yearSuffix: ''
};
$.datepicker.setDefaults($.datepicker.regional['ru']);
});
function getClientDebt(clientId){
$.ajax({
url: "/clients/getDebt",
type: 'post',
data: 'client_id='+clientId,
success: function(data){
$("#ClientsInvoices_client_debt").val(data);
$('.client-form-loader').hide();
}
});
}
function getProviderDebt(providerId){
$.ajax({
url: "/providers/getDebt",
type: 'post',
data: 'provider_id='+providerId,
success: function(data){
$("#ProvidersInvoices_provider_debt").val(data);
$('.provider-form-loader').hide();
}
});
}
function addRow(){
$.ajax({
success: function(html){
$(".tasks").append(html);
},
type: 'get',
url: '/site/field',
data: {
index: $(".tasks tr.rowP").size()
},
cache: false,
dataType: 'html'
});
}
function addRowStock(){
$.ajax({
success: function(html){
$(".tasks").append(html);
},
type: 'get',
url: '/stockInvoices/field',
data: {
index: $(".tasks tr.rowP").size()
},
cache: false,
dataType: 'html'
});
}
function addRow1(){
$.ajax({
success: function(html){
$(".tasks1").append(html);
},
type: 'get',
url: '/site/field1',
data: {
index: $(".tasks1 tr.rowP1").size()
},
cache: false,
dataType: 'html'
});
}
function getSubTotal(element){
var pricePerOne = $(element).val();
var quantity = $(element).parents('.rowP').find('.quantity-field').val();
var subTotal = pricePerOne * quantity;
$(element).parents('.rowP').find('.provider_invoice_subtotal').val(subTotal);
}
function getCSubTotal(element){
var quantity = $(element).parents('.rowP1').find('.quantity-field').val();
var pricePerOne = $(element).parents('.rowP1').find('.price-field').val();
var subTotal = pricePerOne * quantity;
$(element).parents('.rowP1').find('.client_invoice_subtotal').val(subTotal);
}
function invoicePTotal(element){
var total = 0.00;
$("#providers-invoices-form .provider_invoice_subtotal").each(function(){
total += parseFloat($(this).val());
});
$("#ProvidersInvoices_invoice_summ").val(total);
}
function invoiceCTotal(element){
var total = 0.00;
$("#clients-invoices-form .client_invoice_subtotal").each(function(){
total += parseFloat($(this).val());
});
$("#ClientsInvoices_invoice_summ").val(total);
}
function invoiceSPTotal(element){
var total = 0.00;
$("#providers-invoices-form .provider_invoice_subtotal").each(function(){
total += parseFloat($(this).val());
});
$("#StockInvoices_invoice_summ").val(total);
}
function formatRolls(element){
var input = $(element).val();
var value = $.trim(input).replace(/\s+/g," ");
$(element).val(value);
if(value.length > 0){
var rolls = value.split(" ").length;
$(element).parents('.rowP1').find('.rolls-field').val(rolls);
var arrayRolls = value.split(" ");
var total = 0;
for(var i = 0; i < rolls; i++){
total += parseInt(arrayRolls[i]);
}
if(isNaN(total)){
alert('Неправильное количество');
$(element).val('');
} else {
$(element).parents('.rowP1').find(".quantity-field").val(total);
}
} else{
alert('Неправильное количество');
}
}
function charFinder(char,string){
var count = 0,
pos = string.indexOf(char);
while ( pos != -1 ){
count++;
pos = string.indexOf(char,pos+1);
}
return count;
}
function getCProductInfo(element){
var id = $(element).val();
$.ajax({
url: "/products/getProductInfo",
type: 'get',
data: 'product_id='+id,
success: function(data){
var obj = jQuery.parseJSON(data);
$(element).parents('.rowP1').find(".color-field").text(obj.product_color);
$(element).parents('.rowP1').find(".measurement-field").text(obj.product_measurement);
$(element).parents('.rowP1').find(".price-field").val(obj.product_price);
if(obj.product_quantity > 0)
var itemClass = 'label label-success';
else
var itemClass = 'label label-danger';
var availability = "Доступно на складе: <span class='" + itemClass + "'>" + obj.product_quantity + "<span>";
$(element).parents('.rowP1').next('tr').find(".product-additional-info").html('');
$(element).parents('.rowP1').next('tr').find(".product-additional-info").append(availability);
}
});
}
function getClientId(clientName){
$.ajax({
url: "/clients/getClientId",
type: 'get',
data: 'client_name='+clientName,
beforeSend: function(){
$('.client-form-loader').show();
},
success: function(data){
$('#ClientsInvoices_invoice_client_id').val(data);
getClientDebt(data);
}
});
}
function getClientIdForReport(element){
var clientName = $(element).val();
$.ajax({
url: "/clients/getClientId",
type: 'get',
data: 'client_name='+clientName,
beforeSend: function(){
$(element).parents('.reports-modal').find('.report-form-loader').show();
},
success: function(data){
var cap = $(element).parents('.reports-modal').find('.report-form-button').attr('href');
var parts = cap.split('/');
parts[parts.length - 1] = data;
var link = parts.join('/');
$(element).parents('.reports-modal').find('.report-form-button').attr('href', link).show();
$(element).parents('.reports-modal').find('.report-form-loader').hide();
}
});
}
function getProviderId(providerName){
$.ajax({
url: "/providers/getProviderId",
type: 'get',
data: 'provider_name='+providerName,
beforeSend: function(){
$('.provider-form-loader').show();
},
success: function(data){
$('#ProvidersInvoices_invoice_provider_id').val(data);
getProviderDebt(data);
}
});
}
function getProviderIdForReport(element){
var providerName = $(element).val();
$.ajax({
url: "/providers/getProviderId",
type: 'get',
data: 'provider_name='+providerName,
beforeSend: function(){
$(element).parents('.reports-modal').find('.report-form-loader').show();
},
success: function(data){
var cap = $(element).parents('.reports-modal').find('.report-form-button').attr('href');
var parts = cap.split('/');
parts[parts.length - 1] = data;
var link = parts.join('/');
$(element).parents('.reports-modal').find('.report-form-button').attr('href', link).show();
$(element).parents('.reports-modal').find('.report-form-loader').hide();
}
});
}
function getSellerIdForReport(element){
var userName = $(element).val();
$.ajax({
url: "/users/getUserId",
type: 'get',
data: 'username='+userName,
beforeSend: function(){
$(element).parents('.reports-modal').find('.report-form-loader').show();
},
success: function(data){
var cap = $(element).parents('.reports-modal').find('.report-form-button').attr('href');
var parts = cap.split('/');
parts[parts.length - 1] = data;
var link = parts.join('/');
$(element).parents('.reports-modal').find('.report-form-button').attr('href', link).show();
$(element).parents('.reports-modal').find('.report-form-loader').hide();
}
});
}
function getDatesIdForReport(element){
var from = $('#from').val();
var to = $('#to').val();
$(element).parents('.reports-modal').find('.report-form-loader').show();
$(element).parents('form').append('<a href="/report/ByDates?from=' + from + '&to=' + to + '" class="report-form-button pull-right" >Сформулировать</a>');
$(element).parents('.reports-modal').find('.report-form-loader').hide();
}
function changeFieldType(element){
var currentType = $(element).prop('type');
if(currentType == 'password'){
$(element).prop('type', 'text');
} else{
$(element).prop('type', 'password');
}
}
function deleteRow(element, isNext){
if(isNext){
if($('tr.rowP1').length > 1){
$(element).parents('tr.rowP1').next('tr').remove();
$(element).parents('tr').remove();
}
} else{
if($('tr.rowP').length > 1){
$(element).parents('tr.rowP').remove();
}
}
}
function loadProductInfo(element){
var productName = $(element).val();
$.ajax({
url: "/products/getProductByName",
type: 'get',
data: 'product_name='+productName,
beforeSend: function(){
//$(element).parents('.reports-modal').find('.report-form-loader').show();
},
success: function(data){
var obj = jQuery.parseJSON(data);
$(element).parents('tr.rowP1').find('.id-field').val(obj.product_id);
$(element).parents('tr.rowP1').find('.price-field').val(obj.product_price);
$(element).parents('tr.rowP1').find('.color-field option').each(function(){
if($(this).val() == obj.product_color){
$(this).attr('selected', 'selected');
}
});
$(element).parents('tr.rowP1').find('.measurement-field option').each(function(){
if($(this).val() == obj.product_measurement){
$(this).attr('selected', 'selected');
}
});
if(obj.product_quantity > 0)
var itemClass = 'label label-success';
else
var itemClass = 'label label-danger';
var availability = "Доступно на складе: <span class='" + itemClass + "'>" + obj.product_quantity + "<span>";
$(element).parents('.rowP1').next('tr').find(".product-additional-info").html('');
$(element).parents('.rowP1').next('tr').find(".product-additional-info").append(availability);
}
});
}
function getClientIdChecks(clientName){
$.ajax({
url: "/clients/getClientId",
type: 'get',
data: 'client_name='+clientName,
beforeSend: function(){
$('.client-form-loader').show();
},
success: function(data){
$('#ChecksInvoices_invoice_client_id').val(data);
}
});
}
function loadProductInfoChecks(element){
var productName = $(element).val();
$.ajax({
url: "/products/getProductByName",
type: 'get',
data: 'product_name='+productName,
beforeSend: function(){
//$(element).parents('.reports-modal').find('.report-form-loader').show();
},
success: function(data){
var obj = jQuery.parseJSON(data);
$.ajax({
url:'/checks/LoadCodeCheck',
data: 'code='+obj.product_id,
success: function(result) {
objres = JSON.parse(result);
$('#tablotext').html(objres.tablo);
$('#check-products-lines').html(objres.check);
$('#check-summ').html(objres.total);
$('#total-price').html(objres.total);
$('#menu-icon-balance').html(objres.balance);
},
error: function() {
alert('Не найдено!');
},
});
}
});
}
function cleartabloval() {
$('#quantity_but a').removeClass('pressed') ;
$('#menu-icon-balance').html(' На складе ');
}
$(document).ready(function(){
$('.keyboard .numeric a').click(function() {
if ($('#quantity_but a').hasClass('pressed')) {
$('#bl_quantity input').insertAtCaret($(this).text());
} else {
$('#code-search').insertAtCaret($(this).text());
}
return false;
});
$('#bkspc').click(function() {
if ($('#quantity_but a').hasClass('pressed')) {
$('#bl_quantity input').val($('#bl_quantity input').val().substring(0, $('#bl_quantity input').val().length - 1));
} else {
$('#code-search').val($('#code-search').val().substring(0, $('#code-search').val().length - 1));
}
return false;
});
$('#menu-icon').click(function() {
$('#menu-popup').toggle();
return false;
});
$('#icon-new').click(function() {
cleartabloval() ;
$.ajax({
url:'/checks/NewCheck',
success: function(result) {
objres = JSON.parse(result);
$('#tablotext').val('');
$('#check-products-lines').html(objres.check);
$('#currcheck').html(objres.curr);
$('#check-summ').html(objres.total);
$('#total-price').html(objres.total);
},
error: function() {
alert('Не найдено!');
},
});
return false;
});
$('#icon-trash').click(function() {
cleartabloval() ;
$('#check-products-lines').html('');
$('#check-summ').text('0.00');
$('#total-price').text('0.00');
$.ajax({
url:'checks/DeleteCheck',
success: function(result) {
objres = JSON.parse(result);
$('#tablotext').val('');
$('#check-products-lines').html(objres.check);
$('#currcheck').html(objres.curr);
$('#check-summ').html(objres.total);
$('#total-price').html(objres.total);
},
error: function() {
alert('Не найдено!');
},
});
return false;
});
$('#code-search').change(function() {
return false;
});
$('#upcean').click(function() {
cleartabloval() ;
findcode($('#code-search').val());
$('#code-search').val('');
return false;
});
$('#quantity_but a').click(function() {
if ($(this).hasClass('pressed')) {
$(this).removeClass('pressed')
$('#bl_quantity input').prop('disabled', true);
} else {
$(this).addClass('pressed')
$('#bl_quantity input').prop('disabled', false);
}
return false;
});
$('#up_but_down').click(function() {
if ($('#bl_quantity input').val() > 1)
$('#bl_quantity input').val(parseFloat($('#bl_quantity input').val())-1);
if ($('#bl_quantity input').val() >= 1) {
if ($('#bl_roll input').val() && $('#bl_roll input').val() >1 )
blroll= $('#bl_roll input').val();
else
blroll = 0;
$.ajax({
url:'/checks/UpdateAmount',
data: 'code='+$('#bl_quantity input').data('link')+'&amount='+$('#bl_quantity input').val()+'&price='+$('#bl_price input').val()+'&roll='+blroll,
success: function(result) {
objres = JSON.parse(result);
//$('#tablotext').html('<table class="bl_table"><tr><td id="bl_title"></td><td id="bl_price"></td><td id="bl_quantity"><input type="text" size="3" disabled="disabled"></td><td id="bl_del"></td></tr></table>');
$('#check-products-lines').html(objres.check);
$('#check-summ').html(objres.total);
$('#total-price').html(objres.total);
},
error: function() {
alert('Ошибка!');
},
});
}
return false;
});
$('#up_but_up').click(function() {
if ($('#bl_quantity input').val() >= 1) {
$('#bl_quantity input').val(parseFloat($('#bl_quantity input').val())+1);
if ($('#bl_roll input').val() && $('#bl_roll input').val() >1 )
blroll= $('#bl_roll input').val();
else
blroll = 0;
$.ajax({
url:'/checks/UpdateAmount',
data: 'code='+$('#bl_quantity input').data('link')+'&amount='+$('#bl_quantity input').val()+'&price='+$('#bl_price input').val()+'&roll='+blroll,
success: function(result) {
objres = JSON.parse(result);
//$('#tablotext').html('<table class="bl_table"><tr><td id="bl_title"></td><td id="bl_price"></td><td id="bl_quantity"><input type="text" size="3" disabled="disabled"></td><td id="bl_del"></td></tr></table>');
$('#check-products-lines').html(objres.check);
$('#check-summ').html(objres.total);
$('#total-price').html(objres.total);
},
error: function() {
alert('Ошибка!');
},
});
}
return false;
});
$('#check-summ').click(function() {
cleartabloval() ;
if ($(this).text() == " 0.00 ") {
alert('Чек пустой!');
return false;
}
$.ajax({
url:'/checksInvoices/create',
data: 'client='+$('#ChecksInvoices_invoice_client_id').val()+'&summ='+$(this).text(),
success: function(result) {
objres = JSON.parse(result);
$('#tablotext').html(objres.tablo);
$('#check-products-lines').html(objres.check);
$('#check-summ').html(objres.total);
$('#total-price').html(objres.total);
alert('Чек оформлен!');
},
error: function() {
alert('Не хватает товара в наличии');
},
});
return false;
});
$(document).on('keyup', '#bl_quantity input, #bl_price input, #bl_roll input ', function (event) {
if ($('#bl_quantity input').val() >= 1) {
if ($('#bl_roll input').val() && $('#bl_roll input').val() >1 )
blroll= $('#bl_roll input').val();
else
blroll = 0;
$.ajax({
url:'/checks/UpdateAmount',
data: 'code='+$('#bl_quantity input').data('link')+'&amount='+$('#bl_quantity input').val()+'&price='+$('#bl_price input').val()+'&roll='+blroll,
success: function(result) {
objres = JSON.parse(result);
$('#check-products-lines').html(objres.check);
$('#check-summ').html(objres.total);
$('#total-price').html(objres.total);
},
error: function() {
alert('Ошибка!');
},
});
}
});
$(document).on('click', '.check-products-line', function (event) {
cleartabloval() ;
rowid = $(this).data('line');
$('.check-products-line').removeClass('selected');
$(this).addClass('selected');
$('#bl_title').html($(this).find('.title').text());
$('#bl_price input').val($(this).find('.price').text());
$('#bl_price input').data('link',rowid);
$('#bl_quantity input').val($(this).find('.quantity').text());
$('#bl_quantity input').data('link',rowid);
$('#bl_roll input').val($(this).find('.roll').text());
$('#bl_del').html('<a href="#" data-link="'+rowid+'">X</a>');
$('#menu-icon-balance').html($(this).find('.balance').val());
return false;
});
$(document).on('click', '#bl_del a', function (event) {
cleartabloval() ;
$.ajax({
url:'/checks/DeleteFromCheck',
data: 'code='+$(this).data('link'),
success: function(result) {
objres = JSON.parse(result);
$('#tablotext').html('<table class="bl_table"><tr><td id="bl_title"></td><td id="bl_price"><input type="text" size="6" ></td><td id="bl_roll"><input type="text" size="3"></td><td id="bl_quantity"><input type="text" size="3" disabled="disabled"></td><td id="bl_del"></td></tr></table>');
$('#check-products-lines').html(objres.check);
$('#check-summ').html(objres.total);
$('#total-price').html(objres.total);
},
error: function() {
alert('Ошибка!');
},
});
return false;
});
$('#currcheck').click(function() {
cleartabloval() ;
$.ajax({
url:'/checks/GetCheck',
success: function(result) {
objres = JSON.parse(result);
$('#tablotext').val('');
$('#check-products-lines').html(objres.check);
$('#currcheck').html(objres.curr);
$('#check-summ').html(objres.total);
$('#total-price').html(objres.total);
},
error: function() {
alert('Не найдено!');
},
});
return false;
});
$(document).on('keydown', '#code-search', function (event) {
if (event.keyCode == '13') {
cleartabloval() ;
findcode($('#code-search').val());
$('#code-search').val('');
return false;
}
});
$(document).on('keydown', '.form-check', function (event) {
if (event.keyCode == '61') {
cleartabloval() ;
if ($(this).text() == " 0.00 ") {
alert('Чек пустой!');
return false;
}
$.ajax({
url:'/checksInvoices/create',
data: 'client='+$('#ChecksInvoices_invoice_client_id').val()+'&summ='+$('#check-summ').text(),
success: function(result) {
objres = JSON.parse(result);
$('#tablotext').html(objres.tablo);
$('#check-products-lines').html(objres.check);
$('#check-summ').html(objres.total);
$('#total-price').html(objres.total);
alert('Чек оформлен!');
},
error: function() {
alert('Ошибка!');
},
});
return false;
}
if (event.keyCode == '107') { //plus
if ($('#bl_quantity input').val() >= 1) {
if ($('#bl_roll input').val() && $('#bl_roll input').val() >1 )
blroll= $('#bl_roll input').val();
else
blroll = 0;
$('#bl_quantity input').val(parseFloat($('#bl_quantity input').val())+1);
$.ajax({
url:'/checks/UpdateAmount',
data: 'code='+$('#bl_quantity input').data('link')+'&amount='+$('#bl_quantity input').val()+'&price='+$('#bl_price input').val()+'&roll='+blroll,
//data: 'code='+$('#bl_quantity input').data('link')+'&amount='+$('#bl_quantity input').val()+'&price='+$('#bl_price input').val(),
success: function(result) {
objres = JSON.parse(result);
//$('#tablotext').html('<table class="bl_table"><tr><td id="bl_title"></td><td id="bl_price"></td><td id="bl_quantity"><input type="text" size="3" disabled="disabled"></td><td id="bl_del"></td></tr></table>');
$('#check-products-lines').html(objres.check);
$('#check-summ').html(objres.total);
$('#total-price').html(objres.total);
},
error: function() {
alert('Ошибка!');
},
});
}
return false;
}
if (event.keyCode == '109') { //minus
if ($('#bl_quantity input').val() > 1)
$('#bl_quantity input').val(parseFloat($('#bl_quantity input').val())-1);
if ($('#bl_quantity input').val() >= 1) {
if ($('#bl_roll input').val() && $('#bl_roll input').val() >1 )
blroll= $('#bl_roll input').val();
else
blroll = 0;
$.ajax({
url:'/checks/UpdateAmount',
data: 'code='+$('#bl_quantity input').data('link')+'&amount='+$('#bl_quantity input').val()+'&price='+$('#bl_price input').val()+'&roll='+blroll,
success: function(result) {
objres = JSON.parse(result);
//$('#tablotext').html('<table class="bl_table"><tr><td id="bl_title"></td><td id="bl_price"></td><td id="bl_quantity"><input type="text" size="3" disabled="disabled"></td><td id="bl_del"></td></tr></table>');
$('#check-products-lines').html(objres.check);
$('#check-summ').html(objres.total);
$('#total-price').html(objres.total);
},
error: function() {
alert('Ошибка!');
},
});
}
return false;
}
});
});
<file_sep><?php
/**
* @var $form CActiveForm
*/
?>
<h2>Загрузить резервную копию</h2>
<div class="form">
<?php $form = $this->beginWidget($this->module->bootstrap ? 'bootstrap.widgets.TbActiveForm': 'CActiveForm', array(
'id' => 'install-form',
'enableAjaxValidation' => false,
'htmlOptions'=>array('enctype'=>'multipart/form-data'),
)); ?>
<table class="table table-bordered table-striped table-hover" >
<?php if($this->module->bootstrap)
$form->type = 'horizontal';
?>
<?php
if($this->module->bootstrap) {
echo $form->fileFieldRow($model,'upload_file');
} else{ ?>
<tr>
<td>
<?php echo $form->labelEx($model,'upload_file'); ?>
</td>
<td>
<?php echo $form->fileField($model,'upload_file'); ?>
<?php echo $form->error($model,'upload_file'); ?>
</td>
</tr>
<?php } ?>
</table>
<?php echo CHtml::submitButton('Загрузить', array('class'=>'btn btn-primary btn-sm')); ?>
<?php $this->endWidget(); ?>
</div><file_sep><?php
/* @var $this StockInvoicesController */
/* @var $data StockInvoices */
?>
<div class="view">
<b><?php echo CHtml::encode($data->getAttributeLabel('invoice_id')); ?>:</b>
<?php echo CHtml::link(CHtml::encode($data->invoice_id), array('view', 'id'=>$data->invoice_id)); ?>
<br />
<b><?php echo CHtml::encode($data->getAttributeLabel('invoice_code')); ?>:</b>
<?php echo CHtml::encode($data->invoice_code); ?>
<br />
<b><?php echo CHtml::encode($data->getAttributeLabel('invoice_sender')); ?>:</b>
<?php echo CHtml::encode($data->invoice_sender); ?>
<br />
<b><?php echo CHtml::encode($data->getAttributeLabel('invoice_receiver')); ?>:</b>
<?php echo CHtml::encode($data->invoice_receiver); ?>
<br />
<b><?php echo CHtml::encode($data->getAttributeLabel('invoice_datetime')); ?>:</b>
<?php echo CHtml::encode($data->invoice_datetime); ?>
<br />
<b><?php echo CHtml::encode($data->getAttributeLabel('invoice_summ')); ?>:</b>
<?php echo CHtml::encode($data->invoice_summ); ?>
<br />
<b><?php echo CHtml::encode($data->getAttributeLabel('invoice_extra')); ?>:</b>
<?php echo CHtml::encode($data->invoice_extra); ?>
<br />
<?php /*
<b><?php echo CHtml::encode($data->getAttributeLabel('invoice_manager_comment')); ?>:</b>
<?php echo CHtml::encode($data->invoice_manager_comment); ?>
<br />
<b><?php echo CHtml::encode($data->getAttributeLabel('invoice_status')); ?>:</b>
<?php echo CHtml::encode($data->invoice_status); ?>
<br />
*/ ?>
</div><file_sep><?php
/* @var $this ReportsController */
/* @var $data Products */
?>
<div class="view">
<b><?php echo CHtml::encode($data->getAttributeLabel('product_id')); ?>:</b>
<?php echo CHtml::link(CHtml::encode($data->product_id), array('view', 'id'=>$data->product_id)); ?>
<br />
<b><?php echo CHtml::encode($data->getAttributeLabel('product_name')); ?>:</b>
<?php echo CHtml::encode($data->product_name); ?>
<br />
<b><?php echo CHtml::encode($data->getAttributeLabel('product_roll')); ?>:</b>
<?php echo CHtml::encode($data->product_roll); ?>
<br />
<b><?php echo CHtml::encode($data->getAttributeLabel('product_measurement')); ?>:</b>
<?php echo CHtml::encode($data->product_measurement); ?>
<br />
<b><?php echo CHtml::encode($data->getAttributeLabel('product_color')); ?>:</b>
<?php echo CHtml::encode($data->product_color); ?>
<br />
<b><?php echo CHtml::encode($data->getAttributeLabel('product_price_b')); ?>:</b>
<?php echo CHtml::encode($data->product_price_b); ?>
<br />
<b><?php echo CHtml::encode($data->getAttributeLabel('product_price')); ?>:</b>
<?php echo CHtml::encode($data->product_price); ?>
<br />
<?php /*
<b><?php echo CHtml::encode($data->getAttributeLabel('product_quantity')); ?>:</b>
<?php echo CHtml::encode($data->product_quantity); ?>
<br />
<b><?php echo CHtml::encode($data->getAttributeLabel('product_status')); ?>:</b>
<?php echo CHtml::encode($data->product_status); ?>
<br />
<b><?php echo CHtml::encode($data->getAttributeLabel('product_sales')); ?>:</b>
<?php echo CHtml::encode($data->product_sales); ?>
<br />
<b><?php echo CHtml::encode($data->getAttributeLabel('product_code')); ?>:</b>
<?php echo CHtml::encode($data->product_code); ?>
<br />
*/ ?>
</div><file_sep><?php
/* @var $this StockProductsController */
/* @var $model StockProducts */
$this->breadcrumbs=array(
'Stock Products'=>array('index'),
$model->product_id,
);
$this->menu=array(
array('label'=>'List StockProducts', 'url'=>array('index')),
array('label'=>'Create StockProducts', 'url'=>array('create')),
array('label'=>'Update StockProducts', 'url'=>array('update', 'id'=>$model->product_id)),
array('label'=>'Delete StockProducts', 'url'=>'#', 'linkOptions'=>array('submit'=>array('delete','id'=>$model->product_id),'confirm'=>'Are you sure you want to delete this item?')),
array('label'=>'Manage StockProducts', 'url'=>array('admin')),
);
?>
<h1>View StockProducts #<?php echo $model->product_id; ?></h1>
<?php $this->widget('zii.widgets.CDetailView', array(
'data'=>$model,
'attributes'=>array(
'product_id',
'invoice_id',
'product_name',
'product_roll',
'product_color',
'product_measurement',
'product_quantity',
'product_price',
'product_total',
),
)); ?>
<file_sep><?php
class ChecksController extends Controller
{
/**
* @var string the default layout for the views. Defaults to '//layouts/column2', meaning
* using two-column layout. See 'protected/views/layouts/column2.php'.
*/
public $layout='//layouts/column1';
/**
* @return array action filters
*/
public function filters()
{
return array(
'accessControl', // perform access control for CRUD operations
'postOnly + delete', // we only allow deletion via POST request
);
}
/**
* Specifies the access control rules.
* This method is used by the 'accessControl' filter.
* @return array access control rules
*/
public function accessRules()
{
return array(
array('allow', // allow authenticated user to perform 'create' and 'update' actions
'actions'=>array('create','index','update','FindCode',
'LoadCodeCheck','AddCheck','DeleteFromCheck','UpdateAmount','NewCheck','DeleteCheck','ViewCheck','GetCheck'
),
'users'=>array('@'),
),
array('allow', // allow admin user to perform 'admin' and 'delete' actions
'actions'=>array('delete'),
'users'=>array('admin'),
),
array('deny', // deny all users
'users'=>array('*'),
),
);
}
/**
* Lists all models.
*/
public function actionIndex()
{
$models = array();
$model=new ChecksInvoices;
$clients=new Clients;
$this->render('index', array(
'models' => $models,
'model' => $model,
'clients' => $clients,
));
}
public function actionFindCode()
{
foreach($_GET as $key => $value) {
if(substr($key, 0, 4) == 'code') {
if (!is_numeric($value) || $value <= 0)
throw new CException('Wrong code');
$criteria = new CDbCriteria;
$criteria->condition = 'product_code = :product_code AND product_status=1';
$criteria->params = array(
':product_code'=> $value,
);
$product = array_shift(Products::model()->findAll($criteria));
$stockusers_criteria=new CDbCriteria;
$stockusers_criteria->condition='product_id=:product_id AND user_id=:user_id ';
$stockusers_criteria->params=array(
':product_id'=> $product->product_id,
':user_id'=> Yii::app()->user->id,
);
$stockusers_products = ProductsUsers::model()->find($stockusers_criteria);
if($stockusers_products && ($stockusers_products->product_quantity > 0)) {
$position = Yii::app()->shoppingCart->itemAt('Product'.$product['product_id']);
if ($position) {
if ($stockusers_products->product_quantity > $position->getQuantity())
Yii::app()->shoppingCart->put($product);
}
else {
Yii::app()->shoppingCart->put($product);
$position = Yii::app()->shoppingCart->itemAt('Product'.$product['product_id']);
}
if(@$model = Products::model()->findByPk($position['product_id'])) {
$tablo = '<table class="bl_table"><tr>
<td id="bl_title">'.$model->product_name.'</td>
<td id="bl_price"><input type="text" size="3" data-link="'.$position['product_id'].'" value="'.number_format($position->getPrice(),2,'.',' ').'"></td>
<td id="bl_roll"><input size="3" value="'.number_format($position->getRoll(),2,'.',' ').'" type="text"></td>
<td id="bl_quantity"><input type="text" size="3" data-link="'.$position['product_id'].'" value="'.$position->getQuantity().'" disabled="disabled"></td>
<td id="bl_del"><a href="#" data-link="'.$position['product_id'].'">X</a>
</td>
</tr></table>';
$data['tablo'] = $tablo;
$data['check'] = $this->ViewCheck();
$data['total'] = number_format(Yii::app()->shoppingCart->getCost(),2,'.',' ');
$data['balance'] = $stockusers_products->product_quantity;
Yii::app()->end(json_encode($data));
}
}
}
}
}
public function actionLoadCodeCheck()
{
foreach($_GET as $key => $value) {
if(substr($key, 0, 4) == 'code') {
if (!is_numeric($value) || $value <= 0)
throw new CException('Wrong code');
$criteria = new CDbCriteria;
$criteria->condition = 'product_id = :product_code AND product_status=1';
$criteria->params = array(
':product_code'=> $value,
);
$product = array_shift(Products::model()->findAll($criteria));
$stockusers_criteria=new CDbCriteria;
$stockusers_criteria->condition='product_id=:product_id AND user_id=:user_id ';
$stockusers_criteria->params=array(
':product_id'=> $product->product_id,
':user_id'=> Yii::app()->user->id,
);
$stockusers_products = ProductsUsers::model()->find($stockusers_criteria);
if($stockusers_products && ($stockusers_products->product_quantity > 0) ) {
Yii::app()->shoppingCart->put($product);//добавляем товар в корзину
$position = Yii::app()->shoppingCart->itemAt('Product'.$product['product_id']);
if(@$model = Products::model()->findByPk($position['product_id'])) {
//$tablo = '<table class="bl_table"><tr><td id="bl_title">'.$model->product_name.'</td><td id="bl_price">'.number_format($position->getPrice(),2,'.',' ').'</td><td id="bl_quantity"><input type="text" size="3" value="'.$position->getQuantity().'" disabled="disabled"></td><td id="bl_del"><a href="#" data-link="'.$position['product_id'].'">X</a></td></tr></table>';
$tablo = '<table class="bl_table"><tr><td id="bl_title">'.$model->product_name.'</td><td id="bl_price"><input type="text" size="6" data-link="'.$position['product_id'].'" value="'.number_format($position->getPrice(),2,'.',' ').'" ></td><td id="bl_roll"><input size="3" value="'.number_format($position->getRoll(),2,'.',' ').'" type="text"></td><td id="bl_quantity"><input type="text" size="3" data-link="'.$position['product_id'].'" value="'.$position->getQuantity().'" disabled="disabled"></td><td id="bl_del"><a href="#" data-link="'.$position['product_id'].'">X</a></td></tr></table>';
$data['tablo'] = $tablo;
$data['check'] = $this->ViewCheck();
$data['total'] = number_format(Yii::app()->shoppingCart->getCost(),2,'.',' ');
$data['balance'] = $stockusers_products->product_quantity;
Yii::app()->end(json_encode($data));
}
}
}
}
}
public function actionAddCheck()
{
if(Yii::app()->request->isAjaxRequest)//если пришел ajax-запрос
{
$item=Items::model()->findByPk((int)$_POST['id']);
if($item) {
Yii::app()->shoppingCart->put($item);
}
else {
throw new CHttpException(404,'The requested page does not exist.');//товара нет
}
}
else {
//throw new CHttpException(404,'The requested page does not exist.');//запрос НЕ ajax'овский
$item=Items::model()->findByPk((int)$_POST['id']);//ищем товар по ID
if($item) {
Yii::app()->shoppingCart->put($item);//добавляем товар в корзину
$this->redirect($this->createUrl('/checks'));
}
else
throw new CHttpException(404,'The requested page does not exist.');//товара нет
}
}
public function actionDeleteFromCheck()
{
foreach($_GET as $key => $value) {
if(substr($key, 0, 4) == 'code') {
if (!is_numeric($value) || $value <= 0)
throw new CException('Wrong code');
$item = Products::model()->findByPk((int)$value);
Yii::app()->shoppingCart->remove($item->getId());
$data['total'] = number_format(Yii::app()->shoppingCart->getCost(),2,'.',' ');
$data['check'] = $this->ViewCheck();
Yii::app()->end(json_encode($data));
}
}
}
public function actionUpdateAmount() {
$id = $_GET['code'];
$amount = $_GET['amount'];
$price = $_GET['price'];
$roll = $_GET['roll'];
$item = Products::model()->findByPk($id);
$stockusers_criteria=new CDbCriteria;
$stockusers_criteria->condition='product_id=:product_id AND user_id=:user_id ';
$stockusers_criteria->params=array(
':product_id'=> $id,
':user_id'=> Yii::app()->user->id,
);
$stockusers_products = ProductsUsers::model()->find($stockusers_criteria);
if($stockusers_products && ($stockusers_products->product_quantity >= $amount) ) {
$position = Yii::app()->shoppingCart->itemAt('Product'.$id);
Yii::app()->shoppingCart->update($position,$amount,$price,$roll);
$data['total2'] = $position->getPrice();
$data['total'] = number_format(Yii::app()->shoppingCart->getCost(),2,'.',' ');
$data['check'] = $this->ViewCheck();
Yii::app()->end(json_encode($data));
}
else
return false;
}
public function actionNewCheck()
{
if(Yii::app()->request->isAjaxRequest) {
$user = Yii::app()->getUser();
$StateKeyPrefix = $user->getStateKeyPrefix();
$CurrentCheck = Yii::app()->getUser()->getState('CurrentCheck', 1);
$count_checks = 0;
$key_checks = 0;
$array_checks = array();
foreach ($_SESSION as $key => $value) {
if(!(false===($pos=strpos($key,$StateKeyPrefix.'CartID')))) {
$count_checks ++;
$key_checks = substr($key,strlen($StateKeyPrefix)+6);
$array_checks[$count_checks] = $key_checks;
}
}
$count_checks ++;
$key_checks ++;
if (!isset($array_checks[$count_checks])) $array_checks[$count_checks] = $key_checks;
Yii::app()->getUser()->setState('CurrentCheck', $array_checks[$count_checks]);
$data['curr'] = $count_checks.'/'.$count_checks;
$data['total'] = number_format(Yii::app()->shoppingCart->getCost(),2,'.',' ');
$data['check'] = $this->ViewCheck();
$data['currcheck'] = $count_checks;
Yii::app()->end(json_encode($data));
}
else {
throw new CHttpException(404,'The requested page does not exist.');
}
}
public function actionDeleteCheck()
{
if(Yii::app()->request->isAjaxRequest) {
$user = Yii::app()->getUser();
$StateKeyPrefix = $user->getStateKeyPrefix();
$CurrentCheck = Yii::app()->getUser()->getState('CurrentCheck', 1);
$count_checks = 0;
$array_checks = array();
foreach ($_SESSION as $key => $value) {
if(!(false===($pos=strpos($key,$StateKeyPrefix.'CartID')))) {
$count_checks ++;
$key_checks = substr($key,strlen($StateKeyPrefix)+6);
$array_checks[$count_checks] = $key_checks;
}
}
$key = $StateKeyPrefix.'CartID'.$CurrentCheck;
if (isset($_SESSION[$key]))
unset($_SESSION[$key]);
if ($count_checks > 1)
$count_checks --;
Yii::app()->getUser()->setState('CurrentCheck', 1);
Yii::app()->shoppingCart->init();
$data['curr'] = '1/'.$count_checks;
$data['total'] = number_format(Yii::app()->shoppingCart->getCost(),2,'.',' ');
$data['check'] = $this->ViewCheck();
Yii::app()->end(json_encode($data));
}
else {
throw new CHttpException(404,'The requested page does not exist.');
}
}
public function actionGetCheck()
{
if(Yii::app()->request->isAjaxRequest) {
$user = Yii::app()->getUser();
$StateKeyPrefix = $user->getStateKeyPrefix();
$CurrentCheck = Yii::app()->getUser()->getState('CurrentCheck', 1);
$CurrentCheckNum = Yii::app()->getUser()->getState('CurrentCheckNum', 1);
$count_checks = 0;
$array_checks = array();
foreach ($_SESSION as $key => $value) {
if(!(false===($pos=strpos($key,$StateKeyPrefix.'CartID')))) {
$count_checks ++;
$key_checks = substr($key,strlen($StateKeyPrefix)+6);
$array_checks[$count_checks] = $key_checks;
}
}
$CurrentCheckNum ++ ;
if ($CurrentCheckNum > $count_checks) $CurrentCheckNum = 1;
Yii::app()->getUser()->setState('CurrentCheckNum', $CurrentCheckNum);
if ($count_checks > 0)
Yii::app()->getUser()->setState('CurrentCheck', $array_checks[$CurrentCheckNum]);
else
Yii::app()->getUser()->setState('CurrentCheck', 1);
if ($count_checks == 0 ) $count_checks = 1;
if ($CurrentCheckNum > $count_checks ) $count_checks = $CurrentCheckNum;
$data['curr'] = $CurrentCheckNum.'/'.$count_checks;
$data['check'] = $this->ViewCheck();
$data['total'] = number_format(Yii::app()->shoppingCart->getCost(),2,'.',' ');
Yii::app()->end(json_encode($data));
}
else {
throw new CHttpException(404,'The requested page does not exist.');
}
}
public function ViewCheck() {
$output = '';
$positions = Yii::app()->shoppingCart->getPositions();
foreach($positions as $position => $product) {
if(@$model = Products::model()->findByPk($product['product_id'])) {
$output .= '
<div class="check-products-line clearfix" data-line="'.$product['product_id'].'" id="'.$product['product_id'].'">
<div class="col-sm-6 title">'.$model->product_name.'</div>
<div class="col-sm-2 quantity">'.$product->getQuantity().'</div>
<div class="col-sm-2 roll">'.$product->getRoll().'</div>
<div class="col-sm-2 price">'.number_format($product->getPrice(),2,'.',' ').' </div>
<input class="balance" type="hidden" value="'.$model->product_quantity.'">
</div>
';
}
}
return $output;
}
}
<file_sep><tr class="rowP1">
<td class="l-column">
<?php echo CHtml::activeHiddenField($model, "[$index]product_id", array('class'=>'id-field'))?>
<?php //echo CHtml::activeTextField($model, "[$index]product_name", array('onblur'=>'getProductsByName($(this))'))?>
<?php $this->widget('zii.widgets.jui.CJuiAutoComplete', array(
'attribute'=>'product_name',
'model'=>$model,
'sourceUrl'=>array('site/products_list'),
'name'=>'product_name',
'options'=>array(
'minLength'=>'3',
),
'htmlOptions'=>array(
'size'=>25,
'maxlength'=>45,
'onblur'=>'loadProductInfo($(this));',
),
)); ?>
<?php //echo CHtml::activeDropDownList($model,"[$index]product_id", Yii::app()->controller->getAvaliableProducts(), array('empty'=>'Выбрать товар', 'class'=>'id-field', 'onchange'=>'getCProductInfo($(this));')); ?>
</td>
<td class="m-column">
<?php echo CHtml::activeDropDownList($model, "[$index]product_color", Yii::app()->controller->getColorsList(), array('class'=>'color-field'))?>
<!--<br /><span class="color-field" ></span>-->
</td>
<td class="m-column">
<?php echo CHtml::activeDropDownList($model, "[$index]product_measurement", Yii::app()->controller->getMeasurementUnitsList(), array('class'=>'measurement-field'))?>
<!--<br /><span class="measurement-field" ></span>-->
</td>
<td class="l-column">
<?php echo CHtml::activeTextField($model, "[$index]product_quantity_details", array('class'=>'last-field1 align-center half-field','onblur' => 'formatRolls($(this)); getCSubTotal($(this)); invoiceCTotal();')); ?>
= <?php echo CHtml::activeTextField($model, "[$index]product_quantity", array('size'=>1,'class'=>'nulled-input quantity-field quarter-field','readonly'=>true))?>
</td>
<td class="s-column">
<?php echo CHtml::activeTextField($model, "[$index]product_roll",array('value'=>0,'class'=>'rolls-field align-center','size'=>4))?>
</td>
<td class="m-column">
<?php echo CHtml::activeTextField($model, "[$index]product_price",array('value'=>0,'class'=>'price-field align-center','size'=>5,'onblur' => 'getCSubTotal($(this)); invoiceCTotal();'))?>
</td>
<td class="m-column">
<?php echo CHtml::activeTextField($model, "[$index]product_total",array('value'=>0,'class'=>'client_invoice_subtotal align-center','size'=>5,'onblur' => 'invoiceCTotal();'))?>
</td>
<td class="align-center">
<a onclick="deleteRow($(this), 1);" class="delete-row" ><img src="<?php echo Yii::app()->request->baseUrl.'/themes/front/images/delete.png'; ?>" /></a>
</td>
</tr>
<tr>
<td colspan="9" class="align-right product-additional-info">Информация о товаре</td>
</tr>
<script type="text/javascript" >
$('.last-field1').last().on('blur', function(){
$('.tasks-add1').trigger('click');
});
</script><file_sep><?php
class SiteController extends Controller
{
/**
* Declares class-based actions.
*/
public function actions()
{
return array(
// captcha action renders the CAPTCHA image displayed on the contact page
'captcha'=>array(
'class'=>'CCaptchaAction',
'backColor'=>0xFFFFFF,
),
'clients_list'=>array(
'class'=>'application.extensions.EAutoCompleteAction',
'model'=>'Clients', //My model's class name
'attribute'=>'client_name', //The attribute of the model i will search
),
'providers_list'=>array(
'class'=>'application.extensions.EAutoCompleteAction',
'model'=>'Providers', //My model's class name
'attribute'=>'provider_name', //The attribute of the model i will search
),
'sellers_list'=>array(
'class'=>'application.extensions.EAutoCompleteAction',
'model'=>'Users', //My model's class name
'attribute'=>'username', //The attribute of the model i will search
),
'products_list'=>array(
'class'=>'application.extensions.EAutoCompleteAction',
'model'=>'Products', //My model's class name
'attribute'=>'product_name', //The attribute of the model i will search
),
'products_list_user'=>array(
'class'=>'application.extensions.EAutoCompleteAction',
'model'=>'Products', //My model's class name
'attribute'=>'product_name', //The attribute of the model i will search
),
);
}
/**Yii::app()->controller->getUserProducts(Yii::app()->user->id)
* This is the default 'index' action that is invoked
* when an action is not explicitly requested by users.
*/
public function actionIndex()
{
$this->redirect($this->createUrl('/checks'));
$models = array();
$models1 = array();
if(!empty($_POST['Task']))
{
foreach($_POST['Task'] as $taskData){
$model = new ExpectedProducts();
$model->setAttributes($taskData);
if($model->validate())
$models[] = $model;
}
}
else{
$models[] = new ExpectedProducts();
$models1[] = new InvoicesProducts();
}
$model=new ProvidersInvoices;
$clients=new Clients;
$providers=new Providers;
$this->render('index', array(
'models' => $models,
'models1' => $models1,
'model' => $model,
'clients' => $clients,
'providers' => $providers,
));
}
/**
* This is the action to handle external exceptions.
*/
public function actionError()
{
if($error=Yii::app()->errorHandler->error)
{
if(Yii::app()->request->isAjaxRequest)
echo $error['message'];
else
$this->render('error', $error);
}
}
public function actionField($index)
{
$model = new ExpectedProducts();
$this->renderPartial('_rowP', array(
'model' => $model,
'index' => $index,
));
}
public function actionField1($index)
{
$model = new InvoicesProducts();
$this->renderPartial('_rowC', array(
'model' => $model,
'index' => $index,
));
}
public function filters()
{
return array(
'ajaxOnly + field',
'ajaxOnly + field1'
);
}
public function actionAutocompleteUserPr() {
$res = '';
if(isset($_GET['term'])){
$res .= $_GET['term'];
}
$product_criteria = new CDbCriteria;
$product_criteria->with = array('product'=>array('select'=>'products.product_name'));
$product_criteria->addCondition('user_id=:user_id');
$product_criteria->addCondition('product.product_name LIKE :product_name');
$product_criteria->params=array(
':user_id' => Yii::app()->user->id,
':product_name' => '%'.$res.'%',
);
$same_products = ProductsUsers::model()->findall($product_criteria);
//
$same_productsList = array();
$same_productsList[] = '';
foreach ($same_products as $same_product) {
if ($same_product->product_quantity > 0) {
$product = Products::model()->findByPk($same_product->product_id);
if ($product && ($product->product_status == 1) )
$same_productsList[$same_product->product_id] = $same_product->product->product_name;
}
}
echo CJSON::encode($same_productsList);
Yii::app()->end();
}
public function actionAutocompleteUserJs()
{
$product_criteria=new CDbCriteria;
$product_criteria->condition='user_id=:user_id';
$product_criteria->params=array(
':user_id'=> Yii::app()->user->id,
);
$same_products = ProductsUsers::model()->findall($product_criteria);
$same_productsList = array();
foreach ($same_products as $same_product) {
if ($same_product->product_quantity > 0) {
$product = Products::model()->findByPk($same_product->product_id);
if ($product && ($product->product_status == 1) )
$same_productsList[] = array('id' => (int) $same_product->product_id, 'name' => $same_product->product->product_name, 'code' => (int) $same_product->product->product_code, 'quantity' => (int) $same_product->product_quantity, 'roll' => (int) $same_product->product_roll, 'color' => (int) $same_product->product->product_color, 'measurement' => (int) $same_product->product->product_measurement, 'price_b' => (int) $same_product->product->product_price_b, 'price' => (int) $same_product->product->product_price);
}
}
echo CJSON::encode($same_productsList);
Yii::app()->end();
}
public function actionAutocompleteClientsList(){
$client_criteria = new CDbCriteria;
$client_criteria->addInCondition('client_user_id', array(Yii::app()->user->id,'2'));
$clients = Clients::model()->findall($client_criteria);
$clientsLc = array();
foreach ($clients as $client) {
$clientsLc[] = array('id' => (int) $client->client_id, 'name' => $client->client_name, 'debt' => (int) $client->client_debt, 'category' => (int) $client->client_category, 'comment' => $client->client_comment);
}
echo CJSON::encode($clientsLc);
Yii::app()->end();
}
}
<file_sep><?php
/* @var $this LoadProductsController */
/* @var $data History */
?>
<div class="view">
<b><?php echo CHtml::encode($data->getAttributeLabel('record_id')); ?>:</b>
<?php echo CHtml::link(CHtml::encode($data->record_id), array('view', 'id'=>$data->record_id)); ?>
<br />
<b><?php echo CHtml::encode($data->getAttributeLabel('record_group')); ?>:</b>
<?php echo CHtml::encode($data->record_group); ?>
<br />
<b><?php echo CHtml::encode($data->getAttributeLabel('record_item_id')); ?>:</b>
<?php echo CHtml::encode($data->record_item_id); ?>
<br />
<b><?php echo CHtml::encode($data->getAttributeLabel('record_datetime')); ?>:</b>
<?php echo CHtml::encode($data->record_datetime); ?>
<br />
<b><?php echo CHtml::encode($data->getAttributeLabel('record_content')); ?>:</b>
<?php echo CHtml::encode($data->record_content); ?>
<br />
</div><file_sep><?php
class ProvidersInvoicesController extends Controller
{
/**
* @var string the default layout for the views. Defaults to '//layouts/column2', meaning
* using two-column layout. See 'protected/views/layouts/column2.php'.
*/
public $layout='//layouts/column1';
/**
* @return array action filters
*/
public function filters()
{
return array(
'accessControl', // perform access control for CRUD operations
'postOnly + delete', // we only allow deletion via POST request
);
}
/**
* Specifies the access control rules.
* This method is used by the 'accessControl' filter.
* @return array access control rules
*/
public function accessRules()
{
return array(
array('allow', // allow authenticated user to perform 'create' and 'update' actions
'actions'=>array('index','update'),
'users'=>array('@'),
),
array('allow', // allow admin user to perform 'admin' and 'delete' actions
'actions'=>array('index','create','delete'),
'users'=>array('admin'),
),
array('deny', // deny all users
'users'=>array('*'),
),
);
}
/**
* Creates a new model.
* If creation is successful, the browser will be redirected to the 'view' page.
*/
public function actionCreate()
{
$model=new ProvidersInvoices;
// Uncomment the following line if AJAX validation is needed
if(isset($_POST['ProvidersInvoices']))
{
//$this->performAjaxValidation($model);
$model->attributes=$_POST['ProvidersInvoices'];
$model->invoice_datetime = date('Y-m-d H:i:s');
if($model->save()){
if(isset($_POST['ExpectedProducts']))
{
foreach($_POST['ExpectedProducts'] as $index => $product){
$product_model=new ExpectedProducts;
$product_model->attributes = $product;
$product_model->invoice_id = $model->invoice_id;
$product_model->product_color = 0;
$product_model->product_measurement = 1;
if ($product_model->product_measurement == 3 ) {
$product_model->product_quantity_yard = $product_model->product_quantity;
$product_model->product_quantity = $product_model->product_quantity * 0.9144;
$product_model->product_measurement = 2;
}
/*
$criteria_color=new CDbCriteria;
$criteria_color->condition='color_name=:color_name';
$criteria_color->params=array(':color_name'=> $product_model->product_color);
$color = Colors::model()->find($criteria_color);
if(isset($color->color_id)){
$product_model->product_color = $color->color_id;
} else{
$color_model = new Colors;
$color_model->color_name = $product_model->product_color;
$color_model->save();
$product_model->product_color = $color_model->color_id;
}
*/
if(!empty($product_model->product_name))
$product_model->save();
}
}
if(isset($_POST['ProvidersInvoices']['provider_debt']))
{
Providers::model()->updateByPk($model->invoice_provider_id,array('provider_debt'=>$_POST['ProvidersInvoices']['provider_debt'] + $model->invoice_summ));
}
$this->redirect(array('index'));
} else {
//var_dump($model);
}
}
$this->render('update',array(
'model'=>$model,
));
}
/**
* Updates a particular model.
* If update is successful, the browser will be redirected to the 'view' page.
* @param integer $id the ID of the model to be updated
*/
public function actionUpdate($id)
{
$model=$this->loadModel($id);
//var_dump($model);
$criteria=new CDbCriteria;
$criteria->condition='invoice_id=:invoice_id';
$criteria->params=array(':invoice_id'=>$id);
$products = ExpectedProducts::model()->findAll($criteria);
// Uncomment the following line if AJAX validation is needed
// $this->performAjaxValidation($model);
if(isset($_POST['ProvidersInvoices']))
{
$model->attributes=$_POST['ProvidersInvoices'];//var_dump($_POST['ProvidersInvoices']);
if($model->invoice_status == 2){
foreach($products as $product){
$product_model = new Products;
$product_model->attributes = $product->attributes;//var_dump($product->attributes);
$product_model->product_status = 1;
$product_model->product_sales = 0;
$product_criteria=new CDbCriteria;
/*
$product_criteria->condition='product_name=:product_name AND product_measurement=:product_measurement AND product_color=:product_color';
$product_criteria->params=array(
':product_name'=> $product_model->product_name,
':product_measurement'=> $product_model->product_measurement,
':product_color'=> $product_model->product_color,
);
*/
$product_criteria->condition='product_code=:product_code';
$product_criteria->params=array(
':product_code'=> $product_model->product_code,
);
$same_products = Products::model()->find($product_criteria);
if($same_products){
$same_products->saveCounters(array('product_quantity'=>+$product_model->product_quantity));
$same_products->saveCounters(array('product_roll'=>+$product_model->product_roll));
// найден такой продукт
$stockusers = new ProductsUsers;
$stockusers->product_id = $same_products->product_id;
$stockusers->user_id = $model->invoice_receiver;
$stockusers->product_quantity = $product_model->product_quantity;
$stockusers->product_roll = $product_model->product_roll;
$stockusers_criteria=new CDbCriteria;
$stockusers_criteria->condition='product_id=:product_id AND user_id=:user_id ';
$stockusers_criteria->params=array(
':product_id'=> $same_products->product_id,
':user_id'=> $model->invoice_receiver,
);
$stockusers_products = ProductsUsers::model()->find($stockusers_criteria);
if($stockusers_products){
$stockusers_products->saveCounters(array('product_quantity'=>+$product_model->product_quantity));
$stockusers_products->saveCounters(array('product_roll'=>+$product_model->product_roll));
} else {
$stockusers->save();
}
$provider_for_history = Providers::model()->findByPk($model->invoice_provider_id);
$seller_for_history = Users::model()->findByPk($model->invoice_receiver);
$broker_for_history = Brokers::model()->findByPk($model->invoice_broker_id);
$record = new History;
$record->record_datetime = date('Y-m-d H:i:s');
$record->record_group = 'product';
$record->record_item_id = $same_products->product_id;
$record->record_content = 'Продавец - '.$seller_for_history->username.'. Получено ' . $product_model->product_quantity . '. Поставщик - ' . CHtml::link($provider_for_history->provider_name, array('/providers/update', 'id'=>$model->invoice_provider_id)) . '. Накладная - ' . CHtml::link($model->invoice_code, array('/providersInvoices/update', 'id'=>$model->invoice_id)) . '. Брокер - ' . CHtml::link($broker_for_history->broker_name, array('/broker/update', 'id'=>$model->invoice_broker_id)) . ' затраты на брокера - ' . $model->invoice_broker_extra;
$record->save();
}
else {
$product_model->save();
// найден такой продукт
$stockusers = new ProductsUsers;
$stockusers->product_id = $product_model->product_id;
$stockusers->user_id = $model->invoice_receiver;
$stockusers->product_quantity = $product_model->product_quantity;
$stockusers->product_roll = $product_model->product_roll;
$stockusers_criteria=new CDbCriteria;
$stockusers_criteria->condition='product_id=:product_id AND user_id=:user_id ';
$stockusers_criteria->params=array(
':product_id'=> $product_model->product_id,
':user_id'=> $model->invoice_receiver,
);
$stockusers_products = ProductsUsers::model()->find($stockusers_criteria);
if($stockusers_products){
$stockusers_products->saveCounters(array('product_quantity'=>+$product_model->product_quantity));
$stockusers_products->saveCounters(array('product_roll'=>+$product_model->product_roll));
} else {
$stockusers->save();
}
$provider_for_history = Providers::model()->findByPk($model->invoice_provider_id);
$seller_for_history = Users::model()->findByPk($model->invoice_receiver);
$broker_for_history = Brokers::model()->findByPk($model->invoice_broker_id);
$record = new History;
$record->record_datetime = date('Y-m-d H:i:s');
$record->record_group = 'product';
$record->record_item_id = $product_model->product_id;
$record->record_content = 'Продавец - '.$seller_for_history->username.'. Получено ' . $product_model->product_quantity . '. Поставщик - ' . CHtml::link($provider_for_history->provider_name, array('/providers/update', 'id'=>$model->invoice_provider_id)) . '. Накладная - ' . CHtml::link($model->invoice_code, array('/providersInvoices/update', 'id'=>$model->invoice_id)) . '. Брокер - ' . CHtml::link($broker_for_history->broker_name, array('/broker/update', 'id'=>$model->invoice_broker_id)) . ' затраты на брокера - '.$model->invoice_broker_extra;
$record->save();
}
}
}
if($model->save()) {
$this->redirect(array('index'));
}
else {
}
}
$this->render('update',array(
'model'=>$model,
'products'=>$products,
));
}
/**
* Deletes a particular model.
* If deletion is successful, the browser will be redirected to the 'admin' page.
* @param integer $id the ID of the model to be deleted
*/
public function actionDelete($id)
{
$criteria = new CDbCriteria;
$criteria->condition = 'invoice_id = :invoice_id';
$criteria->params=array(':invoice_id'=> $id,);
ExpectedProducts::model()->deleteAll($criteria);
$this->loadModel($id)->delete();
// if AJAX request (triggered by deletion via admin grid view), we should not redirect the browser
if(!isset($_GET['ajax']))
$this->redirect(isset($_POST['returnUrl']) ? $_POST['returnUrl'] : array('index'));
}
/**
* Lists all models.
*/
public function actionIndex()
{
$model=new ProvidersInvoices('search');
$model->unsetAttributes(); // clear any default values
$is_admin = (isset(Yii::app()->user->name) && Yii::app()->user->name == 'admin')?true:false;
if(!$is_admin)
$_GET['ProvidersInvoices']['invoice_receiver'] = Yii::app()->user->id;
if(isset($_GET['ProvidersInvoices']))
$model->attributes=$_GET['ProvidersInvoices'];
$this->render('admin',array(
'model'=>$model,
));
}
/**
* Returns the data model based on the primary key given in the GET variable.
* If the data model is not found, an HTTP exception will be raised.
* @param integer $id the ID of the model to be loaded
* @return ProvidersInvoices the loaded model
* @throws CHttpException
*/
public function loadModel($id)
{
$model=ProvidersInvoices::model()->with('invoiceProvider')->findByPk($id);
if($model===null)
throw new CHttpException(404,'The requested page does not exist.');
return $model;
}
/**
* Performs the AJAX validation.
* @param ProvidersInvoices $model the model to be validated
*/
protected function performAjaxValidation($model)
{
if(isset($_POST['ajax']) && $_POST['ajax']==='providers-invoices-form')
{
echo CActiveForm::validate($model);
Yii::app()->end();
}
}
}
<file_sep><?php /* @var $this Controller */ ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="language" content="en" />
<link rel="stylesheet" type="text/css" href="<?php echo Yii::app()->request->baseUrl; ?>/themes/front/css/smoothness/jquery-ui-1.10.4.custom.min.css" media="all" />
<link rel="stylesheet" type="text/css" href="<?php echo Yii::app()->request->baseUrl; ?>/themes/front/css/bootstrap.css" media="all" />
<link rel="stylesheet" type="text/css" href="<?php echo Yii::app()->request->baseUrl; ?>/themes/front/css/bootstrap-cerulean.min.css" media="all" />
<link rel="stylesheet" type="text/css" href="<?php echo Yii::app()->request->baseUrl; ?>/themes/front/css/main.css" media="all" />
<script type="text/javascript" src="<?php echo Yii::app()->request->baseUrl; ?>/themes/front/js/jquery.min.js" ></script>
<script type="text/javascript" src="<?php echo Yii::app()->request->baseUrl; ?>/themes/front/js/jquery-ui.min.js" ></script>
<script type="text/javascript" src="<?php echo Yii::app()->request->baseUrl; ?>/themes/front/js/bootstrap.min.js" ></script>
<script type="text/javascript" src="<?php echo Yii::app()->request->baseUrl; ?>/themes/front/js/scripts.js" ></script>
<script type="text/javascript" src="<?php echo Yii::app()->request->baseUrl; ?>/themes/front/js/jquery-ui-timepicker-addon.js" ></script>
<title><?php echo CHtml::encode($this->pageTitle); ?></title>
</head>
<body>
<div class="container">
<div class="top-tabs-menu" >
<?php $this->widget('ext.zii.widgets.Menu',array(
'items'=>array(
array('label'=>'Главная', 'url'=>array('/site')),
array('label'=>'Клиенты', 'url'=>array('/clients')),
array('label'=>'Поставщики', 'url'=>array('/providers')),
array('label'=>'Продавцы', 'url'=>array('/users')),
array('label'=>'Накладные', 'url'=>array('/invoices')),
array('label'=>'Склад', 'url'=>array('/products')),
array('label'=>'Возвраты', 'url'=>array('/returns')),
array('label'=>'Отчет', 'url'=>array('/report')),
array('label'=>'Резервные копии', 'url'=>array('/jbackup')),
array('label'=>'Вход', 'url'=>array('/user/login'), 'visible'=>Yii::app()->user->isGuest),
array('label'=>'Выход ('.Yii::app()->user->name.')', 'url'=>array('/user/logout'), 'visible'=>!Yii::app()->user->isGuest),
),
'htmlOptions'=>array('class'=>'nav nav-tabs'),
'lastItemCssClass'=>'pull-right',
)); ?>
</div>
<div class="clear-fix" ></div>
<?php echo $content; ?>
<div class="clear-fix"></div>
</div>
</body>
</html><file_sep><?php
/**
* This is the model class for table "{{stock_products}}".
*
* The followings are the available columns in table '{{stock_products}}':
* @property integer $product_id
* @property integer $invoice_id
* @property string $product_name
* @property integer $product_roll
* @property integer $product_color
* @property integer $product_measurement
* @property string $product_quantity
* @property string $product_price
* @property string $product_total
*
* The followings are the available model relations:
* @property StockInvoices $invoice
*/
class StockProducts extends CActiveRecord
{
/**
* @return string the associated database table name
*/
public function tableName()
{
return '{{stock_products}}';
}
/**
* @return array validation rules for model attributes.
*/
public function rules()
{
// NOTE: you should only define rules for those attributes that
// will receive user inputs.
return array(
array('invoice_id, product_real_id,product_name, product_color, product_measurement, product_quantity, product_price, product_total', 'required'),
array('invoice_id, product_real_id, product_roll, product_color, product_measurement', 'numerical', 'integerOnly'=>true),
array('product_name', 'length', 'max'=>255),
array('product_quantity, product_price, product_total', 'length', 'max'=>15),
// The following rule is used by search().
// @todo Please remove those attributes that should not be searched.
array('product_id, invoice_id, product_name, product_roll, product_color, product_measurement, product_quantity, product_price, product_total', 'safe', 'on'=>'search'),
);
}
/**
* @return array relational rules.
*/
public function relations()
{
// NOTE: you may need to adjust the relation name and the related
// class name for the relations automatically generated below.
return array(
'invoice' => array(self::BELONGS_TO, 'StockInvoices', 'invoice_id'),
'color' => array(self::BELONGS_TO, 'Colors', 'product_color'),
'measurement' => array(self::BELONGS_TO, 'MeasurementUnits', 'product_measurement'),
);
}
/**
* @return array customized attribute labels (name=>label)
*/
public function attributeLabels()
{
return array(
'product_id' => 'Product',
'invoice_id' => 'Invoice',
'product_name' => 'Product Name',
'product_roll' => 'Product Roll',
'product_color' => 'Product Color',
'product_measurement' => 'Product Measurement',
'product_quantity' => 'Product Quantity',
'product_price' => 'Product Price',
'product_total' => 'Product Total',
);
}
/**
* Retrieves a list of models based on the current search/filter conditions.
*
* Typical usecase:
* - Initialize the model fields with values from filter form.
* - Execute this method to get CActiveDataProvider instance which will filter
* models according to data in model fields.
* - Pass data provider to CGridView, CListView or any similar widget.
*
* @return CActiveDataProvider the data provider that can return the models
* based on the search/filter conditions.
*/
public function search()
{
// @todo Please modify the following code to remove attributes that should not be searched.
$criteria=new CDbCriteria;
$criteria->compare('product_id',$this->product_id);
$criteria->compare('invoice_id',$this->invoice_id);
$criteria->compare('product_name',$this->product_name,true);
$criteria->compare('product_roll',$this->product_roll);
$criteria->compare('product_color',$this->product_color);
$criteria->compare('product_measurement',$this->product_measurement);
$criteria->compare('product_quantity',$this->product_quantity,true);
$criteria->compare('product_price',$this->product_price,true);
$criteria->compare('product_total',$this->product_total,true);
return new CActiveDataProvider($this, array(
'criteria'=>$criteria,
));
}
/**
* Returns the static model of the specified AR class.
* Please note that you should have this exact method in all your CActiveRecord descendants!
* @param string $className active record class name.
* @return StockProducts the static model class
*/
public static function model($className=__CLASS__)
{
return parent::model($className);
}
}
<file_sep><?php
/* @var $this StockProductsController */
/* @var $data StockProducts */
?>
<div class="view">
<b><?php echo CHtml::encode($data->getAttributeLabel('product_id')); ?>:</b>
<?php echo CHtml::link(CHtml::encode($data->product_id), array('view', 'id'=>$data->product_id)); ?>
<br />
<b><?php echo CHtml::encode($data->getAttributeLabel('invoice_id')); ?>:</b>
<?php echo CHtml::encode($data->invoice_id); ?>
<br />
<b><?php echo CHtml::encode($data->getAttributeLabel('product_name')); ?>:</b>
<?php echo CHtml::encode($data->product_name); ?>
<br />
<b><?php echo CHtml::encode($data->getAttributeLabel('product_roll')); ?>:</b>
<?php echo CHtml::encode($data->product_roll); ?>
<br />
<b><?php echo CHtml::encode($data->getAttributeLabel('product_color')); ?>:</b>
<?php echo CHtml::encode($data->product_color); ?>
<br />
<b><?php echo CHtml::encode($data->getAttributeLabel('product_measurement')); ?>:</b>
<?php echo CHtml::encode($data->product_measurement); ?>
<br />
<b><?php echo CHtml::encode($data->getAttributeLabel('product_quantity')); ?>:</b>
<?php echo CHtml::encode($data->product_quantity); ?>
<br />
<?php /*
<b><?php echo CHtml::encode($data->getAttributeLabel('product_price')); ?>:</b>
<?php echo CHtml::encode($data->product_price); ?>
<br />
<b><?php echo CHtml::encode($data->getAttributeLabel('product_total')); ?>:</b>
<?php echo CHtml::encode($data->product_total); ?>
<br />
*/ ?>
</div><file_sep><?php
/* @var $this StockInvoicesController */
/* @var $model StockInvoices */
$is_admin = (isset(Yii::app()->user->name) && Yii::app()->user->name == 'admin')?true:false;
if($model->isNewRecord){
$this->menu=array(
array('label'=>'Список накладных', 'url'=>array('index')),
);
} else{
$this->menu=array(
array('label'=>'Список накладных', 'url'=>array('index')),
array('label'=>'Добавить накладную', 'url'=>array('create')),
);
}
?>
<a class="butlink" id="menu-icon" href="#"> Меню </a>
<div id="menu-popup">
<?php $this->widget('ext.zii.widgets.Menu',array(
'items'=>array(
array('label'=>'Главная', 'url'=>array('/site')),
array('label'=>'Чеки', 'url'=>array('/checksInvoices')),
array('label'=>'Клиенты', 'url'=>array('/clients')),
array('label'=>'Поставщики', 'url'=>array('/providers')),
array('label'=>'Продавцы', 'url'=>array('/users')),
array('label'=>'Накладные', 'url'=>array('/invoices')),
array('label'=>'Склад', 'url'=>array('/products')),
array('label'=>'Возвраты', 'url'=>array('/returns')),
array('label'=>'Отчет', 'url'=>array('/report')),
array('label'=>'Резервные копии', 'url'=>array('/jbackup')),
array('label'=>'Вход', 'url'=>array('/user/login'), 'visible'=>Yii::app()->user->isGuest),
array('label'=>'Выход ('.Yii::app()->user->name.')', 'url'=>array('/user/logout'), 'visible'=>!Yii::app()->user->isGuest),
),
'htmlOptions'=>array('class'=>'nav-popup'),
'lastItemCssClass'=>'pull-right',
)); ?>
</div>
<?php if($model->isNewRecord){ ?>
<h2>Добавить накладную</h2>
<?php } else{ ?>
<h2>Изменить накладную - «<?php echo $model->invoice_id; ?>»</h2>
<?php } ?>
<?php if(!$model->isNewRecord) : ?>
<div class="form">
<?php $form=$this->beginWidget('CActiveForm', array(
'id'=>'providers-invoices-form',
'enableAjaxValidation'=>false,
)); ?>
<?php echo $form->errorSummary($model); ?>
<table class="table table-bordered table-striped table-hover" >
<tr>
<td class="m-column"><?php echo $form->labelEx($model,'invoice_code'); ?></td>
<td class="l-column"><?php echo $form->labelEx($model,'invoice_datetime'); ?></td>
<td><?php echo $form->labelEx($model,'invoice_sender'); ?></td>
<td><?php echo $form->labelEx($model,'invoice_receiver'); ?></td>
<td><?php echo $form->labelEx($model,'invoice_extra'); ?></td>
<td class="m-column"><?php echo $form->labelEx($model,'invoice_summ'); ?></td>
<td class="l-column"><?php echo $form->labelEx($model,'invoice_manager_comment'); ?></td>
<td class="m-column"><?php echo $form->labelEx($model,'invoice_status'); ?></td>
</tr>
<?php if($is_admin) : ?>
<tr>
<td class="m-column"><?php echo $form->textField($model,'invoice_code', array('size'=>8)); ?></td>
<td class="l-column"><?php echo $form->textField($model,'invoice_datetime', array('class'=>'datepicker')); ?></td>
<td class="m-column"><?php echo $form->dropDownList($model,'invoice_sender', Yii::app()->controller->GetSellers()); ?></td>
<td class="m-column"><?php echo $form->dropDownList($model,'invoice_receiver', Yii::app()->controller->GetSellers()); ?></td>
<td class="l-column"><?php echo $form->textField($model,'invoice_extra'); ?></td>
<td class="m-column"><?php echo $form->textField($model,'invoice_summ',array('size'=>8,'maxlength'=>15)); ?></td>
<td class="l-column"><?php echo $form->textField($model,'invoice_manager_comment'); ?></td>
<td class="m-column"><?php echo ($model->invoice_status!=2)?$form->dropDownList($model,'invoice_status',Yii::app()->controller->invoices_conditions):Yii::app()->controller->invoices_conditions[$model->invoice_status]; ?></td>
</tr>
<?php else : ?>
<tr>
<td class="m-column"><?php echo $model->invoice_code; ?></td>
<td class="l-column"><?php echo $model->invoice_datetime; ?></td>
<td class="m-column"><?php echo $model->invoiceSender->username; ?></td>
<td class="m-column"><?php echo $model->invoiceReceiver->username; ?></td>
<td class="l-column"><?php echo $model->invoice_extra; ?></td>
<td class="m-column"><?php echo $model->invoice_summ; ?></td>
<td class="l-column"><?php echo $model->invoice_manager_comment; ?></td>
<td class="m-column"><?php echo ($model->invoice_status!=2)?$form->dropDownList($model,'invoice_status',Yii::app()->controller->invoices_conditions):Yii::app()->controller->invoices_conditions[$model->invoice_status]; ?></td>
</tr>
<?php endif; ?>
</table>
<?php echo CHtml::submitButton($model->isNewRecord ? 'Создать' : 'Обновить', array('class'=>'btn btn-primary btn-sm')); ?>
<?php $this->endWidget(); ?>
</div>
<?php if(!$model->isNewRecord){ ?>
<h3>Товары</h3>
<div class="m-form" >
<table class="table table-bordered table-striped table-hover" >
<tr>
<td><b>Наименование</</td>
<td class="i-column"><b>Количество</b></td>
<!-- <td class="m-column"><b>Рулоны</b></td>-->
<td class="m-column"><b>Мера</b></td>
<td class="m-column"><b>Цена</b></td>
<td class="m-column"><b>Всего</b></td>
</tr>
<?php
$total = 0;
foreach($products as $product){ ?>
<?php $total += $product->product_price; ?>
<tr>
<td><?php echo CHtml::link($product->product_name, array('products/update', 'id'=>$product->product_real_id)); ?></td>
<td class="i-column"><?php echo $product->product_quantity; ?></td>
<!-- <td class="m-column"><?php echo $product->product_roll; ?></td>-->
<td class="m-column"><?php echo $product->measurement->unit_name; ?></td>
<td class="m-column"><?php echo $product->product_price; ?></td>
<td class="m-column"><?php echo $product->product_total; ?></td>
</tr>
<?php } ?>
</table>
</div>
<?php } ?>
<?php else: ?>
<?php
$providers=new Providers;
if(isset($_POST['StockProducts']))
{
foreach($_POST['StockProducts'] as $index => $product){
if(!empty($product['product_real_id'])) {
$product_model=new StockProducts;
$product_model->attributes = $product;
$product_model->product_color = 0;
$product_model->invoice_id = $model->invoice_id;
$models[] = $product_model;
}
}
} else {
$models[] = new StockProducts();
}
?>
<div class="form" >
<div class="col-lg-12 well">
<?php
if (isset($_POST['StockProducts']['Errors']))
echo '<div class="error">Неверное кол-во товара!</div><br/>';
?>
<?php $form=$this->beginWidget('CActiveForm', array(
'id'=>'providers-invoices-form',
'action'=>'/stockInvoices/create',
'enableAjaxValidation'=>false,
)); ?>
<div class="col-lg-4" >
<p><?php echo $form->textField($model,'invoice_code', array('size'=>10,'placeholder'=>'Код')); ?></p>
</div>
<div class="col-lg-4" >
<p class="align-right">Продавец сдал:
<?php
echo $form->dropDownList($model,'invoice_sender',Yii::app()->controller->getSellers(),array('disabled'=>'disabled', 'empty' => 'Выбрать продавца'));
?>
</p>
</div>
<div class="col-lg-4" >
<p class="align-right">Продавец получил:
<?php echo $form->dropDownList($model,'invoice_receiver',
Yii::app()->controller->getSellers(),
array('empty' => 'Выбрать продавца')); ?>
</p>
</div>
<div class="clearfix" ></div>
<div class="form" >
<table class="table table-bordered table-striped table-hover" >
<thead>
<tr>
<th class="align-center">Наименование</th>
<th class="i-column">Мера</th>
<th class="l-column">Кол-во</th>
<th class="m-column">Цена <br /> (за ед.)</th>
<th class="m-column">Цена <br /> (итог.)</th>
<th class="s-column"></th>
</tr>
</thead>
<tbody class="tasks">
<?php for($i = 0; $i < count($models); $i++):?>
<?php $this->renderPartial('_rowP', array(
'model' => $models[$i],
'index' => $i,
))?>
<?php endfor; ?>
</tbody>
<tfoot>
<tr>
<td colspan="5" class="align-right">Доп. затраты: </td>
<td class="s-column"><?php echo $form->textField($model,'invoice_extra'); ?></td>
</tr>
<tr>
<td colspan="5" class="align-right">Сумма накладной: </td>
<td class="s-column"><?php echo $form->textField($model,'invoice_summ',array('maxlength'=>15,'id'=>'ProvidersInvoices_invoice_summ','value'=>0,'class'=>'nulled-input','readonly'=>true,'size'=>5)); ?></td>
</tr>
<tr>
<td class="align-right">Комментарии к накладной: </td>
<td colspan="5"><?php echo $form->textField($model,'invoice_manager_comment', array('value'=>'-', 'class'=>'full-width')); ?></td>
</tr>
</tfoot>
</table>
<?php echo $form->hiddenField($model,'invoice_status', array('value'=>0)); ?>
<?php echo CHtml::submitButton('Провести', array('class'=>'btn btn-primary pull-right btn-sm'))?>
<?php echo CHtml::button('+', array('class' => 'tasks-add btn btn-primary pull-right btn-sm', 'onclick' => 'addRowStock();'))?>
</div>
<?php $this->endWidget(); ?>
</div>
<div class="clearfix" ></div>
</div>
<?php endif; ?>
<file_sep><?php
/* @var $this ReportsController */
/* @var $dataProvider CActiveDataProvider */
$this->breadcrumbs=array(
'Products',
);
$this->menu=array(
array('label'=>'Create Products', 'url'=>array('create')),
array('label'=>'Manage Products', 'url'=>array('admin')),
);
?>
<h1>Products</h1>
<?php $this->widget('zii.widgets.grid.CGridView', array(
'id'=>'invoice_report_grid',
'dataProvider'=>$model->search(),
'columns'=>array(
array(
'name'=>'invoice_id',
'headerHtmlOptions'=>array('class'=>'s-column active'),
'htmlOptions'=>array('class'=>'s-column'),
'type'=>'raw',
'value'=>'CHtml::link("$data->invoice_id",array("'.Yii::app()->controller->id.'/update/$data->invoice_id",))',
),
array(
'name'=>'product_name',
'headerHtmlOptions'=>array('class'=>'m-column active'),
'htmlOptions'=>array('class'=>'m-column'),
),
array(
'name'=>'product_quantity',
'headerHtmlOptions'=>array('class'=>'l-column active'),
'htmlOptions'=>array('class'=>'l-column'),
'filter'=>'',
),
array(
'name'=>'product_price',
'headerHtmlOptions'=>array('class'=>'l-column active'),
'htmlOptions'=>array('class'=>'l-column'),
'filter'=>'',
),
array(
'name'=>'product_total',
'headerHtmlOptions'=>array('class'=>'l-column active'),
'htmlOptions'=>array('class'=>'l-column'),
'filter'=>'',
),
array(
'name'=>'return_status',
'headerHtmlOptions'=>array('class'=>'l-column active'),
'htmlOptions'=>array('class'=>'l-column'),
'filter'=>'',
),
)
)); ?>
<file_sep><?php
/* @var $this ProvidersInvoicesController */
/* @var $model ProvidersInvoices */
$is_admin = (isset(Yii::app()->user->name) && Yii::app()->user->name == 'admin')?true:false;
if($model->isNewRecord){
$this->menu=array(
array('label'=>'Список накладных', 'url'=>array('index')),
);
} else{
$this->menu=array(
array('label'=>'Список накладных', 'url'=>array('index')),
array('label'=>'Добавить накладную', 'url'=>array('create')),
);
}
?>
<a class="butlink" id="menu-icon" href="#"> Меню </a>
<div id="menu-popup">
<?php $this->widget('ext.zii.widgets.Menu',array(
'items'=>array(
array('label'=>'Главная', 'url'=>array('/site')),
array('label'=>'Чеки', 'url'=>array('/checksInvoices')),
array('label'=>'Клиенты', 'url'=>array('/clients')),
array('label'=>'Поставщики', 'url'=>array('/providers')),
array('label'=>'Продавцы', 'url'=>array('/users')),
array('label'=>'Накладные', 'url'=>array('/invoices')),
array('label'=>'Склад', 'url'=>array('/products')),
array('label'=>'Возвраты', 'url'=>array('/returns')),
array('label'=>'Отчет', 'url'=>array('/report')),
array('label'=>'Резервные копии', 'url'=>array('/jbackup')),
array('label'=>'Вход', 'url'=>array('/user/login'), 'visible'=>Yii::app()->user->isGuest),
array('label'=>'Выход ('.Yii::app()->user->name.')', 'url'=>array('/user/logout'), 'visible'=>!Yii::app()->user->isGuest),
),
'htmlOptions'=>array('class'=>'nav-popup'),
'lastItemCssClass'=>'pull-right',
)); ?>
</div>
<?php if($model->isNewRecord){ ?>
<h2>Добавить накладную</h2>
<?php } else{ ?>
<h2>Изменить накладную - «<?php echo $model->invoice_id; ?>»</h2>
<?php } ?>
<?php if(!$model->isNewRecord) : ?>
<div class="form">
<?php $form=$this->beginWidget('CActiveForm', array(
'id'=>'providers-invoices-form',
'enableAjaxValidation'=>false,
)); ?>
<?php echo $form->errorSummary($model); ?>
<table class="table table-bordered table-striped table-hover" >
<tr>
<td class="m-column"><?php echo $form->labelEx($model,'invoice_code'); ?></td>
<td class="l-column"><?php echo $form->labelEx($model,'invoice_datetime'); ?></td>
<td><?php echo $form->labelEx($model,'invoice_provider_id'); ?></td>
<td><?php echo $form->labelEx($model,'invoice_receiver'); ?></td>
<td><?php echo $form->labelEx($model,'invoice_extra'); ?></td>
<td class="m-column"><?php echo $form->labelEx($model,'invoice_summ'); ?></td>
<td class="l-column"><?php echo $form->labelEx($model,'invoice_manager_comment'); ?></td>
<td class="m-column"><?php echo $form->labelEx($model,'invoice_status'); ?></td>
</tr>
<?php if($is_admin) : ?>
<tr>
<td class="m-column"><?php echo $form->textField($model,'invoice_code', array('size'=>8)); ?></td>
<td class="l-column"><?php echo $form->textField($model,'invoice_datetime', array('class'=>'datepicker')); ?></td>
<td class="m-column"><?php echo $form->dropDownList($model,'invoice_provider_id', Yii::app()->controller->GetProviders()); ?></td>
<td class="m-column"><?php echo $form->dropDownList($model,'invoice_receiver', Yii::app()->controller->GetSellers()); ?></td>
<td class="l-column"><?php echo $form->textField($model,'invoice_extra'); ?></td>
<td class="m-column"><?php echo $form->textField($model,'invoice_summ',array('size'=>8,'maxlength'=>15)); ?></td>
<td class="l-column"><?php echo $form->textField($model,'invoice_manager_comment'); ?></td>
<td class="m-column"><?php echo ($model->invoice_status!=2)?$form->dropDownList($model,'invoice_status',Yii::app()->controller->invoices_conditions):Yii::app()->controller->invoices_conditions[$model->invoice_status]; ?></td>
</tr>
<?php else : ?>
<tr>
<td class="m-column"><?php echo $model->invoice_code; ?></td>
<td class="l-column"><?php echo $model->invoice_datetime; ?></td>
<td class="m-column"><?php echo $model->invoiceProvider->provider_name; ?></td>
<td class="m-column"><?php echo $model->invoiceUser->username; ?></td>
<td class="l-column"><?php echo $model->invoice_extra; ?></td>
<td class="m-column"><?php echo $model->invoice_summ; ?></td>
<td class="l-column"><?php echo $model->invoice_manager_comment; ?></td>
<td class="m-column"><?php echo ($model->invoice_status!=2)?$form->dropDownList($model,'invoice_status',Yii::app()->controller->invoices_conditions):Yii::app()->controller->invoices_conditions[$model->invoice_status]; ?></td>
</tr>
<?php endif; ?>
</table>
<?php
if ($model->invoice_status!=2)
echo CHtml::submitButton($model->isNewRecord ? 'Создать' : 'Обновить', array('class'=>'btn btn-primary btn-sm'));
?>
<?php $this->endWidget(); ?>
</div>
<?php if(!$model->isNewRecord){ ?>
<h3>Товары</h3>
<div class="m-form" >
<table class="table table-bordered table-striped table-hover" >
<tr>
<td><b>Штрих-код</</td>
<td><b>Наименование</</td>
<td class="i-column"><b>Количество</b></td>
<td class="m-column"><b>Рулоны</b></td>
<td class="m-column"><b>Мера</b></td>
<td class="m-column"><b>Цена</b></td>
<td class="m-column"><b>Всего</b></td>
</tr>
<?php
$total = 0;
foreach($products as $product){ ?>
<?php $total += $product->product_price; ?>
<tr>
<td class="i-column"><?php echo $product->product_code; ?></td>
<td><?php echo CHtml::link($product->product_name, array('expectedProducts/update', 'id'=>$product->product_id)); ?></td>
<td class="i-column"><?php echo $product->product_quantity; ?></td>
<td class="m-column"><?php echo $product->product_roll; ?></td>
<td class="m-column"><?php echo $product->measurement->unit_name; ?></td>
<td class="m-column"><?php echo $product->product_price; ?></td>
<td class="m-column"><?php echo $product->product_total; ?></td>
</tr>
<?php } ?>
</table>
</div>
<?php } ?>
<?php else: ?>
<?php if($is_admin) : ?>
<?php
$providers=new Providers;
$models[] = new ExpectedProducts();
?>
<div class="form" >
<div class="col-lg-12 well">
<?php $form=$this->beginWidget('CActiveForm', array(
'id'=>'providers-invoices-form',
'action'=>'/providersInvoices/create',
'enableAjaxValidation'=>false,
)); ?>
<div class="col-lg-4" >
<p><?php echo $form->textField($model,'invoice_code', array('size'=>10,'placeholder'=>'Код')); ?></p>
</div>
<div class="col-lg-4" >
<img src="/themes/front/images/loading.gif" class="provider-form-loader" />
<p class="align-right">Поставщик:
<?php echo $form->dropDownList($model,'invoice_provider_id',
Yii::app()->controller->getProviders(),
array('empty' => 'Выбрать поставщика')); ?>
<?php //echo $form->hiddenField($model,'invoice_provider_id'); ?>
<?php /*
$this->widget('zii.widgets.jui.CJuiAutoComplete', array(
'attribute'=>'provider_name',
'model'=>$providers,
'sourceUrl'=>array('site/providers_list'),
'name'=>'provider_name',
'options'=>array(
'minLength'=>'3',
),
'htmlOptions'=>array(
'size'=>25,
'maxlength'=>45,
'onblur'=>'getProviderId($(this).val());',
),
));
*/ ?>
</p>
</div>
<div class="col-lg-4" >
<p class="align-right">Продавец:
<?php echo $form->dropDownList($model,'invoice_receiver',
Yii::app()->controller->getSellers(),
array('empty' => 'Выбрать продавца')); ?>
</p>
</div>
<div class="clearfix" ></div>
<div class="form" >
<table class="table table-bordered table-striped table-hover" >
<thead>
<tr>
<th class="align-center">Штрих-код</th>
<th class="align-center">Наименование</th>
<th class="align-center">Категория</th>
<th class="i-column">Мера</th>
<th class="l-column">Кол-во</th>
<th class="m-column">Цена покупки <br /> (за ед.)</th>
<th class="m-column">Цена <br /> (за ед.)</th>
<th class="m-column">Цена <br /> (итог.)</th>
<th class="s-column"></th>
</tr>
</thead>
<tbody class="tasks">
<?php for($i = 0; $i < count($models); $i++):?>
<?php $this->renderPartial('_rowP', array(
'model' => $models[$i],
'index' => $i,
))?>
<?php endfor; ?>
</tbody>
<tfoot>
<tr>
<td colspan="8" class="align-right">Доп. затраты: </td>
<td class="s-column"><?php echo $form->textField($model,'invoice_extra'); ?></td>
</tr>
<tr>
<td colspan="8" class="align-right">Сумма накладной: </td>
<td class="s-column"><?php echo $form->textField($model,'invoice_summ',array('maxlength'=>15,'value'=>0,'class'=>'nulled-input','readonly'=>true,'size'=>5)); ?></td>
</tr>
<tr>
<td class="align-right">Комментарии к накладной: </td>
<td colspan="8"><?php echo $form->textField($model,'invoice_manager_comment', array('value'=>'-', 'class'=>'full-width')); ?></td>
</tr>
</tfoot>
</table>
<?php echo $form->hiddenField($model,'invoice_status', array('value'=>0)); ?>
<?php echo CHtml::submitButton('Провести', array('class'=>'btn btn-primary pull-right btn-sm'))?>
<?php echo CHtml::button('+', array('class' => 'tasks-add btn btn-primary pull-right btn-sm', 'onclick' => 'addRow();'))?>
</div>
<?php $this->endWidget(); ?>
</div>
<div class="clearfix" ></div>
</div>
<?php endif; ?>
<?php endif; ?>
<file_sep><?php
/**
* This is the model class for table "{{stock_invoices}}".
*
* The followings are the available columns in table '{{stock_invoices}}':
* @property integer $invoice_id
* @property string $invoice_code
* @property integer $invoice_sender
* @property integer $invoice_receiver
* @property string $invoice_datetime
* @property string $invoice_summ
* @property integer $invoice_extra
* @property string $invoice_manager_comment
* @property integer $invoice_status
*
* The followings are the available model relations:
* @property Users $invoiceSender
* @property Users $invoiceReceiver
* @property StockProducts[] $stockProducts
*/
class StockInvoices extends CActiveRecord
{
public $senderName;
public $receiverName;
/**
* @return string the associated database table name
*/
public function tableName()
{
return '{{stock_invoices}}';
}
/**
* @return array validation rules for model attributes.
*/
public function rules()
{
// NOTE: you should only define rules for those attributes that
// will receive user inputs.
return array(
array('invoice_code, invoice_sender, invoice_receiver, invoice_datetime, invoice_summ, invoice_manager_comment, invoice_status', 'required'),
array('invoice_sender, invoice_receiver, invoice_extra, invoice_status', 'numerical', 'integerOnly'=>true),
array('invoice_code', 'length', 'max'=>255),
array('invoice_summ', 'length', 'max'=>15),
// The following rule is used by search().
// @todo Please remove those attributes that should not be searched.
array('senderName, receiverName, invoice_id, invoice_code, invoice_sender, invoice_receiver, invoice_datetime, invoice_summ, invoice_extra, invoice_manager_comment, invoice_status', 'safe', 'on'=>'search'),
);
}
/**
* @return array relational rules.
*/
public function relations()
{
// NOTE: you may need to adjust the relation name and the related
// class name for the relations automatically generated below.
return array(
'invoiceSender' => array(self::BELONGS_TO, 'Users', 'invoice_sender'),
'invoiceReceiver' => array(self::BELONGS_TO, 'Users', 'invoice_receiver'),
'stockProducts' => array(self::HAS_MANY, 'StockProducts', 'invoice_id'),
);
}
/**
* @return array customized attribute labels (name=>label)
*/
public function attributeLabels()
{
return array(
'invoice_id' => 'Invoice',
'invoice_code' => 'Invoice Code',
'invoice_sender' => 'Invoice Sender',
'invoice_receiver' => 'Invoice Receiver',
'invoice_datetime' => 'Invoice Datetime',
'invoice_summ' => 'Invoice Summ',
'invoice_extra' => 'Invoice Extra',
'invoice_manager_comment' => 'Invoice Manager Comment',
'invoice_status' => 'Invoice Status',
);
}
/**
* Retrieves a list of models based on the current search/filter conditions.
*
* Typical usecase:
* - Initialize the model fields with values from filter form.
* - Execute this method to get CActiveDataProvider instance which will filter
* models according to data in model fields.
* - Pass data provider to CGridView, CListView or any similar widget.
*
* @return CActiveDataProvider the data provider that can return the models
* based on the search/filter conditions.
*/
public function search()
{
// @todo Please modify the following code to remove attributes that should not be searched.
$criteria=new CDbCriteria;
$criteria->compare('invoice_id',$this->invoice_id);
$criteria->compare('invoice_code',$this->invoice_code,true);
$criteria->with = array('invoiceSender', 'invoiceReceiver');
$criteria->addSearchCondition('invoiceSender.username', $this->senderName);
$criteria->addSearchCondition('invoiceReceiver.username', $this->receiverName);
//$criteria->compare('invoice_sender',$this->invoice_sender);
//$criteria->compare('invoice_receiver',$this->invoice_receiver);
$criteria->compare('invoice_datetime',$this->invoice_datetime,true);
$criteria->compare('invoice_summ',$this->invoice_summ,true);
$criteria->compare('invoice_extra',$this->invoice_extra);
$criteria->compare('invoice_manager_comment',$this->invoice_manager_comment,true);
$criteria->compare('invoice_status',$this->invoice_status);
$is_admin = (isset(Yii::app()->user->name) && Yii::app()->user->name == 'admin')?true:false;
if (!$is_admin) {
$criteria->addSearchCondition('invoice_sender',Yii::app()->user->id);
$criteria->addSearchCondition('invoice_receiver',Yii::app()->user->id,true,'OR');
}
return new CActiveDataProvider($this, array(
'criteria'=>$criteria,
'sort'=>array(
'defaultOrder'=>'invoice_datetime DESC',
)
));
}
/**
* Returns the static model of the specified AR class.
* Please note that you should have this exact method in all your CActiveRecord descendants!
* @param string $className active record class name.
* @return StockInvoices the static model class
*/
public static function model($className=__CLASS__)
{
return parent::model($className);
}
}
<file_sep><div class="form-check" >
<div class="form-check-inner" >
<?php $form = $this->beginWidget('CActiveForm', array(
'id'=>'checks-invoices-form',
'action'=>'/checksInvoices/create',
'enableAjaxValidation'=>false,
)); ?>
<div class="col-sm-6">
<div class="clearfix" >
<div class="left-but col-sm-9">
<a class="butlink" id="menu-icon" href="#"><span class="glyphicon glyphicon-asterisk" style="font-size:1.2em;" aria-hidden="true"></span></a>
<a class="butlink" id="icon-new" href="#"><span class="glyphicon glyphicon-plus fa-5x" style="font-size:1.2em;" aria-hidden="true"></span></a>
<a class="butlink" id="icon-trash" href="#"><span class="glyphicon glyphicon-trash fa-5x" style="font-size:1.2em;" aria-hidden="true"></span></a>
<div id="menu-popup">
<?php $this->widget('ext.zii.widgets.Menu',array(
'items'=>array(
array('label'=>'Главная', 'url'=>array('/site')),
array('label'=>'Чеки', 'url'=>array('/checksInvoices')),
array('label'=>'Клиенты', 'url'=>array('/clients')),
array('label'=>'Поставщики', 'url'=>array('/providers')),
array('label'=>'Продавцы', 'url'=>array('/users')),
array('label'=>'Накладные', 'url'=>array('/invoices')),
array('label'=>'Склад', 'url'=>array('/products')),
array('label'=>'Возвраты', 'url'=>array('/returns')),
array('label'=>'Отчет', 'url'=>array('/report')),
array('label'=>'Резервные копии', 'url'=>array('/jbackup')),
array('label'=>'Вход', 'url'=>array('/user/login'), 'visible'=>Yii::app()->user->isGuest),
array('label'=>'Выход ('.Yii::app()->user->name.')', 'url'=>array('/user/logout'), 'visible'=>!Yii::app()->user->isGuest),
),
'htmlOptions'=>array('class'=>'nav-popup'),
'lastItemCssClass'=>'pull-right',
)); ?>
</div>
</div>
<div class="check-summ col-sm-3">
<a id="check-summ" href="#"> <?php echo number_format(Yii::app()->shoppingCart->getCost(),2,'.',' ');?> </a>
</div>
</div>
<div class="check-inner">
<div class="first-line clearfix">
<div class="check-client">
<?php echo $form->hiddenField($model,'invoice_client_id'); ?>
<?php $this->widget('zii.widgets.jui.CJuiAutoComplete', array(
'attribute'=>'client_name',
'model'=>$clients,
'sourceUrl'=>array('site/clients_list'),
'name'=>'client_name',
'options'=>array(
'minLength'=>'0',
),
'htmlOptions'=>array(
'size'=>25,
'maxlength'=>45,
'placeholder' => 'Клиент',
'onblur'=>'getClientIdChecks($(this).val());',
),
)); ?>
</div>
<div class="check-list">
<?php
$user = Yii::app()->getUser();
$StateKeyPrefix = $user->getStateKeyPrefix();
$CurrentCheck = Yii::app()->getUser()->getState('CurrentCheck', 1);
$CurrentCheckNum = Yii::app()->getUser()->getState('CurrentCheckNum', 1);
$count_checks = 0;
$array_checks = array();
foreach ($_SESSION as $key => $value) {
if(!(false===($pos=strpos($key,$StateKeyPrefix.'CartID')))) {
$count_checks ++;
$key_checks = substr($key,strlen($StateKeyPrefix)+6);
$array_checks[$count_checks] = $key_checks;
}
}
$CurrentCheckNum ++ ;
if ($CurrentCheckNum > $count_checks) $CurrentCheckNum = 1;
if ($count_checks == 0 ) $count_checks = 1;
if ($CurrentCheck > $count_checks ) $CurrentCheck = $count_checks;
echo '<a href="#" id="currcheck">'.$CurrentCheck.'/'.$count_checks.'</a>';
?>
</div>
</div>
<div class="check-products">
<div class="clearfix check-products-header">
<div class="col-sm-8"></div>
<div class="col-sm-2">кол-в</div>
<!--<div class="col-sm-2">рулоны</div>-->
<div class="col-sm-2">цена</div>
</div>
<div id="check-products-lines">
<?php
$user = Yii::app()->getUser();
$StateKeyPrefix = $user->getStateKeyPrefix();
$positions = Yii::app()->shoppingCart->getPositions();
foreach($positions as $position => $product) {
if(@$model = Products::model()->findByPk($product['product_id'])) {
echo '
<div class="check-products-line clearfix" data-line="'.$product['product_id'].'">
<div class="col-sm-8 title">'.$model->product_name.'</div>
<div class="col-sm-2 quantity">'.$product->getQuantity().'</div>
<!--<div class="col-sm-2 roll">'.$product->getRoll().'</div>-->
<div class="col-sm-2 price">'.number_format($product->getPrice(),2,'.',' ').' </div>
<input class="balance" type="hidden" value="'.$model->product_quantity.'">
</div>
';
}
}
?>
</div>
</div>
<div class="clearfix check-products-total">
<div class="col-sm-8">Всего</div>
<div class="col-sm-4"><span id="total-price"><?php echo number_format(Yii::app()->shoppingCart->getCost(),2,'.',' ');?></span> грн</div>
</div>
</div>
</div>
<div class="col-sm-6">
<div class="clearfix right-but" >
<!--<a id="menu-icon" href="#"></a>
<a id="menu-icon-edit" href="#"></a>-->
<div class="col-sm-6">
<a id="menu-icon-search" href="#">
<?php $this->widget('zii.widgets.jui.CJuiAutoComplete', array(
'attribute'=>'product_name',
'sourceUrl'=>array('site/products_list'),
'name'=>'product_name',
'options'=>array(
'minLength'=>'0',
),
'htmlOptions'=>array(
'size'=>13,
'maxlength'=>25,
'placeholder'=> 'Поиск',
'onblur'=>'loadProductInfoChecks($(this));',
),
)); ?>
</a></div><div class="col-sm-6">
<a id="menu-icon-balance" href="#"> На складе </a>
</div></div>
<div class="tablo" id="tablotext">
<table class="bl_table">
<tr>
<td id="bl_title"></td>
<td id="bl_price"><input type="text" pattern="[0-9]*" inputmode="numeric" size="6"></td>
<!--<td id="bl_roll"><input type="text" pattern="[0-9]*" inputmode="numeric" size="3"></td>-->
<td id="bl_quantity"><input type="text" pattern="[0-9]*" inputmode="numeric" size="3" disabled="disabled"></td>
<td id="bl_del"></td>
</tr>
</table>
</div>
<div class="keyboard" >
<table>
<tr>
<td class="wd"><a id="upcean" href="#">UPC/EAN</a></td>
<td colspan="3"><input type="text" pattern="[0-9]*" inputmode="numeric" value="" name="code-search" id="code-search" readonly ></td>
<td class="wd"><a href="#" id="bkspc"><-</a></td>
</tr>
<tr>
<td class="wd none"><a href="report/todaysales"> сегодня</a></td>
<td><a class="qwe" href="#">/</a></td>
<td><a class="qwe" href="#">*</a></td>
<td><a class="qwe" href="#">%</a></td>
<td class="wd" id="up_but"><a id="up_but_down" href="#">-</a><a id="up_but_up" href="#">+</a></td>
</tr>
<tr>
<td class="wd none"><a href="#"> </a></td>
<td class="numeric"><a href="#">7</a></td>
<td class="numeric"><a href="#">8</a></td>
<td class="numeric"><a href="#">9</a></td>
<td class="wd" id="quantity_but"><a href="#">количество</a></td>
</tr>
<tr>
<td class="wd none"><a href="#"> </a></td>
<td class="numeric"><a href="#">4</a></td>
<td class="numeric"><a href="#">5</a></td>
<td class="numeric"><a href="#">6</a></td>
<td class="wd"><a href="#">цена</a></td>
</tr>
<tr>
<td class="wd none"><a href="#"> </a></td>
<td class="numeric"><a href="#">1</a></td>
<td class="numeric"><a href="#">2</a></td>
<td class="numeric"><a href="#">3</a></td>
<td class="wd"><a href="#">дисконт</a></td>
</tr>
<tr>
<td class="wd none"><a href="#"> </a></td>
<td class="numeric" colspan="2"><a href="#">0</a></td>
<td class="numeric"><a href="#">.</a></td>
<td class="wd"><a href="#">Enter</a></td>
</tr>
</table>
</div>
</div>
<div class="clearfix" ></div>
<?php $this->endWidget(); ?>
</div>
</div>
<style>
table{background: #7fa6de;}
#menu-icon-search{text-align: center;}
/*.qwe:hover{background-color: #bebebe;}*/
.numeric:hover{background-color: #bebebe;}
.wd:hover{background-color: #bebebe;}
a:hover{text-decoration: none;}
.none:hover{background-color: #636363}
@media screen and (max-width: 1024px) {.tablo{height:150px;}}
@media (min-width:768px)and (max-width: 900px){.container{width:950px;}#icon-new{width: 29%;}}
::-webkit-input-placeholder {
text-align: center;
}
:-moz-placeholder {
text-align: center;
}
::-moz-placeholder {
text-align: center;
}
:-ms-input-placeholder {
text-align: center;
}
#menu-popup {
position: absolute;
z-index: 1;
background: #157ab5;
/*background-image: linear-gradient(#54b4eb, #2fa4e7 60%, #1d9ce5);*/
color: #fff;
padding: 10px 20px;
top: 40px;
display: none;
}
#menu-popup ul {
padding: 0;
}
#menu-popup li {
list-style: none;
}
#menu-popup li a {
color: #fff;
font-size: 16px;
}
.left-but, .check-summ {
padding: 0;
position: relative;
}
.left-but a.butlink {
width: 29%;
display: block;
float: left;
background: #157ab5;
/*background-image: linear-gradient(#54b4eb, #2fa4e7 60%, #1d9ce5);*/
margin: 0 10px 5px 0;
text-align: center;
padding: 10px;
color: #fff;
}
.check-summ a {
background: #157ab5;
/*background-image: linear-gradient(#54b4eb, #2fa4e7 60%, #1d9ce5);*/
float: right;
color: rgb(255, 255, 255);
font-size: 18px;
font-weight: bold;
padding: 7px 15px;
display: block;
width: 100%;
text-align: center;
}
#currcheck{
text-align: center;
color: #fff;
display: block;
line-height: 24px;
}
.form-check {
/*background: #f3f3f3;*/
/*padding: 30px; */
padding-top: 30px;
}
.form-check-inner {
/* border: 1px solid #dedede;
box-shadow: -1px 0px 1px #dedede;*/
padding: 15px 0;
}
.check-inner {
margin-top: 20px;
background: #fff;
border: 1px solid #dedede;
box-shadow: 0px 0px 1px #dedede;
padding-bottom: 20px;
}
.check-client{
float: left;
width: 90%;
border: medium none;
}
.check-client input{
width: 100%;
text-align: center;
border: medium none;
}
.check-list {
float: right;
background: rgb(61, 61, 57) none repeat scroll 0% 0%;
width: 10%;
height: 24px;
}
.first-line {
border-bottom: 2px solid rgb(148, 148, 148);
}
.check-products-header, .check-products-line{
border-bottom: 1px solid #c9c9c9;
padding: 4px 0;
}
.check-products-total {
margin-top: 30px;
font-size: 22px;
font-weight: bold;
}
#total-price {
text-align: center;
}
.selected {
background: #d9edf7;
}
.right-but {
}
.right-but a {
background: #d8d8d8;
border-radius: 2px;
display: block;
float: left;
/* width: 23%;*/
width: 100%;
margin: 0 2px;
text-align: center;
color: #000;
padding: 0;
height: 38px;
line-height: 38px;
}
#menu-icon-search input {
background: transparent;
border: none;
color: #000;
height: 36px;
margin: 1px;
}
.tablo {
background: #7fa6de;
width: 100%;
height: 190px;
margin: 10px 0;
padding: 20px;
}
.keyboard table {
width: 100%;
text-align: center;
margin: 10px 0px;
background: gray;
}
.keyboard table td {
padding: 2px 2px;
}
.keyboard table td a {
background: #e2e2e2;
display: block;
padding: 14px;
color: #000;
}
.keyboard table td a.pressed {
background: rgb(206, 213, 108) none repeat scroll 0% 0%;
}
.wd {
width: 25%;
}
#up_but {
}
#up_but_down {
width: 49%;
float: left;
}
#up_but_up {
float: right;
width: 49%;
}
.tablo #tablotext{
background: transparent none repeat scroll 0% 0%;
border: medium none;
color: rgb(255, 255, 255);
font-size: 26px;
text-align: right;
width: 80%;
margin: 10px;
float: right;
}
#code-search{
width: 100%;
line-height: 24px;
background: #f5f6f5;
padding: 0px 4px;
}
.bl_table {
width: 100%;
font-size: 20px;
color: #fff;
}
.bl_table td {
}
.bl_table {
}
.bl_table a {
color: #fff;
text-transform: uppercase;
text-decoration: none;
}
#bl_quantity input, #bl_price input, #bl_roll input {
text-align: center;
color: #fff;
background: transparent;
border: none;
}
.check-products-line {
cursor:pointer;
}
.check-products-line div {
cursor:pointer;
}
</style>
<script>
jQuery.fn.extend({
insertAtCaret: function(myValue){
return this.each(function(i) {
if (document.selection) {
// Для браузеров типа Internet Explorer
this.focus();
var sel = document.selection.createRange();
sel.text = myValue;
this.focus();
}
else if (this.selectionStart || this.selectionStart == '0') {
// Для браузеров типа Firefox и других Webkit-ов
var startPos = this.selectionStart;
var endPos = this.selectionEnd;
var scrollTop = this.scrollTop;
this.value = this.value.substring(0, startPos)+myValue+this.value.substring(endPos,this.value.length);
this.focus();
this.selectionStart = startPos + myValue.length;
this.selectionEnd = startPos + myValue.length;
this.scrollTop = scrollTop;
} else {
this.value += myValue;
this.focus();
}
})
}
});
</script>
<file_sep><?php
/* @var $this InvoicesProductsController */
/* @var $model InvoicesProducts */
?>
<?php if($model->isNewRecord){ ?>
<h2>Добавить товар</h2>
<?php } else{ ?>
<h2>Изменить товар - «<?php echo $model->product_name; ?>»</h2>
<?php } ?>
<div class="form">
<?php $form=$this->beginWidget('CActiveForm', array(
'id'=>'invoices-products-form',
'enableAjaxValidation'=>false,
)); ?>
<?php echo $form->errorSummary($model); ?>
<table class="table table-bordered table-striped table-hover" >
<tr>
<td class="m-column"><?php echo $form->labelEx($model,'invoice_id'); ?></td>
<td><?php echo $form->labelEx($model,'product_name'); ?></td>
<td class="i-column"><?php echo $form->labelEx($model,'product_color'); ?></td>
<td class="m-column"><?php echo $form->labelEx($model,'product_measurement'); ?></td>
<td class="m-column"><?php echo $form->labelEx($model,'product_quantity'); ?></td>
<td class="l-column"><?php echo $form->labelEx($model,'product_quantity_details'); ?></td>
<td class="m-column"><?php echo $form->labelEx($model,'product_roll'); ?></td>
<td class="m-column"><?php echo $form->labelEx($model,'product_price'); ?></td>
<td class="m-column"><?php echo $form->labelEx($model,'product_total'); ?></td>
</tr>
<tr>
<td class="m-column"><?php echo $form->textField($model,'invoice_id',array('class'=>'nulled-input','readonly'=>true)); ?></td>
<td><?php echo $form->hiddenField($model,'product_name'); ?><?php echo $form->hiddenField($model,'product_id'); ?>
<?php echo CHtml::link($model->product_name, array('/products/update', 'id'=>$model->product_id)); ?></td>
<td class="i-column"><?php echo $form->dropDownList($model,'product_color',Yii::app()->controller->getColorsList()); ?></td>
<td class="m-column"><?php echo $form->dropDownList($model,'product_measurement',Yii::app()->controller->getMeasurementUnitsList()); ?></td>
<td class="m-column"><?php echo $form->textField($model,'product_quantity',array('size'=>10,'maxlength'=>15)); ?></td>
<td class="l-column"><?php echo $form->textField($model,'product_quantity_details',array('size'=>20,'maxlength'=>255)); ?></td>
<td class="m-column"><?php echo $form->textField($model,'product_roll'); ?></td>
<td class="m-column"><?php echo $form->textField($model,'product_price',array('size'=>5,'maxlength'=>15)); ?></td>
<td class="m-column"><?php echo $form->textField($model,'product_total',array('size'=>5,'maxlength'=>15)); ?></td>
</tr>
</table>
<?php echo CHtml::submitButton($model->isNewRecord ? 'Создать' : 'Обновить', array('class'=>'btn btn-primary btn-sm')); ?>
<?php $this->endWidget(); ?>
</div><file_sep><?php
/* @var $this ProductsUsersController */
/* @var $data ProductsUsers */
?>
<div class="view">
<b><?php echo CHtml::encode($data->getAttributeLabel('id_stock_products_users')); ?>:</b>
<?php echo CHtml::link(CHtml::encode($data->id_stock_products_users), array('view', 'id'=>$data->id_stock_products_users)); ?>
<br />
<b><?php echo CHtml::encode($data->getAttributeLabel('product_id')); ?>:</b>
<?php echo CHtml::encode($data->product_id); ?>
<br />
<b><?php echo CHtml::encode($data->getAttributeLabel('user_id')); ?>:</b>
<?php echo CHtml::encode($data->user_id); ?>
<br />
<b><?php echo CHtml::encode($data->getAttributeLabel('product_quantity')); ?>:</b>
<?php echo CHtml::encode($data->product_quantity); ?>
<br />
</div><file_sep><?php
class StockInvoicesController extends Controller
{
/**
* @var string the default layout for the views. Defaults to '//layouts/column2', meaning
* using two-column layout. See 'protected/views/layouts/column2.php'.
*/
public $layout='//layouts/column1';
/**
* @return array action filters
*/
public function filters()
{
return array(
'accessControl', // perform access control for CRUD operations
'postOnly + delete', // we only allow deletion via POST request
);
}
/**
* Specifies the access control rules.
* This method is used by the 'accessControl' filter.
* @return array access control rules
*/
public function accessRules()
{
return array(
array('allow', // allow authenticated user to perform 'create' and 'update' actions
'actions'=>array('index','FindCode','field','create','update'),
'users'=>array('@'),
),
array('allow', // allow admin user to perform 'admin' and 'delete' actions
'actions'=>array('delete'),
'users'=>array('admin'),
),
array('deny', // deny all users
'users'=>array('*'),
),
);
}
/**
* Creates a new model.
* If creation is successful, the browser will be redirected to the 'view' page.
*/
public function actionCreate()
{
$model=new StockInvoices;
// Uncomment the following line if AJAX validation is needed
$model->invoice_sender = Yii::app()->user->id;
if(isset($_POST['StockInvoices']))
{
//$this->performAjaxValidation($model);
$model->attributes=$_POST['StockInvoices'];
$model->invoice_datetime = date('Y-m-d H:i:s');
$model->invoice_sender = Yii::app()->user->id;
$error = False;
if(isset($_POST['StockProducts']))
{
$f = array();
foreach($_POST['StockProducts'] as $index => $product){
if(!empty($product['product_real_id'])) {
$stockusers_criteria=new CDbCriteria;
$stockusers_criteria->condition='product_id=:product_id AND user_id=:user_id ';
$stockusers_criteria->params=array(
':product_id'=> $product['product_real_id'],
':user_id'=> $model->invoice_sender,
);
$stockusers_products = ProductsUsers::model()->find($stockusers_criteria);
if($stockusers_products && !isset($f[$product['product_real_id']]) && ($stockusers_products->product_quantity >= $product['product_quantity'])){
$f[$product['product_real_id']] = $product['product_real_id'];
}
else {
$_POST['StockProducts']['Errors'] = $index;
$error = true;
}
}
}
}
if(!$error && $model->save()){
if(isset($_POST['StockProducts']))
{
foreach($_POST['StockProducts'] as $index => $product){
$product_model=new StockProducts;
$product_model->attributes = $product;
$product_model->product_color = 0;
$product_model->product_measurement = 1;
$product_model->invoice_id = $model->invoice_id;
if(!empty($product_model->product_name))
$product_model->save();
}
}
if(isset($_POST['StockInvoices']['provider_debt']))
{
Providers::model()->updateByPk($model->invoice_provider_id,array('provider_debt'=>$_POST['StockInvoices']['provider_debt'] + $model->invoice_summ));
}
$this->redirect(array('index'));
}
}
$this->render('update',array(
'model'=>$model,
));
}
/**
* Updates a particular model.
* If update is successful, the browser will be redirected to the 'view' page.
* @param integer $id the ID of the model to be updated
*/
public function actionUpdate($id)
{
$model=$this->loadModel($id);
$criteria=new CDbCriteria;
$criteria->condition='invoice_id=:invoice_id';
$criteria->params=array(':invoice_id'=>$id);
$products = StockProducts::model()->findAll($criteria);
// Uncomment the following line if AJAX validation is needed
// $this->performAjaxValidation($model);
if(isset($_POST['StockInvoices']))
{
$model->attributes=$_POST['StockInvoices'];
if($model->invoice_status == 2){
foreach($products as $product){
// передал
$stockusers = new ProductsUsers;
$stockusers->product_id = $product->product_real_id;
$stockusers->user_id = $model->invoice_sender;
$stockusers->product_quantity = $product->product_quantity;
$stockusers_criteria=new CDbCriteria;
$stockusers_criteria->condition='product_id=:product_id AND user_id=:user_id ';
$stockusers_criteria->params=array(
':product_id'=> $product->product_real_id,
':user_id'=> $model->invoice_sender,
);
$stockusers_products = ProductsUsers::model()->find($stockusers_criteria);
if($stockusers_products && ($stockusers_products->product_quantity >= $product->product_quantity)){
$stockusers_products->saveCounters(array('product_quantity'=>-$product->product_quantity));
} else {
$this->redirect(array('index?error=notaua'));
}
// получатель
$stockusers = new ProductsUsers;
$stockusers->product_id = $product->product_real_id;
$stockusers->user_id = $model->invoice_receiver;
$stockusers->product_quantity = $product->product_quantity;
$stockusers_criteria=new CDbCriteria;
$stockusers_criteria->condition='product_id=:product_id AND user_id=:user_id ';
$stockusers_criteria->params=array(
':product_id'=> $product->product_real_id,
':user_id'=> $model->invoice_receiver,
);
$stockusers_products = ProductsUsers::model()->find($stockusers_criteria);
if($stockusers_products){
$stockusers_products->saveCounters(array('product_quantity'=>+$product->product_quantity));
} else {
$stockusers->save();
}
$sender_for_history = Users::model()->findByPk($model->invoice_sender);
$seller_for_history = Users::model()->findByPk($model->invoice_receiver);
$record = new History;
$record->record_datetime = date('Y-m-d H:i:s');
$record->record_group = 'product';
$record->record_item_id = $product->product_real_id;
$record->record_content = 'Продавец - '.$seller_for_history->username.'. Получено от ' .$sender_for_history->username. ' - '. $product->product_quantity . '. Накладная - ' . CHtml::link($model->invoice_code, array('/StockInvoices/update', 'id'=>$model->invoice_id));
$record->save();
}
}
if($model->save()) {
$this->redirect(array('index'));
}
}
$this->render('update',array(
'model'=>$model,
'products'=>$products,
));
}
/**
* Deletes a particular model.
* If deletion is successful, the browser will be redirected to the 'admin' page.
* @param integer $id the ID of the model to be deleted
*/
public function actionDelete($id)
{
$criteria = new CDbCriteria;
$criteria->condition = 'invoice_id = :invoice_id';
$criteria->params=array(':invoice_id'=> $id,);
StockProducts::model()->deleteAll($criteria);
$this->loadModel($id)->delete();
// if AJAX request (triggered by deletion via admin grid view), we should not redirect the browser
if(!isset($_GET['ajax']))
$this->redirect(isset($_POST['returnUrl']) ? $_POST['returnUrl'] : array('index'));
}
/**
* Lists all models.
*/
public function actionIndex()
{
$model=new StockInvoices('search');
$model->unsetAttributes(); // clear any default values
if(isset($_GET['StockInvoices']))
$model->attributes=$_GET['StockInvoices'];
$this->render('admin',array(
'model'=>$model,
));
}
public function actionField($index)
{
$model = new StockProducts();
$this->renderPartial('_rowP', array(
'model' => $model,
'index' => $index,
));
}
/**
* Returns the data model based on the primary key given in the GET variable.
* If the data model is not found, an HTTP exception will be raised.
* @param integer $id the ID of the model to be loaded
* @return StockInvoices the loaded model
* @throws CHttpException
*/
public function loadModel($id)
{
$model=StockInvoices::model()->with('invoiceReceiver')->findByPk($id);
if($model===null)
throw new CHttpException(404,'The requested page does not exist.');
return $model;
}
/**
* Performs the AJAX validation.
* @param StockInvoices $model the model to be validated
*/
protected function performAjaxValidation($model)
{
if(isset($_POST['ajax']) && $_POST['ajax']==='providers-invoices-form')
{
echo CActiveForm::validate($model);
Yii::app()->end();
}
}
public function getUserProducts($id){
$product_criteria=new CDbCriteria;
$product_criteria->condition='user_id=:user_id';
$product_criteria->params=array(
':user_id'=> $id,
);
$same_products = ProductsUsers::model()->findall($product_criteria);
$same_productsList = array();
$same_productsList[] = '';
foreach ($same_products as $same_product) {
if ($same_product->product_quantity > 0) {
$product = Products::model()->findByPk($same_product->product_id);
if ($product && ($product->product_status == 1) )
$same_productsList[$same_product->product_id] = $same_product->product->product_name;
}
}
return $same_productsList;
}
public function actionFindCode()
{
foreach($_GET as $key => $value) {
if(substr($key, 0, 4) == 'code') {
if (!is_numeric($value) || $value <= 0)
throw new CException('Wrong code');
$criteria = new CDbCriteria;
$criteria->condition = 'product_id=:product_id AND user_id=:user_id ';
$criteria->params = array(
':product_id'=> $value,
':user_id'=> Yii::app()->user->id,
);
$productUsers = array_shift(ProductsUsers::model()->findAll($criteria));
$criteria = new CDbCriteria;
$criteria->condition = 'product_id=:product_id';
$criteria->params = array(
':product_id'=> $value,
);
$product = array_shift(Products::model()->findAll($criteria));
$data['product_quantity'] = $productUsers->product_quantity;
$data['product_color'] = $product->product_color;
$data['product_price'] = $product->product_price;
$data['product_name'] = $product->product_name;
$data['product_measurement'] = $product->product_measurement;
Yii::app()->end(json_encode($data));
}
}
}
}
<file_sep><?php
/* @var $this StockInvoicesController */
/* @var $model StockInvoices */
$this->breadcrumbs=array(
'Stock Invoices'=>array('index'),
'Create',
);
$this->menu=array(
array('label'=>'List StockInvoices', 'url'=>array('index')),
array('label'=>'Manage StockInvoices', 'url'=>array('admin')),
);
?>
<h1>Create StockInvoices</h1>
<?php $this->renderPartial('_form', array('model'=>$model)); ?><file_sep><?php
/* @var $this ProvidersController */
/* @var $model Providers */
if($model->isNewRecord){
$this->menu=array(
array('label'=>'Список поставщиков', 'url'=>array('index')),
);
} else{
$this->menu=array(
array('label'=>'Список поставщиков', 'url'=>array('index')),
array('label'=>'Добавить поставщика', 'url'=>array('create')),
);
}
?>
<?php if($model->isNewRecord){ ?>
<h2>Добавить поставщика</h2>
<?php } else{ ?>
<h2>Изменить поставщика - «<?php echo $model->provider_name; ?>»</h2>
<?php } ?>
<div class="form">
<?php $form=$this->beginWidget('CActiveForm', array(
'id'=>'providers-form',
'enableAjaxValidation'=>false,
)); ?>
<?php echo $form->errorSummary($model); ?>
<table class="table table-bordered table-striped table-hover" >
<tr>
<td><?php echo $form->labelEx($model,'provider_name'); ?></td>
<td class="xl-column"><?php echo $form->labelEx($model,'provider_category'); ?></td>
<td class="i-column"><?php echo $form->labelEx($model,'provider_debt'); ?></td>
<td class="l-column"><?php echo $form->labelEx($model,'provider_comment'); ?></td>
</tr>
<tr>
<td><?php echo $form->textField($model,'provider_name',array('size'=>60,'maxlength'=>255)); ?></td>
<td class="xl-column"><?php echo $form->dropDownList($model,'provider_category',Yii::app()->controller->provider_categories_array); ?></td>
<td class="i-column"><?php echo $form->textField($model,'provider_debt',array('size'=>10,'maxlength'=>15)); ?></td>
<td class="l-column"><?php echo $form->textField($model,'provider_comment'); ?></td>
</tr>
</table>
<?php echo CHtml::submitButton($model->isNewRecord ? 'Создать' : 'Обновить', array('class'=>'btn btn-primary btn-sm')); ?>
<?php $this->endWidget(); ?>
</div>
<?php if(!$model->isNewRecord){ ?>
<h3>Накладные</h3>
<?php $total_summ = 0.00; ?>
<?php if(count($invoices) > 0){ ?>
<div class="m-form" >
<table class="table table-bordered table-striped table-hover" >
<tr>
<th class="s-column">ID</th>
<th class="i-column">Код</th>
<th class="i-column">Дата составления</th>
<th class="i-column">Статус</th>
<th class="s-column">Сумма</th>
</tr>
<?php foreach($invoices as $invoice){ ?>
<?php $total_summ += $invoice->invoice_summ ?>
<tr>
<td class="s-column"><?php echo CHtml::link($invoice->invoice_id, array('/providersInvoices/update', 'id'=>$invoice->invoice_id)); ?></td>
<td class="i-column"><?php echo $invoice->invoice_code; ?></td>
<td class="i-column"><?php echo $invoice->invoice_datetime; ?></td>
<td class="i-column"><?php echo Yii::app()->controller->invoices_conditions[$invoice->invoice_status]; ?></td>
<td class="s-column"><?php echo $invoice->invoice_summ; ?></td>
</tr>
<?php } ?>
</table>
</div>
<div class="bs-callout-right bs-callout-info align-right">Общая сумма: <?=$total_summ; ?></div>
<?php } else{ ?>
<div class="bs-callout-right bs-callout-info align-right">Накладные не выписывались</div>
<?php } ?>
<?php } ?><file_sep><?php
/**
* This is the model class for table "{{invoices_products}}".
*
* The followings are the available columns in table '{{invoices_products}}':
* @property integer $id
* @property integer $invoice_id
* @property integer $product_id
* @property string $product_name
* @property integer $product_color
* @property integer $product_measurement
* @property integer $product_roll
* @property string $product_quantity
* @property string $product_quantity_details
* @property string $product_price
* @property string $product_total
*
* The followings are the available model relations:
* @property ClientsInvoices $invoice
* @property Products $product
*/
class InvoicesProducts extends CActiveRecord
{
/**
* @return string the associated database table name
*/
public function tableName()
{
return '{{invoices_products}}';
}
/**
* @return array validation rules for model attributes.
*/
public function rules()
{
// NOTE: you should only define rules for those attributes that
// will receive user inputs.
return array(
array('invoice_id, product_id, product_name, product_quantity, product_price, product_total', 'required'),
array('invoice_id, product_id, product_color, product_measurement, product_roll, return_status', 'numerical', 'integerOnly'=>true),
array('product_name, product_quantity_details', 'length', 'max'=>255),
array('product_quantity, product_price, product_total', 'length', 'max'=>15),
// The following rule is used by search().
// @todo Please remove those attributes that should not be searched.
array('id, invoice_id, return_status, product_id, product_name, product_color, product_measurement, product_roll, product_quantity, product_quantity_details, product_price, product_total', 'safe', 'on'=>'search'),
);
}
/**
* @return array relational rules.
*/
public function relations()
{
// NOTE: you may need to adjust the relation name and the related
// class name for the relations automatically generated below.
return array(
'invoice' => array(self::BELONGS_TO, 'ClientsInvoices', 'invoice_id'),
'product' => array(self::BELONGS_TO, 'Products', 'product_id'),
'productMeasurement' => array(self::BELONGS_TO, 'MeasurementUnits', 'product_measurement'),
'productColor' => array(self::BELONGS_TO, 'Colors', 'product_color'),
);
}
/**
* @return array customized attribute labels (name=>label)
*/
public function attributeLabels()
{
return array(
'id' => 'ID',
'invoice_id' => 'Накладная',
'product_id' => 'Товар',
'product_roll' => 'Рулоны',
'product_color' => 'Цвет',
'product_measurement' => 'Мера',
'product_name' => 'Название товара',
'product_quantity' => 'Кол-во',
'product_quantity_details' => 'Подробное кол-во',
'product_price' => 'Цена',
'product_total' => 'Всего',
'return_status' => 'Возврат',
);
}
/**
* Retrieves a list of models based on the current search/filter conditions.
*
* Typical usecase:
* - Initialize the model fields with values from filter form.
* - Execute this method to get CActiveDataProvider instance which will filter
* models according to data in model fields.
* - Pass data provider to CGridView, CListView or any similar widget.
*
* @return CActiveDataProvider the data provider that can return the models
* based on the search/filter conditions.
*/
public function search()
{
// @todo Please modify the following code to remove attributes that should not be searched.
$criteria=new CDbCriteria;
$criteria->compare('id',$this->id);
$criteria->compare('invoice_id',$this->invoice_id);
$criteria->compare('product_id',$this->product_id);
$criteria->compare('product_roll',$this->product_roll);
$criteria->compare('product_color',$this->product_color);
$criteria->compare('product_measurement',$this->product_measurement);
$criteria->compare('product_name',$this->product_id);
$criteria->compare('product_quantity',$this->product_quantity,true);
$criteria->compare('product_quantity_details',$this->product_quantity_details);
$criteria->compare('product_price',$this->product_price,true);
$criteria->compare('product_total',$this->product_total,true);
return new CActiveDataProvider($this, array(
'criteria'=>$criteria,
));
}
public function salesreport()
{
$criteria=new CDbCriteria;
/*
$criteria = Yii::app()->db->createCommand()
->select('*, sum(product_quantity) as product_q, sum(product_total) as product_t')
->from('stock_invoices_products')
->group('product_id')
->queryAll();
*/
//$criteria->select=array('SUM(product_quantity) as product_q','SUM(product_total) as product_t');
//$criteria->order='invoice_id DESK';
$criteria->group='product_id';
return new CActiveDataProvider($this, array(
'criteria'=>$criteria,
));
}
public function getTotals($ids)
{
$connection=Yii::app()->db;
$command=$connection->createCommand("SELECT SUM(product_quantity) FROM `stock_invoices_products` where product_id in ($ids)");
return $amount = $command->queryScalar();
}
/**
* Returns the static model of the specified AR class.
* Please note that you should have this exact method in all your CActiveRecord descendants!
* @param string $className active record class name.
* @return InvoicesProducts the static model class
*/
public static function model($className=__CLASS__)
{
return parent::model($className);
}
}
<file_sep>-- -------------------------------------------~
SET SQL_QUOTE_SHOW_CREATE = 1~
SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0~
SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0~
-- -------------------------------------------~
-- -------------------------------------------~
-- START BACKUP~
-- -------------------------------------------~
-- -------------------------------------------~
-- TABLE `stock_clients`~
-- -------------------------------------------~
DROP TABLE IF EXISTS `stock_clients`~
CREATE TABLE IF NOT EXISTS `stock_clients` (
`client_id` int(11) NOT NULL AUTO_INCREMENT,
`client_name` varchar(255) NOT NULL,
`client_debt` decimal(15,2) NOT NULL DEFAULT '0.00',
`client_category` int(3) NOT NULL DEFAULT '0',
`client_comment` text NOT NULL,
PRIMARY KEY (`client_id`)
) ENGINE=InnoDB AUTO_INCREMENT=10007 DEFAULT CHARSET=utf8~
-- -------------------------------------------~
-- TABLE `stock_clients_invoices`~
-- -------------------------------------------~
DROP TABLE IF EXISTS `stock_clients_invoices`~
CREATE TABLE IF NOT EXISTS `stock_clients_invoices` (
`invoice_id` int(11) NOT NULL AUTO_INCREMENT,
`invoice_code` varchar(255) NOT NULL,
`invoice_datetime` datetime NOT NULL,
`invoice_seller_id` int(11) NOT NULL,
`invoice_client_id` int(11) NOT NULL,
`invoice_summ` decimal(15,2) NOT NULL,
`invoice_manager_comment` text NOT NULL,
`invoice_status` int(3) NOT NULL DEFAULT '0',
PRIMARY KEY (`invoice_id`),
KEY `invoice_client_id` (`invoice_client_id`),
KEY `invoice_seller_id` (`invoice_seller_id`),
CONSTRAINT `stock_clients_invoices_ibfk_2` FOREIGN KEY (`invoice_client_id`) REFERENCES `stock_clients` (`client_id`),
CONSTRAINT `stock_clients_invoices_ibfk_3` FOREIGN KEY (`invoice_seller_id`) REFERENCES `stock_users` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=utf8~
-- -------------------------------------------~
-- TABLE `stock_colors`~
-- -------------------------------------------~
DROP TABLE IF EXISTS `stock_colors`~
CREATE TABLE IF NOT EXISTS `stock_colors` (
`color_id` int(11) NOT NULL AUTO_INCREMENT,
`color_name` varchar(255) NOT NULL,
`color_picture` varchar(255) DEFAULT NULL,
PRIMARY KEY (`color_id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8~
-- -------------------------------------------~
-- TABLE `stock_expected_products`~
-- -------------------------------------------~
DROP TABLE IF EXISTS `stock_expected_products`~
CREATE TABLE IF NOT EXISTS `stock_expected_products` (
`product_id` int(11) NOT NULL AUTO_INCREMENT,
`invoice_id` int(11) NOT NULL,
`product_name` varchar(255) NOT NULL,
`product_roll` int(11) NOT NULL DEFAULT '0',
`product_color` int(11) NOT NULL,
`product_measurement` int(11) NOT NULL,
`product_quantity` decimal(15,4) NOT NULL,
`product_price` decimal(15,2) NOT NULL,
`product_total` decimal(15,2) NOT NULL,
PRIMARY KEY (`product_id`),
KEY `invoice_id` (`invoice_id`),
KEY `product_color` (`product_color`),
CONSTRAINT `stock_expected_products_ibfk_1` FOREIGN KEY (`invoice_id`) REFERENCES `stock_providers_invoices` (`invoice_id`)
) ENGINE=InnoDB AUTO_INCREMENT=56 DEFAULT CHARSET=utf8~
-- -------------------------------------------~
-- TABLE `stock_extra_costs`~
-- -------------------------------------------~
DROP TABLE IF EXISTS `stock_extra_costs`~
CREATE TABLE IF NOT EXISTS `stock_extra_costs` (
`extra_id` int(11) NOT NULL AUTO_INCREMENT,
`extra_name` varchar(255) NOT NULL,
`extra_price` decimal(15,2) NOT NULL,
PRIMARY KEY (`extra_id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8~
-- -------------------------------------------~
-- TABLE `stock_history`~
-- -------------------------------------------~
DROP TABLE IF EXISTS `stock_history`~
CREATE TABLE IF NOT EXISTS `stock_history` (
`record_id` int(11) NOT NULL AUTO_INCREMENT,
`record_group` varchar(255) NOT NULL,
`record_item_id` int(11) NOT NULL,
`record_datetime` datetime NOT NULL,
`record_content` text NOT NULL,
PRIMARY KEY (`record_id`)
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8~
-- -------------------------------------------~
-- TABLE `stock_invoices_products`~
-- -------------------------------------------~
DROP TABLE IF EXISTS `stock_invoices_products`~
CREATE TABLE IF NOT EXISTS `stock_invoices_products` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`invoice_id` int(11) NOT NULL,
`product_id` int(11) NOT NULL,
`product_name` varchar(255) NOT NULL,
`product_color` int(11) NOT NULL,
`product_measurement` int(11) NOT NULL,
`product_roll` int(11) NOT NULL,
`product_quantity` decimal(15,4) NOT NULL,
`product_quantity_details` varchar(255) NOT NULL,
`product_price` decimal(15,2) NOT NULL,
`product_total` decimal(15,2) NOT NULL,
`return_status` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `product_id` (`product_id`),
KEY `invoice_id` (`invoice_id`),
KEY `product_color` (`product_color`),
KEY `product_measurement` (`product_measurement`),
CONSTRAINT `stock_invoices_products_ibfk_1` FOREIGN KEY (`product_id`) REFERENCES `stock_products` (`product_id`),
CONSTRAINT `stock_invoices_products_ibfk_2` FOREIGN KEY (`invoice_id`) REFERENCES `stock_clients_invoices` (`invoice_id`),
CONSTRAINT `stock_invoices_products_ibfk_3` FOREIGN KEY (`product_color`) REFERENCES `stock_colors` (`color_id`),
CONSTRAINT `stock_invoices_products_ibfk_4` FOREIGN KEY (`product_measurement`) REFERENCES `stock_measurement_units` (`unit_id`)
) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=utf8~
-- -------------------------------------------~
-- TABLE `stock_measurement_units`~
-- -------------------------------------------~
DROP TABLE IF EXISTS `stock_measurement_units`~
CREATE TABLE IF NOT EXISTS `stock_measurement_units` (
`unit_id` int(11) NOT NULL AUTO_INCREMENT,
`unit_name` varchar(255) NOT NULL,
`unit_value` decimal(15,8) NOT NULL,
PRIMARY KEY (`unit_id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8~
-- -------------------------------------------~
-- TABLE `stock_products`~
-- -------------------------------------------~
DROP TABLE IF EXISTS `stock_products`~
CREATE TABLE IF NOT EXISTS `stock_products` (
`product_id` int(11) NOT NULL AUTO_INCREMENT,
`product_name` varchar(255) NOT NULL,
`product_roll` int(11) NOT NULL DEFAULT '0',
`product_measurement` int(11) NOT NULL,
`product_color` int(11) NOT NULL,
`product_price` decimal(15,2) NOT NULL,
`product_quantity` decimal(15,4) NOT NULL,
`product_status` int(11) NOT NULL,
`product_sales` int(11) NOT NULL,
PRIMARY KEY (`product_id`),
KEY `product_color` (`product_color`),
KEY `product_measurement` (`product_measurement`),
CONSTRAINT `stock_products_ibfk_2` FOREIGN KEY (`product_color`) REFERENCES `stock_colors` (`color_id`),
CONSTRAINT `stock_products_ibfk_3` FOREIGN KEY (`product_measurement`) REFERENCES `stock_measurement_units` (`unit_id`)
) ENGINE=InnoDB AUTO_INCREMENT=20017 DEFAULT CHARSET=utf8~
-- -------------------------------------------~
-- TABLE `stock_profiles`~
-- -------------------------------------------~
DROP TABLE IF EXISTS `stock_profiles`~
CREATE TABLE IF NOT EXISTS `stock_profiles` (
`user_id` int(11) NOT NULL AUTO_INCREMENT,
`lastname` varchar(50) NOT NULL DEFAULT '',
`firstname` varchar(50) NOT NULL DEFAULT '',
PRIMARY KEY (`user_id`),
CONSTRAINT `user_profile_id` FOREIGN KEY (`user_id`) REFERENCES `stock_users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8~
-- -------------------------------------------~
-- TABLE `stock_profiles_fields`~
-- -------------------------------------------~
DROP TABLE IF EXISTS `stock_profiles_fields`~
CREATE TABLE IF NOT EXISTS `stock_profiles_fields` (
`id` int(10) NOT NULL AUTO_INCREMENT,
`varname` varchar(50) NOT NULL,
`title` varchar(255) NOT NULL,
`field_type` varchar(50) NOT NULL,
`field_size` varchar(15) NOT NULL DEFAULT '0',
`field_size_min` varchar(15) NOT NULL DEFAULT '0',
`required` int(1) NOT NULL DEFAULT '0',
`match` varchar(255) NOT NULL DEFAULT '',
`range` varchar(255) NOT NULL DEFAULT '',
`error_message` varchar(255) NOT NULL DEFAULT '',
`other_validator` varchar(5000) NOT NULL DEFAULT '',
`default` varchar(255) NOT NULL DEFAULT '',
`widget` varchar(255) NOT NULL DEFAULT '',
`widgetparams` varchar(5000) NOT NULL DEFAULT '',
`position` int(3) NOT NULL DEFAULT '0',
`visible` int(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `varname` (`varname`,`widget`,`visible`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8~
-- -------------------------------------------~
-- TABLE `stock_providers`~
-- -------------------------------------------~
DROP TABLE IF EXISTS `stock_providers`~
CREATE TABLE IF NOT EXISTS `stock_providers` (
`provider_id` int(11) NOT NULL AUTO_INCREMENT,
`provider_name` varchar(255) NOT NULL,
`provider_debt` decimal(15,2) NOT NULL,
`provider_category` int(3) NOT NULL DEFAULT '0',
`provider_comment` text NOT NULL,
PRIMARY KEY (`provider_id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8~
-- -------------------------------------------~
-- TABLE `stock_providers_invoices`~
-- -------------------------------------------~
DROP TABLE IF EXISTS `stock_providers_invoices`~
CREATE TABLE IF NOT EXISTS `stock_providers_invoices` (
`invoice_id` int(11) NOT NULL AUTO_INCREMENT,
`invoice_code` varchar(255) NOT NULL,
`invoice_datetime` datetime NOT NULL,
`invoice_provider_id` int(11) NOT NULL,
`invoice_summ` decimal(15,2) NOT NULL,
`invoice_extra` int(11) NOT NULL,
`invoice_manager_comment` text NOT NULL,
`invoice_status` int(11) NOT NULL,
PRIMARY KEY (`invoice_id`),
KEY `invoice_provider` (`invoice_provider_id`),
KEY `invoice_extra` (`invoice_extra`),
CONSTRAINT `stock_providers_invoices_ibfk_1` FOREIGN KEY (`invoice_provider_id`) REFERENCES `stock_providers` (`provider_id`),
CONSTRAINT `stock_providers_invoices_ibfk_2` FOREIGN KEY (`invoice_extra`) REFERENCES `stock_extra_costs` (`extra_id`)
) ENGINE=InnoDB AUTO_INCREMENT=78 DEFAULT CHARSET=utf8~
-- -------------------------------------------~
-- TABLE `stock_returns`~
-- -------------------------------------------~
DROP TABLE IF EXISTS `stock_returns`~
CREATE TABLE IF NOT EXISTS `stock_returns` (
`return_id` int(11) NOT NULL AUTO_INCREMENT,
`return_datetime` datetime NOT NULL,
`invoice_id` int(11) NOT NULL,
`invoice_row` int(11) NOT NULL,
`client_id` int(11) NOT NULL,
`product_id` int(11) NOT NULL,
`product_name` varchar(255) NOT NULL,
`product_color` int(11) NOT NULL,
`product_measurement` int(11) NOT NULL,
`product_quantity` decimal(15,4) NOT NULL,
`product_roll` int(11) NOT NULL,
`product_price` decimal(15,2) NOT NULL,
`product_total` decimal(15,2) NOT NULL,
`return_status` int(11) NOT NULL,
PRIMARY KEY (`return_id`),
KEY `invoice_id` (`invoice_id`),
KEY `product_id` (`product_id`),
KEY `product_color` (`product_color`),
KEY `product_measurement` (`product_measurement`),
KEY `client_id` (`client_id`),
KEY `invoice_row` (`invoice_row`),
CONSTRAINT `stock_returns_ibfk_1` FOREIGN KEY (`invoice_id`) REFERENCES `stock_clients_invoices` (`invoice_id`),
CONSTRAINT `stock_returns_ibfk_2` FOREIGN KEY (`product_id`) REFERENCES `stock_products` (`product_id`),
CONSTRAINT `stock_returns_ibfk_3` FOREIGN KEY (`product_color`) REFERENCES `stock_colors` (`color_id`),
CONSTRAINT `stock_returns_ibfk_4` FOREIGN KEY (`product_measurement`) REFERENCES `stock_measurement_units` (`unit_id`),
CONSTRAINT `stock_returns_ibfk_5` FOREIGN KEY (`client_id`) REFERENCES `stock_clients` (`client_id`)
) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=utf8~
-- -------------------------------------------~
-- TABLE `stock_users`~
-- -------------------------------------------~
DROP TABLE IF EXISTS `stock_users`~
CREATE TABLE IF NOT EXISTS `stock_users` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`username` varchar(20) NOT NULL,
`password` varchar(128) NOT NULL,
`email` varchar(128) NOT NULL,
`activkey` decimal(15,2) NOT NULL DEFAULT '0.00',
`create_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`lastvisit_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
`superuser` int(1) NOT NULL DEFAULT '0',
`status` int(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `username` (`username`),
UNIQUE KEY `email` (`email`),
KEY `status` (`status`),
KEY `superuser` (`superuser`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8~
-- -------------------------------------------~
-- TABLE DATA stock_clients~
-- -------------------------------------------~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7','Клиент 1','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8','Клиент 2','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9','Клиент 3','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('10','Клиент 4','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('11','Клиент 5','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('12','Клиент 6','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('13','Клиент 7','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('14','Клиент 8','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('15','Клиент 9','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('16','Клиент 10','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('17','Клиент 11','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('18','Клиент 12','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('19','Клиент 13','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('20','Клиент 14','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('21','Клиент 15','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('22','Клиент 16','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('23','Клиент 17','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('24','Клиент 18','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('25','Клиент 19','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('26','Клиент 20','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('27','Клиент 21','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('28','Клиент 22','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('29','Клиент 23','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('30','Клиент 24','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('31','Клиент 25','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('32','Клиент 26','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('33','Клиент 27','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('34','Клиент 28','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('35','Клиент 29','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('36','Клиент 30','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('37','Клиент 31','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('38','Клиент 32','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('39','Клиент 33','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('40','Клиент 34','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('41','Клиент 35','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('42','Клиент 36','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('43','Клиент 37','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('44','Клиент 38','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('45','Клиент 39','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('46','Клиент 40','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('47','Клиент 41','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('48','Клиент 42','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('49','Клиент 43','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('50','Клиент 44','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('51','Клиент 45','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('52','Клиент 46','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('53','Клиент 47','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('54','Клиент 48','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('55','Клиент 49','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('56','Клиент 50','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('57','Клиент 51','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('58','Клиент 52','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('59','Клиент 53','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('60','Клиент 54','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('61','Клиент 55','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('62','Клиент 56','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('63','Клиент 57','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('64','Клиент 58','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('65','Клиент 59','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('66','Клиент 60','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('67','Клиент 61','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('68','Клиент 62','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('69','Клиент 63','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('70','Клиент 64','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('71','Клиент 65','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('72','Клиент 66','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('73','Клиент 67','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('74','Клиент 68','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('75','Клиент 69','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('76','Клиент 70','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('77','Клиент 71','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('78','Клиент 72','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('79','Клиент 73','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('80','Клиент 74','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('81','Клиент 75','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('82','Клиент 76','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('83','Клиент 77','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('84','Клиент 78','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('85','Клиент 79','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('86','Клиент 80','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('87','Клиент 81','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('88','Клиент 82','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('89','Клиент 83','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('90','Клиент 84','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('91','Клиент 85','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('92','Клиент 86','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('93','Клиент 87','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('94','Клиент 88','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('95','Клиент 89','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('96','Клиент 90','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('97','Клиент 91','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('98','Клиент 92','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('99','Клиент 93','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('100','Клиент 94','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('101','Клиент 95','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('102','Клиент 96','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('103','Клиент 97','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('104','Клиент 98','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('105','Клиент 99','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('106','Клиент 100','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('107','Клиент 101','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('108','Клиент 102','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('109','Клиент 103','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('110','Клиент 104','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('111','Клиент 105','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('112','Клиент 106','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('113','Клиент 107','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('114','Клиент 108','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('115','Клиент 109','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('116','Клиент 110','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('117','Клиент 111','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('118','Клиент 112','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('119','Клиент 113','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('120','Клиент 114','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('121','Клиент 115','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('122','Клиент 116','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('123','Клиент 117','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('124','Клиент 118','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('125','Клиент 119','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('126','Клиент 120','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('127','Клиент 121','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('128','Клиент 122','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('129','Клиент 123','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('130','Клиент 124','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('131','Клиент 125','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('132','Клиент 126','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('133','Клиент 127','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('134','Клиент 128','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('135','Клиент 129','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('136','Клиент 130','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('137','Клиент 131','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('138','Клиент 132','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('139','Клиент 133','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('140','Клиент 134','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('141','Клиент 135','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('142','Клиент 136','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('143','Клиент 137','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('144','Клиент 138','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('145','Клиент 139','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('146','Клиент 140','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('147','Клиент 141','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('148','Клиент 142','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('149','Клиент 143','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('150','Клиент 144','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('151','Клиент 145','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('152','Клиент 146','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('153','Клиент 147','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('154','Клиент 148','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('155','Клиент 149','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('156','Клиент 150','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('157','Клиент 151','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('158','Клиент 152','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('159','Клиент 153','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('160','Клиент 154','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('161','Клиент 155','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('162','Клиент 156','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('163','Клиент 157','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('164','Клиент 158','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('165','Клиент 159','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('166','Клиент 160','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('167','Клиент 161','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('168','Клиент 162','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('169','Клиент 163','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('170','Клиент 164','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('171','Клиент 165','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('172','Клиент 166','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('173','Клиент 167','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('174','Клиент 168','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('175','Клиент 169','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('176','Клиент 170','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('177','Клиент 171','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('178','Клиент 172','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('179','Клиент 173','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('180','Клиент 174','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('181','Клиент 175','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('182','Клиент 176','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('183','Клиент 177','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('184','Клиент 178','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('185','Клиент 179','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('186','Клиент 180','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('187','Клиент 181','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('188','Клиент 182','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('189','Клиент 183','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('190','Клиент 184','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('191','Клиент 185','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('192','Клиент 186','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('193','Клиент 187','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('194','Клиент 188','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('195','Клиент 189','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('196','Клиент 190','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('197','Клиент 191','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('198','Клиент 192','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('199','Клиент 193','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('200','Клиент 194','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('201','Клиент 195','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('202','Клиент 196','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('203','Клиент 197','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('204','Клиент 198','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('205','Клиент 199','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('206','Клиент 200','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('207','Клиент 201','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('208','Клиент 202','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('209','Клиент 203','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('210','Клиент 204','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('211','Клиент 205','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('212','Клиент 206','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('213','Клиент 207','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('214','Клиент 208','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('215','Клиент 209','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('216','Клиент 210','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('217','Клиент 211','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('218','Клиент 212','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('219','Клиент 213','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('220','Клиент 214','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('221','Клиент 215','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('222','Клиент 216','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('223','Клиент 217','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('224','Клиент 218','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('225','Клиент 219','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('226','Клиент 220','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('227','Клиент 221','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('228','Клиент 222','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('229','Клиент 223','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('230','Клиент 224','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('231','Клиент 225','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('232','Клиент 226','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('233','Клиент 227','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('234','Клиент 228','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('235','Клиент 229','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('236','Клиент 230','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('237','Клиент 231','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('238','Клиент 232','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('239','Клиент 233','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('240','Клиент 234','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('241','Клиент 235','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('242','Клиент 236','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('243','Клиент 237','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('244','Клиент 238','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('245','Клиент 239','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('246','Клиент 240','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('247','Клиент 241','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('248','Клиент 242','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('249','Клиент 243','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('250','Клиент 244','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('251','Клиент 245','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('252','Клиент 246','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('253','Клиент 247','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('254','Клиент 248','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('255','Клиент 249','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('256','Клиент 250','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('257','Клиент 251','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('258','Клиент 252','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('259','Клиент 253','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('260','Клиент 254','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('261','Клиент 255','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('262','Клиент 256','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('263','Клиент 257','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('264','Клиент 258','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('265','Клиент 259','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('266','Клиент 260','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('267','Клиент 261','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('268','Клиент 262','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('269','Клиент 263','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('270','Клиент 264','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('271','Клиент 265','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('272','Клиент 266','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('273','Клиент 267','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('274','Клиент 268','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('275','Клиент 269','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('276','Клиент 270','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('277','Клиент 271','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('278','Клиент 272','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('279','Клиент 273','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('280','Клиент 274','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('281','Клиент 275','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('282','Клиент 276','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('283','Клиент 277','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('284','Клиент 278','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('285','Клиент 279','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('286','Клиент 280','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('287','Клиент 281','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('288','Клиент 282','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('289','Клиент 283','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('290','Клиент 284','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('291','Клиент 285','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('292','Клиент 286','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('293','Клиент 287','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('294','Клиент 288','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('295','Клиент 289','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('296','Клиент 290','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('297','Клиент 291','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('298','Клиент 292','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('299','Клиент 293','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('300','Клиент 294','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('301','Клиент 295','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('302','Клиент 296','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('303','Клиент 297','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('304','Клиент 298','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('305','Клиент 299','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('306','Клиент 300','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('307','Клиент 301','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('308','Клиент 302','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('309','Клиент 303','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('310','Клиент 304','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('311','Клиент 305','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('312','Клиент 306','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('313','Клиент 307','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('314','Клиент 308','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('315','Клиент 309','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('316','Клиент 310','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('317','Клиент 311','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('318','Клиент 312','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('319','Клиент 313','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('320','Клиент 314','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('321','Клиент 315','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('322','Клиент 316','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('323','Клиент 317','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('324','Клиент 318','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('325','Клиент 319','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('326','Клиент 320','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('327','Клиент 321','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('328','Клиент 322','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('329','Клиент 323','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('330','Клиент 324','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('331','Клиент 325','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('332','Клиент 326','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('333','Клиент 327','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('334','Клиент 328','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('335','Клиент 329','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('336','Клиент 330','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('337','Клиент 331','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('338','Клиент 332','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('339','Клиент 333','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('340','Клиент 334','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('341','Клиент 335','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('342','Клиент 336','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('343','Клиент 337','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('344','Клиент 338','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('345','Клиент 339','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('346','Клиент 340','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('347','Клиент 341','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('348','Клиент 342','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('349','Клиент 343','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('350','Клиент 344','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('351','Клиент 345','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('352','Клиент 346','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('353','Клиент 347','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('354','Клиент 348','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('355','Клиент 349','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('356','Клиент 350','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('357','Клиент 351','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('358','Клиент 352','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('359','Клиент 353','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('360','Клиент 354','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('361','Клиент 355','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('362','Клиент 356','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('363','Клиент 357','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('364','Клиент 358','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('365','Клиент 359','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('366','Клиент 360','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('367','Клиент 361','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('368','Клиент 362','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('369','Клиент 363','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('370','Клиент 364','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('371','Клиент 365','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('372','Клиент 366','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('373','Клиент 367','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('374','Клиент 368','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('375','Клиент 369','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('376','Клиент 370','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('377','Клиент 371','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('378','Клиент 372','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('379','Клиент 373','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('380','Клиент 374','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('381','Клиент 375','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('382','Клиент 376','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('383','Клиент 377','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('384','Клиент 378','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('385','Клиент 379','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('386','Клиент 380','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('387','Клиент 381','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('388','Клиент 382','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('389','Клиент 383','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('390','Клиент 384','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('391','Клиент 385','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('392','Клиент 386','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('393','Клиент 387','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('394','Клиент 388','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('395','Клиент 389','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('396','Клиент 390','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('397','Клиент 391','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('398','Клиент 392','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('399','Клиент 393','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('400','Клиент 394','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('401','Клиент 395','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('402','Клиент 396','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('403','Клиент 397','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('404','Клиент 398','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('405','Клиент 399','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('406','Клиент 400','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('407','Клиент 401','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('408','Клиент 402','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('409','Клиент 403','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('410','Клиент 404','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('411','Клиент 405','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('412','Клиент 406','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('413','Клиент 407','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('414','Клиент 408','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('415','Клиент 409','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('416','Клиент 410','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('417','Клиент 411','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('418','Клиент 412','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('419','Клиент 413','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('420','Клиент 414','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('421','Клиент 415','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('422','Клиент 416','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('423','Клиент 417','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('424','Клиент 418','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('425','Клиент 419','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('426','Клиент 420','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('427','Клиент 421','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('428','Клиент 422','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('429','Клиент 423','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('430','Клиент 424','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('431','Клиент 425','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('432','Клиент 426','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('433','Клиент 427','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('434','Клиент 428','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('435','Клиент 429','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('436','Клиент 430','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('437','Клиент 431','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('438','Клиент 432','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('439','Клиент 433','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('440','Клиент 434','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('441','Клиент 435','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('442','Клиент 436','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('443','Клиент 437','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('444','Клиент 438','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('445','Клиент 439','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('446','Клиент 440','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('447','Клиент 441','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('448','Клиент 442','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('449','Клиент 443','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('450','Клиент 444','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('451','Клиент 445','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('452','Клиент 446','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('453','Клиент 447','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('454','Клиент 448','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('455','Клиент 449','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('456','Клиент 450','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('457','Клиент 451','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('458','Клиент 452','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('459','Клиент 453','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('460','Клиент 454','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('461','Клиент 455','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('462','Клиент 456','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('463','Клиент 457','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('464','Клиент 458','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('465','Клиент 459','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('466','Клиент 460','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('467','Клиент 461','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('468','Клиент 462','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('469','Клиент 463','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('470','Клиент 464','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('471','Клиент 465','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('472','Клиент 466','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('473','Клиент 467','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('474','Клиент 468','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('475','Клиент 469','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('476','Клиент 470','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('477','Клиент 471','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('478','Клиент 472','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('479','Клиент 473','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('480','Клиент 474','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('481','Клиент 475','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('482','Клиент 476','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('483','Клиент 477','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('484','Клиент 478','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('485','Клиент 479','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('486','Клиент 480','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('487','Клиент 481','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('488','Клиент 482','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('489','Клиент 483','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('490','Клиент 484','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('491','Клиент 485','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('492','Клиент 486','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('493','Клиент 487','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('494','Клиент 488','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('495','Клиент 489','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('496','Клиент 490','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('497','Клиент 491','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('498','Клиент 492','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('499','Клиент 493','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('500','Клиент 494','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('501','Клиент 495','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('502','Клиент 496','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('503','Клиент 497','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('504','Клиент 498','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('505','Клиент 499','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('506','Клиент 500','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('507','Клиент 501','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('508','Клиент 502','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('509','Клиент 503','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('510','Клиент 504','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('511','Клиент 505','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('512','Клиент 506','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('513','Клиент 507','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('514','Клиент 508','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('515','Клиент 509','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('516','Клиент 510','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('517','Клиент 511','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('518','Клиент 512','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('519','Клиент 513','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('520','Клиент 514','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('521','Клиент 515','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('522','Клиент 516','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('523','Клиент 517','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('524','Клиент 518','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('525','Клиент 519','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('526','Клиент 520','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('527','Клиент 521','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('528','Клиент 522','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('529','Клиент 523','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('530','Клиент 524','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('531','Клиент 525','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('532','Клиент 526','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('533','Клиент 527','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('534','Клиент 528','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('535','Клиент 529','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('536','Клиент 530','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('537','Клиент 531','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('538','Клиент 532','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('539','Клиент 533','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('540','Клиент 534','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('541','Клиент 535','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('542','Клиент 536','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('543','Клиент 537','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('544','Клиент 538','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('545','Клиент 539','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('546','Клиент 540','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('547','Клиент 541','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('548','Клиент 542','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('549','Клиент 543','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('550','Клиент 544','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('551','Клиент 545','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('552','Клиент 546','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('553','Клиент 547','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('554','Клиент 548','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('555','Клиент 549','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('556','Клиент 550','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('557','Клиент 551','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('558','Клиент 552','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('559','Клиент 553','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('560','Клиент 554','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('561','Клиент 555','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('562','Клиент 556','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('563','Клиент 557','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('564','Клиент 558','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('565','Клиент 559','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('566','Клиент 560','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('567','Клиент 561','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('568','Клиент 562','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('569','Клиент 563','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('570','Клиент 564','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('571','Клиент 565','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('572','Клиент 566','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('573','Клиент 567','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('574','Клиент 568','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('575','Клиент 569','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('576','Клиент 570','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('577','Клиент 571','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('578','Клиент 572','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('579','Клиент 573','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('580','Клиент 574','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('581','Клиент 575','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('582','Клиент 576','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('583','Клиент 577','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('584','Клиент 578','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('585','Клиент 579','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('586','Клиент 580','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('587','Клиент 581','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('588','Клиент 582','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('589','Клиент 583','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('590','Клиент 584','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('591','Клиент 585','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('592','Клиент 586','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('593','Клиент 587','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('594','Клиент 588','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('595','Клиент 589','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('596','Клиент 590','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('597','Клиент 591','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('598','Клиент 592','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('599','Клиент 593','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('600','Клиент 594','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('601','Клиент 595','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('602','Клиент 596','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('603','Клиент 597','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('604','Клиент 598','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('605','Клиент 599','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('606','Клиент 600','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('607','Клиент 601','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('608','Клиент 602','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('609','Клиент 603','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('610','Клиент 604','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('611','Клиент 605','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('612','Клиент 606','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('613','Клиент 607','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('614','Клиент 608','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('615','Клиент 609','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('616','Клиент 610','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('617','Клиент 611','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('618','Клиент 612','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('619','Клиент 613','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('620','Клиент 614','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('621','Клиент 615','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('622','Клиент 616','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('623','Клиент 617','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('624','Клиент 618','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('625','Клиент 619','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('626','Клиент 620','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('627','Клиент 621','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('628','Клиент 622','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('629','Клиент 623','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('630','Клиент 624','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('631','Клиент 625','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('632','Клиент 626','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('633','Клиент 627','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('634','Клиент 628','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('635','Клиент 629','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('636','Клиент 630','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('637','Клиент 631','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('638','Клиент 632','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('639','Клиент 633','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('640','Клиент 634','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('641','Клиент 635','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('642','Клиент 636','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('643','Клиент 637','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('644','Клиент 638','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('645','Клиент 639','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('646','Клиент 640','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('647','Клиент 641','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('648','Клиент 642','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('649','Клиент 643','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('650','Клиент 644','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('651','Клиент 645','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('652','Клиент 646','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('653','Клиент 647','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('654','Клиент 648','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('655','Клиент 649','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('656','Клиент 650','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('657','Клиент 651','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('658','Клиент 652','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('659','Клиент 653','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('660','Клиент 654','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('661','Клиент 655','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('662','Клиент 656','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('663','Клиент 657','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('664','Клиент 658','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('665','Клиент 659','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('666','Клиент 660','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('667','Клиент 661','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('668','Клиент 662','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('669','Клиент 663','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('670','Клиент 664','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('671','Клиент 665','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('672','Клиент 666','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('673','Клиент 667','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('674','Клиент 668','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('675','Клиент 669','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('676','Клиент 670','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('677','Клиент 671','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('678','Клиент 672','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('679','Клиент 673','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('680','Клиент 674','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('681','Клиент 675','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('682','Клиент 676','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('683','Клиент 677','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('684','Клиент 678','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('685','Клиент 679','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('686','Клиент 680','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('687','Клиент 681','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('688','Клиент 682','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('689','Клиент 683','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('690','Клиент 684','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('691','Клиент 685','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('692','Клиент 686','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('693','Клиент 687','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('694','Клиент 688','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('695','Клиент 689','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('696','Клиент 690','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('697','Клиент 691','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('698','Клиент 692','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('699','Клиент 693','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('700','Клиент 694','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('701','Клиент 695','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('702','Клиент 696','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('703','Клиент 697','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('704','Клиент 698','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('705','Клиент 699','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('706','Клиент 700','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('707','Клиент 701','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('708','Клиент 702','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('709','Клиент 703','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('710','Клиент 704','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('711','Клиент 705','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('712','Клиент 706','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('713','Клиент 707','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('714','Клиент 708','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('715','Клиент 709','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('716','Клиент 710','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('717','Клиент 711','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('718','Клиент 712','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('719','Клиент 713','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('720','Клиент 714','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('721','Клиент 715','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('722','Клиент 716','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('723','Клиент 717','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('724','Клиент 718','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('725','Клиент 719','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('726','Клиент 720','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('727','Клиент 721','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('728','Клиент 722','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('729','Клиент 723','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('730','Клиент 724','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('731','Клиент 725','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('732','Клиент 726','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('733','Клиент 727','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('734','Клиент 728','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('735','Клиент 729','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('736','Клиент 730','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('737','Клиент 731','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('738','Клиент 732','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('739','Клиент 733','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('740','Клиент 734','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('741','Клиент 735','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('742','Клиент 736','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('743','Клиент 737','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('744','Клиент 738','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('745','Клиент 739','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('746','Клиент 740','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('747','Клиент 741','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('748','Клиент 742','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('749','Клиент 743','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('750','Клиент 744','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('751','Клиент 745','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('752','Клиент 746','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('753','Клиент 747','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('754','Клиент 748','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('755','Клиент 749','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('756','Клиент 750','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('757','Клиент 751','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('758','Клиент 752','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('759','Клиент 753','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('760','Клиент 754','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('761','Клиент 755','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('762','Клиент 756','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('763','Клиент 757','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('764','Клиент 758','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('765','Клиент 759','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('766','Клиент 760','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('767','Клиент 761','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('768','Клиент 762','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('769','Клиент 763','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('770','Клиент 764','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('771','Клиент 765','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('772','Клиент 766','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('773','Клиент 767','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('774','Клиент 768','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('775','Клиент 769','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('776','Клиент 770','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('777','Клиент 771','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('778','Клиент 772','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('779','Клиент 773','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('780','Клиент 774','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('781','Клиент 775','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('782','Клиент 776','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('783','Клиент 777','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('784','Клиент 778','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('785','Клиент 779','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('786','Клиент 780','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('787','Клиент 781','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('788','Клиент 782','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('789','Клиент 783','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('790','Клиент 784','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('791','Клиент 785','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('792','Клиент 786','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('793','Клиент 787','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('794','Клиент 788','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('795','Клиент 789','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('796','Клиент 790','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('797','Клиент 791','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('798','Клиент 792','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('799','Клиент 793','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('800','Клиент 794','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('801','Клиент 795','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('802','Клиент 796','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('803','Клиент 797','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('804','Клиент 798','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('805','Клиент 799','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('806','Клиент 800','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('807','Клиент 801','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('808','Клиент 802','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('809','Клиент 803','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('810','Клиент 804','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('811','Клиент 805','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('812','Клиент 806','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('813','Клиент 807','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('814','Клиент 808','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('815','Клиент 809','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('816','Клиент 810','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('817','Клиент 811','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('818','Клиент 812','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('819','Клиент 813','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('820','Клиент 814','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('821','Клиент 815','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('822','Клиент 816','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('823','Клиент 817','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('824','Клиент 818','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('825','Клиент 819','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('826','Клиент 820','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('827','Клиент 821','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('828','Клиент 822','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('829','Клиент 823','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('830','Клиент 824','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('831','Клиент 825','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('832','Клиент 826','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('833','Клиент 827','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('834','Клиент 828','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('835','Клиент 829','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('836','Клиент 830','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('837','Клиент 831','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('838','Клиент 832','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('839','Клиент 833','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('840','Клиент 834','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('841','Клиент 835','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('842','Клиент 836','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('843','Клиент 837','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('844','Клиент 838','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('845','Клиент 839','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('846','Клиент 840','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('847','Клиент 841','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('848','Клиент 842','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('849','Клиент 843','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('850','Клиент 844','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('851','Клиент 845','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('852','Клиент 846','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('853','Клиент 847','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('854','Клиент 848','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('855','Клиент 849','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('856','Клиент 850','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('857','Клиент 851','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('858','Клиент 852','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('859','Клиент 853','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('860','Клиент 854','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('861','Клиент 855','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('862','Клиент 856','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('863','Клиент 857','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('864','Клиент 858','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('865','Клиент 859','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('866','Клиент 860','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('867','Клиент 861','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('868','Клиент 862','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('869','Клиент 863','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('870','Клиент 864','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('871','Клиент 865','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('872','Клиент 866','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('873','Клиент 867','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('874','Клиент 868','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('875','Клиент 869','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('876','Клиент 870','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('877','Клиент 871','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('878','Клиент 872','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('879','Клиент 873','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('880','Клиент 874','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('881','Клиент 875','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('882','Клиент 876','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('883','Клиент 877','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('884','Клиент 878','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('885','Клиент 879','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('886','Клиент 880','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('887','Клиент 881','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('888','Клиент 882','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('889','Клиент 883','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('890','Клиент 884','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('891','Клиент 885','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('892','Клиент 886','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('893','Клиент 887','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('894','Клиент 888','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('895','Клиент 889','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('896','Клиент 890','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('897','Клиент 891','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('898','Клиент 892','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('899','Клиент 893','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('900','Клиент 894','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('901','Клиент 895','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('902','Клиент 896','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('903','Клиент 897','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('904','Клиент 898','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('905','Клиент 899','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('906','Клиент 900','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('907','Клиент 901','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('908','Клиент 902','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('909','Клиент 903','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('910','Клиент 904','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('911','Клиент 905','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('912','Клиент 906','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('913','Клиент 907','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('914','Клиент 908','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('915','Клиент 909','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('916','Клиент 910','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('917','Клиент 911','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('918','Клиент 912','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('919','Клиент 913','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('920','Клиент 914','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('921','Клиент 915','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('922','Клиент 916','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('923','Клиент 917','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('924','Клиент 918','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('925','Клиент 919','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('926','Клиент 920','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('927','Клиент 921','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('928','Клиент 922','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('929','Клиент 923','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('930','Клиент 924','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('931','Клиент 925','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('932','Клиент 926','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('933','Клиент 927','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('934','Клиент 928','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('935','Клиент 929','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('936','Клиент 930','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('937','Клиент 931','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('938','Клиент 932','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('939','Клиент 933','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('940','Клиент 934','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('941','Клиент 935','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('942','Клиент 936','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('943','Клиент 937','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('944','Клиент 938','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('945','Клиент 939','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('946','Клиент 940','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('947','Клиент 941','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('948','Клиент 942','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('949','Клиент 943','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('950','Клиент 944','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('951','Клиент 945','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('952','Клиент 946','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('953','Клиент 947','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('954','Клиент 948','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('955','Клиент 949','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('956','Клиент 950','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('957','Клиент 951','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('958','Клиент 952','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('959','Клиент 953','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('960','Клиент 954','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('961','Клиент 955','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('962','Клиент 956','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('963','Клиент 957','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('964','Клиент 958','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('965','Клиент 959','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('966','Клиент 960','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('967','Клиент 961','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('968','Клиент 962','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('969','Клиент 963','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('970','Клиент 964','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('971','Клиент 965','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('972','Клиент 966','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('973','Клиент 967','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('974','Клиент 968','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('975','Клиент 969','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('976','Клиент 970','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('977','Клиент 971','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('978','Клиент 972','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('979','Клиент 973','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('980','Клиент 974','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('981','Клиент 975','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('982','Клиент 976','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('983','Клиент 977','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('984','Клиент 978','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('985','Клиент 979','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('986','Клиент 980','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('987','Клиент 981','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('988','Клиент 982','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('989','Клиент 983','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('990','Клиент 984','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('991','Клиент 985','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('992','Клиент 986','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('993','Клиент 987','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('994','Клиент 988','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('995','Клиент 989','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('996','Клиент 990','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('997','Клиент 991','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('998','Клиент 992','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('999','Клиент 993','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1000','Клиент 994','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1001','Клиент 995','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1002','Клиент 996','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1003','Клиент 997','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1004','Клиент 998','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1005','Клиент 999','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1006','Клиент 1000','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1007','Клиент 1001','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1008','Клиент 1002','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1009','Клиент 1003','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1010','Клиент 1004','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1011','Клиент 1005','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1012','Клиент 1006','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1013','Клиент 1007','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1014','Клиент 1008','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1015','Клиент 1009','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1016','Клиент 1010','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1017','Клиент 1011','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1018','Клиент 1012','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1019','Клиент 1013','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1020','Клиент 1014','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1021','Клиент 1015','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1022','Клиент 1016','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1023','Клиент 1017','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1024','Клиент 1018','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1025','Клиент 1019','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1026','Клиент 1020','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1027','Клиент 1021','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1028','Клиент 1022','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1029','Клиент 1023','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1030','Клиент 1024','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1031','Клиент 1025','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1032','Клиент 1026','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1033','Клиент 1027','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1034','Клиент 1028','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1035','Клиент 1029','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1036','Клиент 1030','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1037','Клиент 1031','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1038','Клиент 1032','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1039','Клиент 1033','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1040','Клиент 1034','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1041','Клиент 1035','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1042','Клиент 1036','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1043','Клиент 1037','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1044','Клиент 1038','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1045','Клиент 1039','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1046','Клиент 1040','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1047','Клиент 1041','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1048','Клиент 1042','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1049','Клиент 1043','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1050','Клиент 1044','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1051','Клиент 1045','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1052','Клиент 1046','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1053','Клиент 1047','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1054','Клиент 1048','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1055','Клиент 1049','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1056','Клиент 1050','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1057','Клиент 1051','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1058','Клиент 1052','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1059','Клиент 1053','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1060','Клиент 1054','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1061','Клиент 1055','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1062','Клиент 1056','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1063','Клиент 1057','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1064','Клиент 1058','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1065','Клиент 1059','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1066','Клиент 1060','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1067','Клиент 1061','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1068','Клиент 1062','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1069','Клиент 1063','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1070','Клиент 1064','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1071','Клиент 1065','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1072','Клиент 1066','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1073','Клиент 1067','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1074','Клиент 1068','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1075','Клиент 1069','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1076','Клиент 1070','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1077','Клиент 1071','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1078','Клиент 1072','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1079','Клиент 1073','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1080','Клиент 1074','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1081','Клиент 1075','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1082','Клиент 1076','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1083','Клиент 1077','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1084','Клиент 1078','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1085','Клиент 1079','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1086','Клиент 1080','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1087','Клиент 1081','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1088','Клиент 1082','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1089','Клиент 1083','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1090','Клиент 1084','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1091','Клиент 1085','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1092','Клиент 1086','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1093','Клиент 1087','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1094','Клиент 1088','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1095','Клиент 1089','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1096','Клиент 1090','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1097','Клиент 1091','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1098','Клиент 1092','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1099','Клиент 1093','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1100','Клиент 1094','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1101','Клиент 1095','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1102','Клиент 1096','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1103','Клиент 1097','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1104','Клиент 1098','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1105','Клиент 1099','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1106','Клиент 1100','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1107','Клиент 1101','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1108','Клиент 1102','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1109','Клиент 1103','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1110','Клиент 1104','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1111','Клиент 1105','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1112','Клиент 1106','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1113','Клиент 1107','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1114','Клиент 1108','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1115','Клиент 1109','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1116','Клиент 1110','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1117','Клиент 1111','31850.00','0','qwerty')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1118','Клиент 1112','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1119','Клиент 1113','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1120','Клиент 1114','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1121','Клиент 1115','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1122','Клиент 1116','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1123','Клиент 1117','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1124','Клиент 1118','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1125','Клиент 1119','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1126','Клиент 1120','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1127','Клиент 1121','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1128','Клиент 1122','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1129','Клиент 1123','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1130','Клиент 1124','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1131','Клиент 1125','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1132','Клиент 1126','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1133','Клиент 1127','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1134','Клиент 1128','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1135','Клиент 1129','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1136','Клиент 1130','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1137','Клиент 1131','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1138','Клиент 1132','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1139','Клиент 1133','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1140','Клиент 1134','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1141','Клиент 1135','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1142','Клиент 1136','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1143','Клиент 1137','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1144','Клиент 1138','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1145','Клиент 1139','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1146','Клиент 1140','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1147','Клиент 1141','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1148','Клиент 1142','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1149','Клиент 1143','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1150','Клиент 1144','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1151','Клиент 1145','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1152','Клиент 1146','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1153','Клиент 1147','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1154','Клиент 1148','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1155','Клиент 1149','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1156','Клиент 1150','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1157','Клиент 1151','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1158','Клиент 1152','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1159','Клиент 1153','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1160','Клиент 1154','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1161','Клиент 1155','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1162','Клиент 1156','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1163','Клиент 1157','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1164','Клиент 1158','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1165','Клиент 1159','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1166','Клиент 1160','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1167','Клиент 1161','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1168','Клиент 1162','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1169','Клиент 1163','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1170','Клиент 1164','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1171','Клиент 1165','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1172','Клиент 1166','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1173','Клиент 1167','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1174','Клиент 1168','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1175','Клиент 1169','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1176','Клиент 1170','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1177','Клиент 1171','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1178','Клиент 1172','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1179','Клиент 1173','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1180','Клиент 1174','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1181','Клиент 1175','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1182','Клиент 1176','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1183','Клиент 1177','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1184','Клиент 1178','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1185','Клиент 1179','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1186','Клиент 1180','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1187','Клиент 1181','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1188','Клиент 1182','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1189','Клиент 1183','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1190','Клиент 1184','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1191','Клиент 1185','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1192','Клиент 1186','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1193','Клиент 1187','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1194','Клиент 1188','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1195','Клиент 1189','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1196','Клиент 1190','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1197','Клиент 1191','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1198','Клиент 1192','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1199','Клиент 1193','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1200','Клиент 1194','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1201','Клиент 1195','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1202','Клиент 1196','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1203','Клиент 1197','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1204','Клиент 1198','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1205','Клиент 1199','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1206','Клиент 1200','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1207','Клиент 1201','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1208','Клиент 1202','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1209','Клиент 1203','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1210','Клиент 1204','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1211','Клиент 1205','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1212','Клиент 1206','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1213','Клиент 1207','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1214','Клиент 1208','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1215','Клиент 1209','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1216','Клиент 1210','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1217','Клиент 1211','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1218','Клиент 1212','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1219','Клиент 1213','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1220','Клиент 1214','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1221','Клиент 1215','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1222','Клиент 1216','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1223','Клиент 1217','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1224','Клиент 1218','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1225','Клиент 1219','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1226','Клиент 1220','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1227','Клиент 1221','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1228','Клиент 1222','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1229','Клиент 1223','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1230','Клиент 1224','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1231','Клиент 1225','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1232','Клиент 1226','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1233','Клиент 1227','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1234','Клиент 1228','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1235','Клиент 1229','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1236','Клиент 1230','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1237','Клиент 1231','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1238','Клиент 1232','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1239','Клиент 1233','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1240','Клиент 1234','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1241','Клиент 1235','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1242','Клиент 1236','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1243','Клиент 1237','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1244','Клиент 1238','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1245','Клиент 1239','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1246','Клиент 1240','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1247','Клиент 1241','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1248','Клиент 1242','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1249','Клиент 1243','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1250','Клиент 1244','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1251','Клиент 1245','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1252','Клиент 1246','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1253','Клиент 1247','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1254','Клиент 1248','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1255','Клиент 1249','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1256','Клиент 1250','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1257','Клиент 1251','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1258','Клиент 1252','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1259','Клиент 1253','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1260','Клиент 1254','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1261','Клиент 1255','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1262','Клиент 1256','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1263','Клиент 1257','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1264','Клиент 1258','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1265','Клиент 1259','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1266','Клиент 1260','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1267','Клиент 1261','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1268','Клиент 1262','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1269','Клиент 1263','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1270','Клиент 1264','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1271','Клиент 1265','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1272','Клиент 1266','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1273','Клиент 1267','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1274','Клиент 1268','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1275','Клиент 1269','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1276','Клиент 1270','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1277','Клиент 1271','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1278','Клиент 1272','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1279','Клиент 1273','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1280','Клиент 1274','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1281','Клиент 1275','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1282','Клиент 1276','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1283','Клиент 1277','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1284','Клиент 1278','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1285','Клиент 1279','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1286','Клиент 1280','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1287','Клиент 1281','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1288','Клиент 1282','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1289','Клиент 1283','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1290','Клиент 1284','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1291','Клиент 1285','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1292','Клиент 1286','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1293','Клиент 1287','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1294','Клиент 1288','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1295','Клиент 1289','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1296','Клиент 1290','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1297','Клиент 1291','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1298','Клиент 1292','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1299','Клиент 1293','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1300','Клиент 1294','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1301','Клиент 1295','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1302','Клиент 1296','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1303','Клиент 1297','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1304','Клиент 1298','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1305','Клиент 1299','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1306','Клиент 1300','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1307','Клиент 1301','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1308','Клиент 1302','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1309','Клиент 1303','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1310','Клиент 1304','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1311','Клиент 1305','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1312','Клиент 1306','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1313','Клиент 1307','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1314','Клиент 1308','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1315','Клиент 1309','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1316','Клиент 1310','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1317','Клиент 1311','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1318','Клиент 1312','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1319','Клиент 1313','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1320','Клиент 1314','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1321','Клиент 1315','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1322','Клиент 1316','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1323','Клиент 1317','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1324','Клиент 1318','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1325','Клиент 1319','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1326','Клиент 1320','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1327','Клиент 1321','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1328','Клиент 1322','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1329','Клиент 1323','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1330','Клиент 1324','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1331','Клиент 1325','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1332','Клиент 1326','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1333','Клиент 1327','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1334','Клиент 1328','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1335','Клиент 1329','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1336','Клиент 1330','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1337','Клиент 1331','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1338','Клиент 1332','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1339','Клиент 1333','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1340','Клиент 1334','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1341','Клиент 1335','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1342','Клиент 1336','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1343','Клиент 1337','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1344','Клиент 1338','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1345','Клиент 1339','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1346','Клиент 1340','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1347','Клиент 1341','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1348','Клиент 1342','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1349','Клиент 1343','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1350','Клиент 1344','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1351','Клиент 1345','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1352','Клиент 1346','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1353','Клиент 1347','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1354','Клиент 1348','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1355','Клиент 1349','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1356','Клиент 1350','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1357','Клиент 1351','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1358','Клиент 1352','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1359','Клиент 1353','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1360','Клиент 1354','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1361','Клиент 1355','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1362','Клиент 1356','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1363','Клиент 1357','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1364','Клиент 1358','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1365','Клиент 1359','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1366','Клиент 1360','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1367','Клиент 1361','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1368','Клиент 1362','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1369','Клиент 1363','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1370','Клиент 1364','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1371','Клиент 1365','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1372','Клиент 1366','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1373','Клиент 1367','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1374','Клиент 1368','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1375','Клиент 1369','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1376','Клиент 1370','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1377','Клиент 1371','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1378','Клиент 1372','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1379','Клиент 1373','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1380','Клиент 1374','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1381','Клиент 1375','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1382','Клиент 1376','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1383','Клиент 1377','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1384','Клиент 1378','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1385','Клиент 1379','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1386','Клиент 1380','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1387','Клиент 1381','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1388','Клиент 1382','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1389','Клиент 1383','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1390','Клиент 1384','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1391','Клиент 1385','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1392','Клиент 1386','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1393','Клиент 1387','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1394','Клиент 1388','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1395','Клиент 1389','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1396','Клиент 1390','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1397','Клиент 1391','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1398','Клиент 1392','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1399','Клиент 1393','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1400','Клиент 1394','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1401','Клиент 1395','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1402','Клиент 1396','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1403','Клиент 1397','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1404','Клиент 1398','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1405','Клиент 1399','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1406','Клиент 1400','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1407','Клиент 1401','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1408','Клиент 1402','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1409','Клиент 1403','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1410','Клиент 1404','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1411','Клиент 1405','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1412','Клиент 1406','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1413','Клиент 1407','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1414','Клиент 1408','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1415','Клиент 1409','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1416','Клиент 1410','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1417','Клиент 1411','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1418','Клиент 1412','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1419','Клиент 1413','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1420','Клиент 1414','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1421','Клиент 1415','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1422','Клиент 1416','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1423','Клиент 1417','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1424','Клиент 1418','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1425','Клиент 1419','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1426','Клиент 1420','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1427','Клиент 1421','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1428','Клиент 1422','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1429','Клиент 1423','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1430','Клиент 1424','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1431','Клиент 1425','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1432','Клиент 1426','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1433','Клиент 1427','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1434','Клиент 1428','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1435','Клиент 1429','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1436','Клиент 1430','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1437','Клиент 1431','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1438','Клиент 1432','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1439','Клиент 1433','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1440','Клиент 1434','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1441','Клиент 1435','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1442','Клиент 1436','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1443','Клиент 1437','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1444','Клиент 1438','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1445','Клиент 1439','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1446','Клиент 1440','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1447','Клиент 1441','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1448','Клиент 1442','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1449','Клиент 1443','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1450','Клиент 1444','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1451','Клиент 1445','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1452','Клиент 1446','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1453','Клиент 1447','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1454','Клиент 1448','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1455','Клиент 1449','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1456','Клиент 1450','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1457','Клиент 1451','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1458','Клиент 1452','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1459','Клиент 1453','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1460','Клиент 1454','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1461','Клиент 1455','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1462','Клиент 1456','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1463','Клиент 1457','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1464','Клиент 1458','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1465','Клиент 1459','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1466','Клиент 1460','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1467','Клиент 1461','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1468','Клиент 1462','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1469','Клиент 1463','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1470','Клиент 1464','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1471','Клиент 1465','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1472','Клиент 1466','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1473','Клиент 1467','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1474','Клиент 1468','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1475','Клиент 1469','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1476','Клиент 1470','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1477','Клиент 1471','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1478','Клиент 1472','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1479','Клиент 1473','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1480','Клиент 1474','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1481','Клиент 1475','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1482','Клиент 1476','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1483','Клиент 1477','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1484','Клиент 1478','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1485','Клиент 1479','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1486','Клиент 1480','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1487','Клиент 1481','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1488','Клиент 1482','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1489','Клиент 1483','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1490','Клиент 1484','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1491','Клиент 1485','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1492','Клиент 1486','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1493','Клиент 1487','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1494','Клиент 1488','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1495','Клиент 1489','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1496','Клиент 1490','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1497','Клиент 1491','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1498','Клиент 1492','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1499','Клиент 1493','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1500','Клиент 1494','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1501','Клиент 1495','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1502','Клиент 1496','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1503','Клиент 1497','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1504','Клиент 1498','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1505','Клиент 1499','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1506','Клиент 1500','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1507','Клиент 1501','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1508','Клиент 1502','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1509','Клиент 1503','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1510','Клиент 1504','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1511','Клиент 1505','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1512','Клиент 1506','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1513','Клиент 1507','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1514','Клиент 1508','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1515','Клиент 1509','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1516','Клиент 1510','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1517','Клиент 1511','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1518','Клиент 1512','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1519','Клиент 1513','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1520','Клиент 1514','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1521','Клиент 1515','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1522','Клиент 1516','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1523','Клиент 1517','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1524','Клиент 1518','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1525','Клиент 1519','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1526','Клиент 1520','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1527','Клиент 1521','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1528','Клиент 1522','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1529','Клиент 1523','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1530','Клиент 1524','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1531','Клиент 1525','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1532','Клиент 1526','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1533','Клиент 1527','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1534','Клиент 1528','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1535','Клиент 1529','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1536','Клиент 1530','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1537','Клиент 1531','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1538','Клиент 1532','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1539','Клиент 1533','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1540','Клиент 1534','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1541','Клиент 1535','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1542','Клиент 1536','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1543','Клиент 1537','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1544','Клиент 1538','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1545','Клиент 1539','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1546','Клиент 1540','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1547','Клиент 1541','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1548','Клиент 1542','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1549','Клиент 1543','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1550','Клиент 1544','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1551','Клиент 1545','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1552','Клиент 1546','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1553','Клиент 1547','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1554','Клиент 1548','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1555','Клиент 1549','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1556','Клиент 1550','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1557','Клиент 1551','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1558','Клиент 1552','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1559','Клиент 1553','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1560','Клиент 1554','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1561','Клиент 1555','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1562','Клиент 1556','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1563','Клиент 1557','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1564','Клиент 1558','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1565','Клиент 1559','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1566','Клиент 1560','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1567','Клиент 1561','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1568','Клиент 1562','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1569','Клиент 1563','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1570','Клиент 1564','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1571','Клиент 1565','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1572','Клиент 1566','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1573','Клиент 1567','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1574','Клиент 1568','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1575','Клиент 1569','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1576','Клиент 1570','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1577','Клиент 1571','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1578','Клиент 1572','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1579','Клиент 1573','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1580','Клиент 1574','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1581','Клиент 1575','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1582','Клиент 1576','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1583','Клиент 1577','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1584','Клиент 1578','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1585','Клиент 1579','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1586','Клиент 1580','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1587','Клиент 1581','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1588','Клиент 1582','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1589','Клиент 1583','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1590','Клиент 1584','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1591','Клиент 1585','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1592','Клиент 1586','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1593','Клиент 1587','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1594','Клиент 1588','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1595','Клиент 1589','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1596','Клиент 1590','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1597','Клиент 1591','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1598','Клиент 1592','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1599','Клиент 1593','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1600','Клиент 1594','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1601','Клиент 1595','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1602','Клиент 1596','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1603','Клиент 1597','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1604','Клиент 1598','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1605','Клиент 1599','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1606','Клиент 1600','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1607','Клиент 1601','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1608','Клиент 1602','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1609','Клиент 1603','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1610','Клиент 1604','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1611','Клиент 1605','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1612','Клиент 1606','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1613','Клиент 1607','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1614','Клиент 1608','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1615','Клиент 1609','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1616','Клиент 1610','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1617','Клиент 1611','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1618','Клиент 1612','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1619','Клиент 1613','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1620','Клиент 1614','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1621','Клиент 1615','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1622','Клиент 1616','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1623','Клиент 1617','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1624','Клиент 1618','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1625','Клиент 1619','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1626','Клиент 1620','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1627','Клиент 1621','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1628','Клиент 1622','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1629','Клиент 1623','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1630','Клиент 1624','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1631','Клиент 1625','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1632','Клиент 1626','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1633','Клиент 1627','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1634','Клиент 1628','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1635','Клиент 1629','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1636','Клиент 1630','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1637','Клиент 1631','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1638','Клиент 1632','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1639','Клиент 1633','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1640','Клиент 1634','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1641','Клиент 1635','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1642','Клиент 1636','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1643','Клиент 1637','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1644','Клиент 1638','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1645','Клиент 1639','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1646','Клиент 1640','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1647','Клиент 1641','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1648','Клиент 1642','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1649','Клиент 1643','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1650','Клиент 1644','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1651','Клиент 1645','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1652','Клиент 1646','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1653','Клиент 1647','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1654','Клиент 1648','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1655','Клиент 1649','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1656','Клиент 1650','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1657','Клиент 1651','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1658','Клиент 1652','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1659','Клиент 1653','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1660','Клиент 1654','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1661','Клиент 1655','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1662','Клиент 1656','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1663','Клиент 1657','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1664','Клиент 1658','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1665','Клиент 1659','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1666','Клиент 1660','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1667','Клиент 1661','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1668','Клиент 1662','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1669','Клиент 1663','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1670','Клиент 1664','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1671','Клиент 1665','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1672','Клиент 1666','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1673','Клиент 1667','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1674','Клиент 1668','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1675','Клиент 1669','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1676','Клиент 1670','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1677','Клиент 1671','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1678','Клиент 1672','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1679','Клиент 1673','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1680','Клиент 1674','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1681','Клиент 1675','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1682','Клиент 1676','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1683','Клиент 1677','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1684','Клиент 1678','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1685','Клиент 1679','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1686','Клиент 1680','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1687','Клиент 1681','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1688','Клиент 1682','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1689','Клиент 1683','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1690','Клиент 1684','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1691','Клиент 1685','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1692','Клиент 1686','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1693','Клиент 1687','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1694','Клиент 1688','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1695','Клиент 1689','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1696','Клиент 1690','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1697','Клиент 1691','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1698','Клиент 1692','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1699','Клиент 1693','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1700','Клиент 1694','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1701','Клиент 1695','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1702','Клиент 1696','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1703','Клиент 1697','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1704','Клиент 1698','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1705','Клиент 1699','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1706','Клиент 1700','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1707','Клиент 1701','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1708','Клиент 1702','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1709','Клиент 1703','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1710','Клиент 1704','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1711','Клиент 1705','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1712','Клиент 1706','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1713','Клиент 1707','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1714','Клиент 1708','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1715','Клиент 1709','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1716','Клиент 1710','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1717','Клиент 1711','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1718','Клиент 1712','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1719','Клиент 1713','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1720','Клиент 1714','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1721','Клиент 1715','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1722','Клиент 1716','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1723','Клиент 1717','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1724','Клиент 1718','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1725','Клиент 1719','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1726','Клиент 1720','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1727','Клиент 1721','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1728','Клиент 1722','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1729','Клиент 1723','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1730','Клиент 1724','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1731','Клиент 1725','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1732','Клиент 1726','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1733','Клиент 1727','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1734','Клиент 1728','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1735','Клиент 1729','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1736','Клиент 1730','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1737','Клиент 1731','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1738','Клиент 1732','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1739','Клиент 1733','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1740','Клиент 1734','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1741','Клиент 1735','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1742','Клиент 1736','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1743','Клиент 1737','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1744','Клиент 1738','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1745','Клиент 1739','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1746','Клиент 1740','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1747','Клиент 1741','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1748','Клиент 1742','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1749','Клиент 1743','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1750','Клиент 1744','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1751','Клиент 1745','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1752','Клиент 1746','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1753','Клиент 1747','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1754','Клиент 1748','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1755','Клиент 1749','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1756','Клиент 1750','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1757','Клиент 1751','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1758','Клиент 1752','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1759','Клиент 1753','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1760','Клиент 1754','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1761','Клиент 1755','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1762','Клиент 1756','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1763','Клиент 1757','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1764','Клиент 1758','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1765','Клиент 1759','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1766','Клиент 1760','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1767','Клиент 1761','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1768','Клиент 1762','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1769','Клиент 1763','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1770','Клиент 1764','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1771','Клиент 1765','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1772','Клиент 1766','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1773','Клиент 1767','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1774','Клиент 1768','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1775','Клиент 1769','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1776','Клиент 1770','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1777','Клиент 1771','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1778','Клиент 1772','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1779','Клиент 1773','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1780','Клиент 1774','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1781','Клиент 1775','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1782','Клиент 1776','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1783','Клиент 1777','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1784','Клиент 1778','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1785','Клиент 1779','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1786','Клиент 1780','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1787','Клиент 1781','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1788','Клиент 1782','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1789','Клиент 1783','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1790','Клиент 1784','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1791','Клиент 1785','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1792','Клиент 1786','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1793','Клиент 1787','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1794','Клиент 1788','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1795','Клиент 1789','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1796','Клиент 1790','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1797','Клиент 1791','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1798','Клиент 1792','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1799','Клиент 1793','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1800','Клиент 1794','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1801','Клиент 1795','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1802','Клиент 1796','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1803','Клиент 1797','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1804','Клиент 1798','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1805','Клиент 1799','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1806','Клиент 1800','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1807','Клиент 1801','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1808','Клиент 1802','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1809','Клиент 1803','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1810','Клиент 1804','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1811','Клиент 1805','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1812','Клиент 1806','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1813','Клиент 1807','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1814','Клиент 1808','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1815','Клиент 1809','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1816','Клиент 1810','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1817','Клиент 1811','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1818','Клиент 1812','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1819','Клиент 1813','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1820','Клиент 1814','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1821','Клиент 1815','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1822','Клиент 1816','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1823','Клиент 1817','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1824','Клиент 1818','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1825','Клиент 1819','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1826','Клиент 1820','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1827','Клиент 1821','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1828','Клиент 1822','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1829','Клиент 1823','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1830','Клиент 1824','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1831','Клиент 1825','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1832','Клиент 1826','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1833','Клиент 1827','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1834','Клиент 1828','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1835','Клиент 1829','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1836','Клиент 1830','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1837','Клиент 1831','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1838','Клиент 1832','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1839','Клиент 1833','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1840','Клиент 1834','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1841','Клиент 1835','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1842','Клиент 1836','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1843','Клиент 1837','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1844','Клиент 1838','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1845','Клиент 1839','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1846','Клиент 1840','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1847','Клиент 1841','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1848','Клиент 1842','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1849','Клиент 1843','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1850','Клиент 1844','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1851','Клиент 1845','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1852','Клиент 1846','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1853','Клиент 1847','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1854','Клиент 1848','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1855','Клиент 1849','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1856','Клиент 1850','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1857','Клиент 1851','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1858','Клиент 1852','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1859','Клиент 1853','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1860','Клиент 1854','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1861','Клиент 1855','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1862','Клиент 1856','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1863','Клиент 1857','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1864','Клиент 1858','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1865','Клиент 1859','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1866','Клиент 1860','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1867','Клиент 1861','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1868','Клиент 1862','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1869','Клиент 1863','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1870','Клиент 1864','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1871','Клиент 1865','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1872','Клиент 1866','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1873','Клиент 1867','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1874','Клиент 1868','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1875','Клиент 1869','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1876','Клиент 1870','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1877','Клиент 1871','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1878','Клиент 1872','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1879','Клиент 1873','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1880','Клиент 1874','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1881','Клиент 1875','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1882','Клиент 1876','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1883','Клиент 1877','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1884','Клиент 1878','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1885','Клиент 1879','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1886','Клиент 1880','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1887','Клиент 1881','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1888','Клиент 1882','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1889','Клиент 1883','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1890','Клиент 1884','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1891','Клиент 1885','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1892','Клиент 1886','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1893','Клиент 1887','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1894','Клиент 1888','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1895','Клиент 1889','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1896','Клиент 1890','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1897','Клиент 1891','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1898','Клиент 1892','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1899','Клиент 1893','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1900','Клиент 1894','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1901','Клиент 1895','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1902','Клиент 1896','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1903','Клиент 1897','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1904','Клиент 1898','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1905','Клиент 1899','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1906','Клиент 1900','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1907','Клиент 1901','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1908','Клиент 1902','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1909','Клиент 1903','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1910','Клиент 1904','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1911','Клиент 1905','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1912','Клиент 1906','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1913','Клиент 1907','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1914','Клиент 1908','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1915','Клиент 1909','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1916','Клиент 1910','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1917','Клиент 1911','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1918','Клиент 1912','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1919','Клиент 1913','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1920','Клиент 1914','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1921','Клиент 1915','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1922','Клиент 1916','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1923','Клиент 1917','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1924','Клиент 1918','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1925','Клиент 1919','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1926','Клиент 1920','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1927','Клиент 1921','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1928','Клиент 1922','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1929','Клиент 1923','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1930','Клиент 1924','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1931','Клиент 1925','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1932','Клиент 1926','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1933','Клиент 1927','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1934','Клиент 1928','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1935','Клиент 1929','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1936','Клиент 1930','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1937','Клиент 1931','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1938','Клиент 1932','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1939','Клиент 1933','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1940','Клиент 1934','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1941','Клиент 1935','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1942','Клиент 1936','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1943','Клиент 1937','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1944','Клиент 1938','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1945','Клиент 1939','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1946','Клиент 1940','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1947','Клиент 1941','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1948','Клиент 1942','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1949','Клиент 1943','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1950','Клиент 1944','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1951','Клиент 1945','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1952','Клиент 1946','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1953','Клиент 1947','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1954','Клиент 1948','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1955','Клиент 1949','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1956','Клиент 1950','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1957','Клиент 1951','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1958','Клиент 1952','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1959','Клиент 1953','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1960','Клиент 1954','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1961','Клиент 1955','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1962','Клиент 1956','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1963','Клиент 1957','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1964','Клиент 1958','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1965','Клиент 1959','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1966','Клиент 1960','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1967','Клиент 1961','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1968','Клиент 1962','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1969','Клиент 1963','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1970','Клиент 1964','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1971','Клиент 1965','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1972','Клиент 1966','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1973','Клиент 1967','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1974','Клиент 1968','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1975','Клиент 1969','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1976','Клиент 1970','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1977','Клиент 1971','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1978','Клиент 1972','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1979','Клиент 1973','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1980','Клиент 1974','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1981','Клиент 1975','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1982','Клиент 1976','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1983','Клиент 1977','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1984','Клиент 1978','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1985','Клиент 1979','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1986','Клиент 1980','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1987','Клиент 1981','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1988','Клиент 1982','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1989','Клиент 1983','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1990','Клиент 1984','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1991','Клиент 1985','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1992','Клиент 1986','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1993','Клиент 1987','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1994','Клиент 1988','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1995','Клиент 1989','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1996','Клиент 1990','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1997','Клиент 1991','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1998','Клиент 1992','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('1999','Клиент 1993','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2000','Клиент 1994','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2001','Клиент 1995','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2002','Клиент 1996','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2003','Клиент 1997','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2004','Клиент 1998','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2005','Клиент 1999','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2006','Клиент 2000','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2007','Клиент 2001','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2008','Клиент 2002','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2009','Клиент 2003','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2010','Клиент 2004','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2011','Клиент 2005','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2012','Клиент 2006','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2013','Клиент 2007','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2014','Клиент 2008','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2015','Клиент 2009','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2016','Клиент 2010','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2017','Клиент 2011','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2018','Клиент 2012','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2019','Клиент 2013','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2020','Клиент 2014','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2021','Клиент 2015','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2022','Клиент 2016','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2023','Клиент 2017','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2024','Клиент 2018','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2025','Клиент 2019','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2026','Клиент 2020','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2027','Клиент 2021','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2028','Клиент 2022','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2029','Клиент 2023','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2030','Клиент 2024','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2031','Клиент 2025','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2032','Клиент 2026','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2033','Клиент 2027','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2034','Клиент 2028','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2035','Клиент 2029','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2036','Клиент 2030','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2037','Клиент 2031','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2038','Клиент 2032','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2039','Клиент 2033','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2040','Клиент 2034','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2041','Клиент 2035','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2042','Клиент 2036','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2043','Клиент 2037','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2044','Клиент 2038','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2045','Клиент 2039','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2046','Клиент 2040','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2047','Клиент 2041','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2048','Клиент 2042','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2049','Клиент 2043','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2050','Клиент 2044','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2051','Клиент 2045','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2052','Клиент 2046','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2053','Клиент 2047','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2054','Клиент 2048','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2055','Клиент 2049','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2056','Клиент 2050','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2057','Клиент 2051','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2058','Клиент 2052','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2059','Клиент 2053','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2060','Клиент 2054','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2061','Клиент 2055','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2062','Клиент 2056','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2063','Клиент 2057','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2064','Клиент 2058','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2065','Клиент 2059','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2066','Клиент 2060','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2067','Клиент 2061','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2068','Клиент 2062','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2069','Клиент 2063','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2070','Клиент 2064','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2071','Клиент 2065','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2072','Клиент 2066','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2073','Клиент 2067','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2074','Клиент 2068','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2075','Клиент 2069','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2076','Клиент 2070','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2077','Клиент 2071','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2078','Клиент 2072','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2079','Клиент 2073','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2080','Клиент 2074','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2081','Клиент 2075','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2082','Клиент 2076','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2083','Клиент 2077','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2084','Клиент 2078','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2085','Клиент 2079','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2086','Клиент 2080','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2087','Клиент 2081','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2088','Клиент 2082','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2089','Клиент 2083','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2090','Клиент 2084','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2091','Клиент 2085','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2092','Клиент 2086','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2093','Клиент 2087','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2094','Клиент 2088','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2095','Клиент 2089','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2096','Клиент 2090','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2097','Клиент 2091','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2098','Клиент 2092','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2099','Клиент 2093','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2100','Клиент 2094','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2101','Клиент 2095','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2102','Клиент 2096','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2103','Клиент 2097','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2104','Клиент 2098','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2105','Клиент 2099','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2106','Клиент 2100','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2107','Клиент 2101','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2108','Клиент 2102','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2109','Клиент 2103','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2110','Клиент 2104','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2111','Клиент 2105','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2112','Клиент 2106','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2113','Клиент 2107','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2114','Клиент 2108','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2115','Клиент 2109','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2116','Клиент 2110','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2117','Клиент 2111','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2118','Клиент 2112','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2119','Клиент 2113','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2120','Клиент 2114','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2121','Клиент 2115','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2122','Клиент 2116','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2123','Клиент 2117','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2124','Клиент 2118','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2125','Клиент 2119','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2126','Клиент 2120','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2127','Клиент 2121','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2128','Клиент 2122','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2129','Клиент 2123','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2130','Клиент 2124','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2131','Клиент 2125','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2132','Клиент 2126','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2133','Клиент 2127','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2134','Клиент 2128','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2135','Клиент 2129','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2136','Клиент 2130','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2137','Клиент 2131','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2138','Клиент 2132','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2139','Клиент 2133','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2140','Клиент 2134','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2141','Клиент 2135','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2142','Клиент 2136','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2143','Клиент 2137','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2144','Клиент 2138','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2145','Клиент 2139','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2146','Клиент 2140','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2147','Клиент 2141','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2148','Клиент 2142','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2149','Клиент 2143','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2150','Клиент 2144','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2151','Клиент 2145','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2152','Клиент 2146','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2153','Клиент 2147','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2154','Клиент 2148','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2155','Клиент 2149','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2156','Клиент 2150','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2157','Клиент 2151','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2158','Клиент 2152','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2159','Клиент 2153','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2160','Клиент 2154','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2161','Клиент 2155','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2162','Клиент 2156','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2163','Клиент 2157','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2164','Клиент 2158','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2165','Клиент 2159','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2166','Клиент 2160','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2167','Клиент 2161','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2168','Клиент 2162','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2169','Клиент 2163','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2170','Клиент 2164','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2171','Клиент 2165','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2172','Клиент 2166','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2173','Клиент 2167','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2174','Клиент 2168','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2175','Клиент 2169','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2176','Клиент 2170','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2177','Клиент 2171','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2178','Клиент 2172','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2179','Клиент 2173','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2180','Клиент 2174','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2181','Клиент 2175','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2182','Клиент 2176','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2183','Клиент 2177','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2184','Клиент 2178','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2185','Клиент 2179','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2186','Клиент 2180','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2187','Клиент 2181','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2188','Клиент 2182','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2189','Клиент 2183','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2190','Клиент 2184','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2191','Клиент 2185','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2192','Клиент 2186','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2193','Клиент 2187','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2194','Клиент 2188','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2195','Клиент 2189','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2196','Клиент 2190','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2197','Клиент 2191','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2198','Клиент 2192','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2199','Клиент 2193','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2200','Клиент 2194','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2201','Клиент 2195','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2202','Клиент 2196','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2203','Клиент 2197','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2204','Клиент 2198','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2205','Клиент 2199','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2206','Клиент 2200','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2207','Клиент 2201','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2208','Клиент 2202','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2209','Клиент 2203','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2210','Клиент 2204','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2211','Клиент 2205','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2212','Клиент 2206','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2213','Клиент 2207','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2214','Клиент 2208','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2215','Клиент 2209','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2216','Клиент 2210','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2217','Клиент 2211','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2218','Клиент 2212','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2219','Клиент 2213','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2220','Клиент 2214','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2221','Клиент 2215','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2222','Клиент 2216','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2223','Клиент 2217','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2224','Клиент 2218','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2225','Клиент 2219','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2226','Клиент 2220','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2227','Клиент 2221','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2228','Клиент 2222','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2229','Клиент 2223','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2230','Клиент 2224','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2231','Клиент 2225','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2232','Клиент 2226','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2233','Клиент 2227','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2234','Клиент 2228','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2235','Клиент 2229','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2236','Клиент 2230','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2237','Клиент 2231','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2238','Клиент 2232','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2239','Клиент 2233','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2240','Клиент 2234','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2241','Клиент 2235','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2242','Клиент 2236','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2243','Клиент 2237','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2244','Клиент 2238','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2245','Клиент 2239','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2246','Клиент 2240','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2247','Клиент 2241','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2248','Клиент 2242','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2249','Клиент 2243','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2250','Клиент 2244','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2251','Клиент 2245','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2252','Клиент 2246','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2253','Клиент 2247','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2254','Клиент 2248','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2255','Клиент 2249','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2256','Клиент 2250','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2257','Клиент 2251','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2258','Клиент 2252','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2259','Клиент 2253','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2260','Клиент 2254','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2261','Клиент 2255','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2262','Клиент 2256','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2263','Клиент 2257','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2264','Клиент 2258','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2265','Клиент 2259','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2266','Клиент 2260','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2267','Клиент 2261','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2268','Клиент 2262','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2269','Клиент 2263','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2270','Клиент 2264','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2271','Клиент 2265','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2272','Клиент 2266','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2273','Клиент 2267','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2274','Клиент 2268','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2275','Клиент 2269','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2276','Клиент 2270','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2277','Клиент 2271','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2278','Клиент 2272','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2279','Клиент 2273','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2280','Клиент 2274','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2281','Клиент 2275','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2282','Клиент 2276','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2283','Клиент 2277','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2284','Клиент 2278','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2285','Клиент 2279','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2286','Клиент 2280','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2287','Клиент 2281','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2288','Клиент 2282','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2289','Клиент 2283','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2290','Клиент 2284','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2291','Клиент 2285','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2292','Клиент 2286','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2293','Клиент 2287','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2294','Клиент 2288','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2295','Клиент 2289','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2296','Клиент 2290','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2297','Клиент 2291','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2298','Клиент 2292','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2299','Клиент 2293','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2300','Клиент 2294','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2301','Клиент 2295','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2302','Клиент 2296','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2303','Клиент 2297','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2304','Клиент 2298','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2305','Клиент 2299','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2306','Клиент 2300','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2307','Клиент 2301','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2308','Клиент 2302','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2309','Клиент 2303','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2310','Клиент 2304','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2311','Клиент 2305','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2312','Клиент 2306','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2313','Клиент 2307','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2314','Клиент 2308','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2315','Клиент 2309','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2316','Клиент 2310','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2317','Клиент 2311','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2318','Клиент 2312','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2319','Клиент 2313','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2320','Клиент 2314','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2321','Клиент 2315','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2322','Клиент 2316','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2323','Клиент 2317','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2324','Клиент 2318','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2325','Клиент 2319','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2326','Клиент 2320','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2327','Клиент 2321','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2328','Клиент 2322','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2329','Клиент 2323','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2330','Клиент 2324','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2331','Клиент 2325','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2332','Клиент 2326','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2333','Клиент 2327','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2334','Клиент 2328','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2335','Клиент 2329','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2336','Клиент 2330','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2337','Клиент 2331','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2338','Клиент 2332','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2339','Клиент 2333','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2340','Клиент 2334','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2341','Клиент 2335','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2342','Клиент 2336','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2343','Клиент 2337','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2344','Клиент 2338','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2345','Клиент 2339','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2346','Клиент 2340','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2347','Клиент 2341','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2348','Клиент 2342','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2349','Клиент 2343','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2350','Клиент 2344','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2351','Клиент 2345','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2352','Клиент 2346','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2353','Клиент 2347','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2354','Клиент 2348','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2355','Клиент 2349','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2356','Клиент 2350','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2357','Клиент 2351','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2358','Клиент 2352','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2359','Клиент 2353','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2360','Клиент 2354','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2361','Клиент 2355','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2362','Клиент 2356','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2363','Клиент 2357','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2364','Клиент 2358','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2365','Клиент 2359','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2366','Клиент 2360','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2367','Клиент 2361','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2368','Клиент 2362','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2369','Клиент 2363','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2370','Клиент 2364','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2371','Клиент 2365','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2372','Клиент 2366','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2373','Клиент 2367','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2374','Клиент 2368','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2375','Клиент 2369','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2376','Клиент 2370','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2377','Клиент 2371','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2378','Клиент 2372','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2379','Клиент 2373','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2380','Клиент 2374','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2381','Клиент 2375','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2382','Клиент 2376','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2383','Клиент 2377','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2384','Клиент 2378','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2385','Клиент 2379','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2386','Клиент 2380','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2387','Клиент 2381','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2388','Клиент 2382','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2389','Клиент 2383','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2390','Клиент 2384','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2391','Клиент 2385','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2392','Клиент 2386','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2393','Клиент 2387','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2394','Клиент 2388','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2395','Клиент 2389','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2396','Клиент 2390','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2397','Клиент 2391','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2398','Клиент 2392','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2399','Клиент 2393','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2400','Клиент 2394','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2401','Клиент 2395','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2402','Клиент 2396','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2403','Клиент 2397','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2404','Клиент 2398','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2405','Клиент 2399','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2406','Клиент 2400','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2407','Клиент 2401','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2408','Клиент 2402','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2409','Клиент 2403','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2410','Клиент 2404','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2411','Клиент 2405','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2412','Клиент 2406','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2413','Клиент 2407','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2414','Клиент 2408','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2415','Клиент 2409','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2416','Клиент 2410','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2417','Клиент 2411','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2418','Клиент 2412','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2419','Клиент 2413','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2420','Клиент 2414','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2421','Клиент 2415','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2422','Клиент 2416','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2423','Клиент 2417','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2424','Клиент 2418','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2425','Клиент 2419','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2426','Клиент 2420','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2427','Клиент 2421','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2428','Клиент 2422','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2429','Клиент 2423','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2430','Клиент 2424','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2431','Клиент 2425','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2432','Клиент 2426','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2433','Клиент 2427','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2434','Клиент 2428','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2435','Клиент 2429','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2436','Клиент 2430','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2437','Клиент 2431','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2438','Клиент 2432','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2439','Клиент 2433','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2440','Клиент 2434','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2441','Клиент 2435','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2442','Клиент 2436','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2443','Клиент 2437','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2444','Клиент 2438','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2445','Клиент 2439','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2446','Клиент 2440','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2447','Клиент 2441','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2448','Клиент 2442','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2449','Клиент 2443','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2450','Клиент 2444','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2451','Клиент 2445','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2452','Клиент 2446','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2453','Клиент 2447','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2454','Клиент 2448','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2455','Клиент 2449','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2456','Клиент 2450','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2457','Клиент 2451','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2458','Клиент 2452','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2459','Клиент 2453','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2460','Клиент 2454','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2461','Клиент 2455','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2462','Клиент 2456','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2463','Клиент 2457','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2464','Клиент 2458','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2465','Клиент 2459','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2466','Клиент 2460','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2467','Клиент 2461','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2468','Клиент 2462','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2469','Клиент 2463','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2470','Клиент 2464','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2471','Клиент 2465','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2472','Клиент 2466','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2473','Клиент 2467','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2474','Клиент 2468','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2475','Клиент 2469','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2476','Клиент 2470','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2477','Клиент 2471','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2478','Клиент 2472','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2479','Клиент 2473','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2480','Клиент 2474','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2481','Клиент 2475','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2482','Клиент 2476','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2483','Клиент 2477','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2484','Клиент 2478','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2485','Клиент 2479','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2486','Клиент 2480','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2487','Клиент 2481','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2488','Клиент 2482','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2489','Клиент 2483','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2490','Клиент 2484','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2491','Клиент 2485','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2492','Клиент 2486','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2493','Клиент 2487','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2494','Клиент 2488','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2495','Клиент 2489','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2496','Клиент 2490','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2497','Клиент 2491','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2498','Клиент 2492','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2499','Клиент 2493','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2500','Клиент 2494','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2501','Клиент 2495','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2502','Клиент 2496','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2503','Клиент 2497','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2504','Клиент 2498','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2505','Клиент 2499','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2506','Клиент 2500','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2507','Клиент 2501','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2508','Клиент 2502','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2509','Клиент 2503','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2510','Клиент 2504','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2511','Клиент 2505','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2512','Клиент 2506','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2513','Клиент 2507','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2514','Клиент 2508','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2515','Клиент 2509','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2516','Клиент 2510','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2517','Клиент 2511','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2518','Клиент 2512','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2519','Клиент 2513','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2520','Клиент 2514','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2521','Клиент 2515','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2522','Клиент 2516','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2523','Клиент 2517','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2524','Клиент 2518','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2525','Клиент 2519','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2526','Клиент 2520','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2527','Клиент 2521','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2528','Клиент 2522','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2529','Клиент 2523','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2530','Клиент 2524','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2531','Клиент 2525','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2532','Клиент 2526','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2533','Клиент 2527','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2534','Клиент 2528','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2535','Клиент 2529','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2536','Клиент 2530','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2537','Клиент 2531','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2538','Клиент 2532','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2539','Клиент 2533','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2540','Клиент 2534','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2541','Клиент 2535','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2542','Клиент 2536','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2543','Клиент 2537','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2544','Клиент 2538','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2545','Клиент 2539','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2546','Клиент 2540','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2547','Клиент 2541','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2548','Клиент 2542','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2549','Клиент 2543','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2550','Клиент 2544','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2551','Клиент 2545','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2552','Клиент 2546','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2553','Клиент 2547','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2554','Клиент 2548','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2555','Клиент 2549','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2556','Клиент 2550','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2557','Клиент 2551','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2558','Клиент 2552','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2559','Клиент 2553','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2560','Клиент 2554','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2561','Клиент 2555','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2562','Клиент 2556','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2563','Клиент 2557','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2564','Клиент 2558','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2565','Клиент 2559','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2566','Клиент 2560','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2567','Клиент 2561','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2568','Клиент 2562','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2569','Клиент 2563','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2570','Клиент 2564','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2571','Клиент 2565','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2572','Клиент 2566','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2573','Клиент 2567','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2574','Клиент 2568','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2575','Клиент 2569','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2576','Клиент 2570','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2577','Клиент 2571','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2578','Клиент 2572','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2579','Клиент 2573','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2580','Клиент 2574','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2581','Клиент 2575','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2582','Клиент 2576','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2583','Клиент 2577','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2584','Клиент 2578','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2585','Клиент 2579','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2586','Клиент 2580','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2587','Клиент 2581','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2588','Клиент 2582','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2589','Клиент 2583','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2590','Клиент 2584','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2591','Клиент 2585','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2592','Клиент 2586','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2593','Клиент 2587','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2594','Клиент 2588','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2595','Клиент 2589','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2596','Клиент 2590','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2597','Клиент 2591','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2598','Клиент 2592','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2599','Клиент 2593','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2600','Клиент 2594','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2601','Клиент 2595','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2602','Клиент 2596','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2603','Клиент 2597','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2604','Клиент 2598','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2605','Клиент 2599','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2606','Клиент 2600','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2607','Клиент 2601','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2608','Клиент 2602','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2609','Клиент 2603','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2610','Клиент 2604','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2611','Клиент 2605','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2612','Клиент 2606','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2613','Клиент 2607','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2614','Клиент 2608','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2615','Клиент 2609','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2616','Клиент 2610','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2617','Клиент 2611','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2618','Клиент 2612','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2619','Клиент 2613','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2620','Клиент 2614','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2621','Клиент 2615','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2622','Клиент 2616','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2623','Клиент 2617','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2624','Клиент 2618','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2625','Клиент 2619','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2626','Клиент 2620','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2627','Клиент 2621','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2628','Клиент 2622','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2629','Клиент 2623','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2630','Клиент 2624','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2631','Клиент 2625','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2632','Клиент 2626','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2633','Клиент 2627','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2634','Клиент 2628','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2635','Клиент 2629','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2636','Клиент 2630','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2637','Клиент 2631','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2638','Клиент 2632','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2639','Клиент 2633','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2640','Клиент 2634','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2641','Клиент 2635','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2642','Клиент 2636','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2643','Клиент 2637','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2644','Клиент 2638','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2645','Клиент 2639','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2646','Клиент 2640','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2647','Клиент 2641','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2648','Клиент 2642','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2649','Клиент 2643','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2650','Клиент 2644','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2651','Клиент 2645','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2652','Клиент 2646','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2653','Клиент 2647','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2654','Клиент 2648','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2655','Клиент 2649','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2656','Клиент 2650','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2657','Клиент 2651','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2658','Клиент 2652','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2659','Клиент 2653','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2660','Клиент 2654','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2661','Клиент 2655','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2662','Клиент 2656','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2663','Клиент 2657','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2664','Клиент 2658','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2665','Клиент 2659','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2666','Клиент 2660','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2667','Клиент 2661','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2668','Клиент 2662','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2669','Клиент 2663','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2670','Клиент 2664','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2671','Клиент 2665','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2672','Клиент 2666','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2673','Клиент 2667','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2674','Клиент 2668','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2675','Клиент 2669','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2676','Клиент 2670','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2677','Клиент 2671','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2678','Клиент 2672','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2679','Клиент 2673','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2680','Клиент 2674','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2681','Клиент 2675','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2682','Клиент 2676','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2683','Клиент 2677','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2684','Клиент 2678','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2685','Клиент 2679','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2686','Клиент 2680','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2687','Клиент 2681','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2688','Клиент 2682','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2689','Клиент 2683','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2690','Клиент 2684','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2691','Клиент 2685','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2692','Клиент 2686','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2693','Клиент 2687','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2694','Клиент 2688','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2695','Клиент 2689','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2696','Клиент 2690','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2697','Клиент 2691','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2698','Клиент 2692','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2699','Клиент 2693','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2700','Клиент 2694','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2701','Клиент 2695','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2702','Клиент 2696','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2703','Клиент 2697','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2704','Клиент 2698','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2705','Клиент 2699','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2706','Клиент 2700','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2707','Клиент 2701','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2708','Клиент 2702','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2709','Клиент 2703','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2710','Клиент 2704','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2711','Клиент 2705','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2712','Клиент 2706','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2713','Клиент 2707','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2714','Клиент 2708','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2715','Клиент 2709','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2716','Клиент 2710','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2717','Клиент 2711','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2718','Клиент 2712','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2719','Клиент 2713','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2720','Клиент 2714','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2721','Клиент 2715','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2722','Клиент 2716','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2723','Клиент 2717','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2724','Клиент 2718','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2725','Клиент 2719','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2726','Клиент 2720','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2727','Клиент 2721','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2728','Клиент 2722','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2729','Клиент 2723','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2730','Клиент 2724','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2731','Клиент 2725','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2732','Клиент 2726','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2733','Клиент 2727','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2734','Клиент 2728','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2735','Клиент 2729','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2736','Клиент 2730','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2737','Клиент 2731','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2738','Клиент 2732','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2739','Клиент 2733','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2740','Клиент 2734','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2741','Клиент 2735','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2742','Клиент 2736','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2743','Клиент 2737','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2744','Клиент 2738','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2745','Клиент 2739','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2746','Клиент 2740','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2747','Клиент 2741','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2748','Клиент 2742','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2749','Клиент 2743','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2750','Клиент 2744','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2751','Клиент 2745','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2752','Клиент 2746','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2753','Клиент 2747','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2754','Клиент 2748','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2755','Клиент 2749','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2756','Клиент 2750','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2757','Клиент 2751','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2758','Клиент 2752','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2759','Клиент 2753','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2760','Клиент 2754','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2761','Клиент 2755','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2762','Клиент 2756','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2763','Клиент 2757','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2764','Клиент 2758','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2765','Клиент 2759','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2766','Клиент 2760','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2767','Клиент 2761','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2768','Клиент 2762','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2769','Клиент 2763','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2770','Клиент 2764','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2771','Клиент 2765','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2772','Клиент 2766','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2773','Клиент 2767','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2774','Клиент 2768','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2775','Клиент 2769','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2776','Клиент 2770','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2777','Клиент 2771','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2778','Клиент 2772','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2779','Клиент 2773','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2780','Клиент 2774','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2781','Клиент 2775','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2782','Клиент 2776','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2783','Клиент 2777','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2784','Клиент 2778','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2785','Клиент 2779','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2786','Клиент 2780','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2787','Клиент 2781','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2788','Клиент 2782','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2789','Клиент 2783','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2790','Клиент 2784','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2791','Клиент 2785','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2792','Клиент 2786','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2793','Клиент 2787','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2794','Клиент 2788','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2795','Клиент 2789','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2796','Клиент 2790','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2797','Клиент 2791','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2798','Клиент 2792','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2799','Клиент 2793','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2800','Клиент 2794','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2801','Клиент 2795','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2802','Клиент 2796','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2803','Клиент 2797','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2804','Клиент 2798','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2805','Клиент 2799','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2806','Клиент 2800','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2807','Клиент 2801','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2808','Клиент 2802','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2809','Клиент 2803','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2810','Клиент 2804','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2811','Клиент 2805','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2812','Клиент 2806','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2813','Клиент 2807','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2814','Клиент 2808','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2815','Клиент 2809','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2816','Клиент 2810','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2817','Клиент 2811','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2818','Клиент 2812','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2819','Клиент 2813','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2820','Клиент 2814','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2821','Клиент 2815','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2822','Клиент 2816','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2823','Клиент 2817','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2824','Клиент 2818','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2825','Клиент 2819','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2826','Клиент 2820','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2827','Клиент 2821','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2828','Клиент 2822','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2829','Клиент 2823','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2830','Клиент 2824','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2831','Клиент 2825','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2832','Клиент 2826','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2833','Клиент 2827','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2834','Клиент 2828','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2835','Клиент 2829','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2836','Клиент 2830','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2837','Клиент 2831','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2838','Клиент 2832','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2839','Клиент 2833','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2840','Клиент 2834','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2841','Клиент 2835','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2842','Клиент 2836','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2843','Клиент 2837','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2844','Клиент 2838','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2845','Клиент 2839','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2846','Клиент 2840','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2847','Клиент 2841','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2848','Клиент 2842','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2849','Клиент 2843','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2850','Клиент 2844','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2851','Клиент 2845','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2852','Клиент 2846','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2853','Клиент 2847','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2854','Клиент 2848','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2855','Клиент 2849','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2856','Клиент 2850','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2857','Клиент 2851','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2858','Клиент 2852','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2859','Клиент 2853','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2860','Клиент 2854','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2861','Клиент 2855','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2862','Клиент 2856','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2863','Клиент 2857','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2864','Клиент 2858','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2865','Клиент 2859','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2866','Клиент 2860','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2867','Клиент 2861','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2868','Клиент 2862','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2869','Клиент 2863','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2870','Клиент 2864','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2871','Клиент 2865','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2872','Клиент 2866','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2873','Клиент 2867','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2874','Клиент 2868','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2875','Клиент 2869','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2876','Клиент 2870','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2877','Клиент 2871','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2878','Клиент 2872','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2879','Клиент 2873','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2880','Клиент 2874','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2881','Клиент 2875','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2882','Клиент 2876','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2883','Клиент 2877','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2884','Клиент 2878','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2885','Клиент 2879','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2886','Клиент 2880','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2887','Клиент 2881','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2888','Клиент 2882','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2889','Клиент 2883','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2890','Клиент 2884','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2891','Клиент 2885','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2892','Клиент 2886','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2893','Клиент 2887','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2894','Клиент 2888','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2895','Клиент 2889','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2896','Клиент 2890','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2897','Клиент 2891','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2898','Клиент 2892','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2899','Клиент 2893','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2900','Клиент 2894','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2901','Клиент 2895','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2902','Клиент 2896','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2903','Клиент 2897','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2904','Клиент 2898','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2905','Клиент 2899','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2906','Клиент 2900','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2907','Клиент 2901','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2908','Клиент 2902','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2909','Клиент 2903','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2910','Клиент 2904','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2911','Клиент 2905','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2912','Клиент 2906','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2913','Клиент 2907','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2914','Клиент 2908','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2915','Клиент 2909','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2916','Клиент 2910','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2917','Клиент 2911','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2918','Клиент 2912','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2919','Клиент 2913','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2920','Клиент 2914','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2921','Клиент 2915','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2922','Клиент 2916','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2923','Клиент 2917','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2924','Клиент 2918','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2925','Клиент 2919','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2926','Клиент 2920','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2927','Клиент 2921','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2928','Клиент 2922','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2929','Клиент 2923','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2930','Клиент 2924','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2931','Клиент 2925','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2932','Клиент 2926','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2933','Клиент 2927','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2934','Клиент 2928','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2935','Клиент 2929','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2936','Клиент 2930','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2937','Клиент 2931','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2938','Клиент 2932','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2939','Клиент 2933','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2940','Клиент 2934','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2941','Клиент 2935','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2942','Клиент 2936','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2943','Клиент 2937','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2944','Клиент 2938','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2945','Клиент 2939','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2946','Клиент 2940','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2947','Клиент 2941','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2948','Клиент 2942','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2949','Клиент 2943','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2950','Клиент 2944','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2951','Клиент 2945','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2952','Клиент 2946','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2953','Клиент 2947','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2954','Клиент 2948','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2955','Клиент 2949','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2956','Клиент 2950','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2957','Клиент 2951','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2958','Клиент 2952','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2959','Клиент 2953','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2960','Клиент 2954','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2961','Клиент 2955','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2962','Клиент 2956','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2963','Клиент 2957','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2964','Клиент 2958','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2965','Клиент 2959','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2966','Клиент 2960','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2967','Клиент 2961','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2968','Клиент 2962','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2969','Клиент 2963','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2970','Клиент 2964','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2971','Клиент 2965','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2972','Клиент 2966','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2973','Клиент 2967','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2974','Клиент 2968','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2975','Клиент 2969','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2976','Клиент 2970','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2977','Клиент 2971','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2978','Клиент 2972','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2979','Клиент 2973','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2980','Клиент 2974','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2981','Клиент 2975','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2982','Клиент 2976','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2983','Клиент 2977','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2984','Клиент 2978','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2985','Клиент 2979','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2986','Клиент 2980','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2987','Клиент 2981','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2988','Клиент 2982','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2989','Клиент 2983','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2990','Клиент 2984','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2991','Клиент 2985','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2992','Клиент 2986','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2993','Клиент 2987','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2994','Клиент 2988','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2995','Клиент 2989','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2996','Клиент 2990','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2997','Клиент 2991','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2998','Клиент 2992','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('2999','Клиент 2993','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3000','Клиент 2994','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3001','Клиент 2995','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3002','Клиент 2996','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3003','Клиент 2997','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3004','Клиент 2998','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3005','Клиент 2999','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3006','Клиент 3000','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3007','Клиент 3001','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3008','Клиент 3002','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3009','Клиент 3003','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3010','Клиент 3004','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3011','Клиент 3005','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3012','Клиент 3006','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3013','Клиент 3007','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3014','Клиент 3008','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3015','Клиент 3009','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3016','Клиент 3010','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3017','Клиент 3011','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3018','Клиент 3012','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3019','Клиент 3013','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3020','Клиент 3014','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3021','Клиент 3015','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3022','Клиент 3016','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3023','Клиент 3017','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3024','Клиент 3018','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3025','Клиент 3019','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3026','Клиент 3020','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3027','Клиент 3021','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3028','Клиент 3022','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3029','Клиент 3023','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3030','Клиент 3024','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3031','Клиент 3025','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3032','Клиент 3026','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3033','Клиент 3027','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3034','Клиент 3028','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3035','Клиент 3029','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3036','Клиент 3030','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3037','Клиент 3031','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3038','Клиент 3032','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3039','Клиент 3033','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3040','Клиент 3034','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3041','Клиент 3035','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3042','Клиент 3036','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3043','Клиент 3037','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3044','Клиент 3038','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3045','Клиент 3039','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3046','Клиент 3040','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3047','Клиент 3041','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3048','Клиент 3042','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3049','Клиент 3043','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3050','Клиент 3044','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3051','Клиент 3045','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3052','Клиент 3046','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3053','Клиент 3047','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3054','Клиент 3048','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3055','Клиент 3049','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3056','Клиент 3050','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3057','Клиент 3051','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3058','Клиент 3052','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3059','Клиент 3053','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3060','Клиент 3054','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3061','Клиент 3055','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3062','Клиент 3056','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3063','Клиент 3057','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3064','Клиент 3058','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3065','Клиент 3059','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3066','Клиент 3060','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3067','Клиент 3061','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3068','Клиент 3062','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3069','Клиент 3063','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3070','Клиент 3064','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3071','Клиент 3065','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3072','Клиент 3066','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3073','Клиент 3067','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3074','Клиент 3068','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3075','Клиент 3069','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3076','Клиент 3070','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3077','Клиент 3071','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3078','Клиент 3072','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3079','Клиент 3073','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3080','Клиент 3074','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3081','Клиент 3075','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3082','Клиент 3076','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3083','Клиент 3077','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3084','Клиент 3078','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3085','Клиент 3079','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3086','Клиент 3080','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3087','Клиент 3081','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3088','Клиент 3082','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3089','Клиент 3083','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3090','Клиент 3084','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3091','Клиент 3085','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3092','Клиент 3086','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3093','Клиент 3087','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3094','Клиент 3088','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3095','Клиент 3089','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3096','Клиент 3090','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3097','Клиент 3091','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3098','Клиент 3092','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3099','Клиент 3093','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3100','Клиент 3094','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3101','Клиент 3095','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3102','Клиент 3096','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3103','Клиент 3097','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3104','Клиент 3098','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3105','Клиент 3099','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3106','Клиент 3100','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3107','Клиент 3101','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3108','Клиент 3102','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3109','Клиент 3103','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3110','Клиент 3104','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3111','Клиент 3105','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3112','Клиент 3106','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3113','Клиент 3107','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3114','Клиент 3108','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3115','Клиент 3109','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3116','Клиент 3110','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3117','Клиент 3111','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3118','Клиент 3112','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3119','Клиент 3113','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3120','Клиент 3114','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3121','Клиент 3115','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3122','Клиент 3116','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3123','Клиент 3117','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3124','Клиент 3118','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3125','Клиент 3119','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3126','Клиент 3120','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3127','Клиент 3121','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3128','Клиент 3122','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3129','Клиент 3123','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3130','Клиент 3124','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3131','Клиент 3125','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3132','Клиент 3126','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3133','Клиент 3127','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3134','Клиент 3128','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3135','Клиент 3129','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3136','Клиент 3130','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3137','Клиент 3131','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3138','Клиент 3132','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3139','Клиент 3133','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3140','Клиент 3134','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3141','Клиент 3135','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3142','Клиент 3136','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3143','Клиент 3137','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3144','Клиент 3138','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3145','Клиент 3139','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3146','Клиент 3140','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3147','Клиент 3141','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3148','Клиент 3142','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3149','Клиент 3143','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3150','Клиент 3144','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3151','Клиент 3145','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3152','Клиент 3146','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3153','Клиент 3147','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3154','Клиент 3148','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3155','Клиент 3149','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3156','Клиент 3150','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3157','Клиент 3151','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3158','Клиент 3152','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3159','Клиент 3153','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3160','Клиент 3154','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3161','Клиент 3155','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3162','Клиент 3156','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3163','Клиент 3157','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3164','Клиент 3158','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3165','Клиент 3159','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3166','Клиент 3160','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3167','Клиент 3161','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3168','Клиент 3162','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3169','Клиент 3163','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3170','Клиент 3164','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3171','Клиент 3165','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3172','Клиент 3166','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3173','Клиент 3167','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3174','Клиент 3168','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3175','Клиент 3169','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3176','Клиент 3170','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3177','Клиент 3171','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3178','Клиент 3172','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3179','Клиент 3173','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3180','Клиент 3174','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3181','Клиент 3175','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3182','Клиент 3176','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3183','Клиент 3177','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3184','Клиент 3178','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3185','Клиент 3179','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3186','Клиент 3180','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3187','Клиент 3181','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3188','Клиент 3182','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3189','Клиент 3183','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3190','Клиент 3184','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3191','Клиент 3185','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3192','Клиент 3186','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3193','Клиент 3187','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3194','Клиент 3188','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3195','Клиент 3189','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3196','Клиент 3190','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3197','Клиент 3191','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3198','Клиент 3192','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3199','Клиент 3193','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3200','Клиент 3194','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3201','Клиент 3195','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3202','Клиент 3196','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3203','Клиент 3197','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3204','Клиент 3198','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3205','Клиент 3199','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3206','Клиент 3200','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3207','Клиент 3201','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3208','Клиент 3202','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3209','Клиент 3203','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3210','Клиент 3204','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3211','Клиент 3205','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3212','Клиент 3206','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3213','Клиент 3207','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3214','Клиент 3208','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3215','Клиент 3209','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3216','Клиент 3210','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3217','Клиент 3211','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3218','Клиент 3212','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3219','Клиент 3213','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3220','Клиент 3214','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3221','Клиент 3215','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3222','Клиент 3216','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3223','Клиент 3217','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3224','Клиент 3218','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3225','Клиент 3219','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3226','Клиент 3220','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3227','Клиент 3221','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3228','Клиент 3222','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3229','Клиент 3223','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3230','Клиент 3224','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3231','Клиент 3225','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3232','Клиент 3226','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3233','Клиент 3227','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3234','Клиент 3228','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3235','Клиент 3229','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3236','Клиент 3230','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3237','Клиент 3231','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3238','Клиент 3232','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3239','Клиент 3233','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3240','Клиент 3234','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3241','Клиент 3235','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3242','Клиент 3236','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3243','Клиент 3237','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3244','Клиент 3238','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3245','Клиент 3239','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3246','Клиент 3240','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3247','Клиент 3241','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3248','Клиент 3242','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3249','Клиент 3243','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3250','Клиент 3244','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3251','Клиент 3245','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3252','Клиент 3246','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3253','Клиент 3247','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3254','Клиент 3248','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3255','Клиент 3249','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3256','Клиент 3250','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3257','Клиент 3251','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3258','Клиент 3252','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3259','Клиент 3253','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3260','Клиент 3254','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3261','Клиент 3255','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3262','Клиент 3256','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3263','Клиент 3257','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3264','Клиент 3258','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3265','Клиент 3259','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3266','Клиент 3260','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3267','Клиент 3261','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3268','Клиент 3262','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3269','Клиент 3263','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3270','Клиент 3264','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3271','Клиент 3265','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3272','Клиент 3266','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3273','Клиент 3267','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3274','Клиент 3268','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3275','Клиент 3269','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3276','Клиент 3270','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3277','Клиент 3271','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3278','Клиент 3272','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3279','Клиент 3273','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3280','Клиент 3274','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3281','Клиент 3275','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3282','Клиент 3276','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3283','Клиент 3277','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3284','Клиент 3278','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3285','Клиент 3279','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3286','Клиент 3280','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3287','Клиент 3281','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3288','Клиент 3282','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3289','Клиент 3283','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3290','Клиент 3284','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3291','Клиент 3285','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3292','Клиент 3286','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3293','Клиент 3287','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3294','Клиент 3288','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3295','Клиент 3289','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3296','Клиент 3290','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3297','Клиент 3291','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3298','Клиент 3292','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3299','Клиент 3293','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3300','Клиент 3294','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3301','Клиент 3295','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3302','Клиент 3296','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3303','Клиент 3297','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3304','Клиент 3298','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3305','Клиент 3299','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3306','Клиент 3300','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3307','Клиент 3301','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3308','Клиент 3302','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3309','Клиент 3303','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3310','Клиент 3304','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3311','Клиент 3305','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3312','Клиент 3306','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3313','Клиент 3307','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3314','Клиент 3308','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3315','Клиент 3309','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3316','Клиент 3310','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3317','Клиент 3311','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3318','Клиент 3312','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3319','Клиент 3313','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3320','Клиент 3314','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3321','Клиент 3315','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3322','Клиент 3316','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3323','Клиент 3317','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3324','Клиент 3318','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3325','Клиент 3319','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3326','Клиент 3320','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3327','Клиент 3321','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3328','Клиент 3322','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3329','Клиент 3323','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3330','Клиент 3324','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3331','Клиент 3325','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3332','Клиент 3326','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3333','Клиент 3327','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3334','Клиент 3328','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3335','Клиент 3329','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3336','Клиент 3330','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3337','Клиент 3331','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3338','Клиент 3332','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3339','Клиент 3333','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3340','Клиент 3334','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3341','Клиент 3335','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3342','Клиент 3336','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3343','Клиент 3337','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3344','Клиент 3338','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3345','Клиент 3339','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3346','Клиент 3340','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3347','Клиент 3341','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3348','Клиент 3342','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3349','Клиент 3343','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3350','Клиент 3344','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3351','Клиент 3345','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3352','Клиент 3346','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3353','Клиент 3347','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3354','Клиент 3348','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3355','Клиент 3349','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3356','Клиент 3350','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3357','Клиент 3351','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3358','Клиент 3352','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3359','Клиент 3353','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3360','Клиент 3354','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3361','Клиент 3355','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3362','Клиент 3356','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3363','Клиент 3357','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3364','Клиент 3358','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3365','Клиент 3359','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3366','Клиент 3360','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3367','Клиент 3361','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3368','Клиент 3362','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3369','Клиент 3363','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3370','Клиент 3364','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3371','Клиент 3365','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3372','Клиент 3366','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3373','Клиент 3367','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3374','Клиент 3368','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3375','Клиент 3369','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3376','Клиент 3370','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3377','Клиент 3371','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3378','Клиент 3372','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3379','Клиент 3373','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3380','Клиент 3374','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3381','Клиент 3375','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3382','Клиент 3376','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3383','Клиент 3377','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3384','Клиент 3378','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3385','Клиент 3379','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3386','Клиент 3380','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3387','Клиент 3381','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3388','Клиент 3382','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3389','Клиент 3383','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3390','Клиент 3384','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3391','Клиент 3385','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3392','Клиент 3386','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3393','Клиент 3387','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3394','Клиент 3388','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3395','Клиент 3389','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3396','Клиент 3390','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3397','Клиент 3391','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3398','Клиент 3392','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3399','Клиент 3393','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3400','Клиент 3394','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3401','Клиент 3395','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3402','Клиент 3396','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3403','Клиент 3397','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3404','Клиент 3398','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3405','Клиент 3399','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3406','Клиент 3400','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3407','Клиент 3401','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3408','Клиент 3402','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3409','Клиент 3403','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3410','Клиент 3404','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3411','Клиент 3405','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3412','Клиент 3406','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3413','Клиент 3407','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3414','Клиент 3408','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3415','Клиент 3409','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3416','Клиент 3410','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3417','Клиент 3411','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3418','Клиент 3412','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3419','Клиент 3413','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3420','Клиент 3414','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3421','Клиент 3415','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3422','Клиент 3416','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3423','Клиент 3417','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3424','Клиент 3418','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3425','Клиент 3419','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3426','Клиент 3420','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3427','Клиент 3421','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3428','Клиент 3422','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3429','Клиент 3423','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3430','Клиент 3424','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3431','Клиент 3425','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3432','Клиент 3426','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3433','Клиент 3427','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3434','Клиент 3428','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3435','Клиент 3429','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3436','Клиент 3430','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3437','Клиент 3431','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3438','Клиент 3432','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3439','Клиент 3433','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3440','Клиент 3434','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3441','Клиент 3435','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3442','Клиент 3436','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3443','Клиент 3437','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3444','Клиент 3438','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3445','Клиент 3439','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3446','Клиент 3440','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3447','Клиент 3441','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3448','Клиент 3442','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3449','Клиент 3443','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3450','Клиент 3444','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3451','Клиент 3445','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3452','Клиент 3446','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3453','Клиент 3447','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3454','Клиент 3448','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3455','Клиент 3449','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3456','Клиент 3450','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3457','Клиент 3451','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3458','Клиент 3452','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3459','Клиент 3453','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3460','Клиент 3454','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3461','Клиент 3455','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3462','Клиент 3456','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3463','Клиент 3457','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3464','Клиент 3458','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3465','Клиент 3459','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3466','Клиент 3460','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3467','Клиент 3461','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3468','Клиент 3462','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3469','Клиент 3463','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3470','Клиент 3464','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3471','Клиент 3465','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3472','Клиент 3466','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3473','Клиент 3467','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3474','Клиент 3468','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3475','Клиент 3469','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3476','Клиент 3470','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3477','Клиент 3471','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3478','Клиент 3472','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3479','Клиент 3473','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3480','Клиент 3474','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3481','Клиент 3475','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3482','Клиент 3476','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3483','Клиент 3477','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3484','Клиент 3478','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3485','Клиент 3479','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3486','Клиент 3480','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3487','Клиент 3481','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3488','Клиент 3482','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3489','Клиент 3483','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3490','Клиент 3484','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3491','Клиент 3485','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3492','Клиент 3486','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3493','Клиент 3487','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3494','Клиент 3488','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3495','Клиент 3489','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3496','Клиент 3490','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3497','Клиент 3491','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3498','Клиент 3492','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3499','Клиент 3493','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3500','Клиент 3494','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3501','Клиент 3495','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3502','Клиент 3496','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3503','Клиент 3497','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3504','Клиент 3498','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3505','Клиент 3499','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3506','Клиент 3500','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3507','Клиент 3501','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3508','Клиент 3502','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3509','Клиент 3503','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3510','Клиент 3504','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3511','Клиент 3505','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3512','Клиент 3506','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3513','Клиент 3507','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3514','Клиент 3508','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3515','Клиент 3509','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3516','Клиент 3510','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3517','Клиент 3511','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3518','Клиент 3512','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3519','Клиент 3513','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3520','Клиент 3514','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3521','Клиент 3515','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3522','Клиент 3516','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3523','Клиент 3517','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3524','Клиент 3518','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3525','Клиент 3519','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3526','Клиент 3520','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3527','Клиент 3521','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3528','Клиент 3522','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3529','Клиент 3523','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3530','Клиент 3524','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3531','Клиент 3525','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3532','Клиент 3526','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3533','Клиент 3527','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3534','Клиент 3528','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3535','Клиент 3529','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3536','Клиент 3530','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3537','Клиент 3531','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3538','Клиент 3532','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3539','Клиент 3533','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3540','Клиент 3534','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3541','Клиент 3535','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3542','Клиент 3536','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3543','Клиент 3537','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3544','Клиент 3538','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3545','Клиент 3539','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3546','Клиент 3540','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3547','Клиент 3541','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3548','Клиент 3542','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3549','Клиент 3543','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3550','Клиент 3544','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3551','Клиент 3545','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3552','Клиент 3546','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3553','Клиент 3547','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3554','Клиент 3548','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3555','Клиент 3549','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3556','Клиент 3550','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3557','Клиент 3551','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3558','Клиент 3552','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3559','Клиент 3553','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3560','Клиент 3554','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3561','Клиент 3555','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3562','Клиент 3556','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3563','Клиент 3557','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3564','Клиент 3558','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3565','Клиент 3559','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3566','Клиент 3560','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3567','Клиент 3561','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3568','Клиент 3562','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3569','Клиент 3563','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3570','Клиент 3564','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3571','Клиент 3565','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3572','Клиент 3566','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3573','Клиент 3567','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3574','Клиент 3568','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3575','Клиент 3569','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3576','Клиент 3570','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3577','Клиент 3571','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3578','Клиент 3572','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3579','Клиент 3573','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3580','Клиент 3574','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3581','Клиент 3575','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3582','Клиент 3576','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3583','Клиент 3577','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3584','Клиент 3578','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3585','Клиент 3579','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3586','Клиент 3580','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3587','Клиент 3581','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3588','Клиент 3582','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3589','Клиент 3583','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3590','Клиент 3584','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3591','Клиент 3585','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3592','Клиент 3586','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3593','Клиент 3587','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3594','Клиент 3588','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3595','Клиент 3589','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3596','Клиент 3590','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3597','Клиент 3591','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3598','Клиент 3592','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3599','Клиент 3593','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3600','Клиент 3594','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3601','Клиент 3595','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3602','Клиент 3596','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3603','Клиент 3597','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3604','Клиент 3598','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3605','Клиент 3599','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3606','Клиент 3600','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3607','Клиент 3601','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3608','Клиент 3602','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3609','Клиент 3603','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3610','Клиент 3604','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3611','Клиент 3605','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3612','Клиент 3606','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3613','Клиент 3607','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3614','Клиент 3608','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3615','Клиент 3609','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3616','Клиент 3610','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3617','Клиент 3611','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3618','Клиент 3612','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3619','Клиент 3613','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3620','Клиент 3614','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3621','Клиент 3615','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3622','Клиент 3616','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3623','Клиент 3617','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3624','Клиент 3618','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3625','Клиент 3619','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3626','Клиент 3620','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3627','Клиент 3621','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3628','Клиент 3622','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3629','Клиент 3623','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3630','Клиент 3624','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3631','Клиент 3625','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3632','Клиент 3626','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3633','Клиент 3627','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3634','Клиент 3628','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3635','Клиент 3629','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3636','Клиент 3630','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3637','Клиент 3631','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3638','Клиент 3632','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3639','Клиент 3633','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3640','Клиент 3634','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3641','Клиент 3635','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3642','Клиент 3636','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3643','Клиент 3637','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3644','Клиент 3638','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3645','Клиент 3639','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3646','Клиент 3640','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3647','Клиент 3641','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3648','Клиент 3642','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3649','Клиент 3643','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3650','Клиент 3644','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3651','Клиент 3645','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3652','Клиент 3646','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3653','Клиент 3647','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3654','Клиент 3648','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3655','Клиент 3649','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3656','Клиент 3650','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3657','Клиент 3651','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3658','Клиент 3652','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3659','Клиент 3653','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3660','Клиент 3654','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3661','Клиент 3655','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3662','Клиент 3656','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3663','Клиент 3657','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3664','Клиент 3658','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3665','Клиент 3659','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3666','Клиент 3660','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3667','Клиент 3661','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3668','Клиент 3662','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3669','Клиент 3663','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3670','Клиент 3664','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3671','Клиент 3665','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3672','Клиент 3666','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3673','Клиент 3667','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3674','Клиент 3668','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3675','Клиент 3669','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3676','Клиент 3670','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3677','Клиент 3671','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3678','Клиент 3672','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3679','Клиент 3673','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3680','Клиент 3674','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3681','Клиент 3675','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3682','Клиент 3676','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3683','Клиент 3677','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3684','Клиент 3678','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3685','Клиент 3679','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3686','Клиент 3680','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3687','Клиент 3681','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3688','Клиент 3682','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3689','Клиент 3683','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3690','Клиент 3684','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3691','Клиент 3685','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3692','Клиент 3686','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3693','Клиент 3687','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3694','Клиент 3688','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3695','Клиент 3689','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3696','Клиент 3690','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3697','Клиент 3691','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3698','Клиент 3692','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3699','Клиент 3693','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3700','Клиент 3694','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3701','Клиент 3695','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3702','Клиент 3696','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3703','Клиент 3697','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3704','Клиент 3698','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3705','Клиент 3699','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3706','Клиент 3700','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3707','Клиент 3701','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3708','Клиент 3702','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3709','Клиент 3703','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3710','Клиент 3704','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3711','Клиент 3705','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3712','Клиент 3706','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3713','Клиент 3707','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3714','Клиент 3708','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3715','Клиент 3709','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3716','Клиент 3710','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3717','Клиент 3711','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3718','Клиент 3712','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3719','Клиент 3713','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3720','Клиент 3714','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3721','Клиент 3715','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3722','Клиент 3716','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3723','Клиент 3717','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3724','Клиент 3718','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3725','Клиент 3719','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3726','Клиент 3720','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3727','Клиент 3721','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3728','Клиент 3722','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3729','Клиент 3723','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3730','Клиент 3724','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3731','Клиент 3725','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3732','Клиент 3726','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3733','Клиент 3727','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3734','Клиент 3728','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3735','Клиент 3729','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3736','Клиент 3730','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3737','Клиент 3731','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3738','Клиент 3732','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3739','Клиент 3733','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3740','Клиент 3734','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3741','Клиент 3735','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3742','Клиент 3736','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3743','Клиент 3737','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3744','Клиент 3738','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3745','Клиент 3739','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3746','Клиент 3740','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3747','Клиент 3741','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3748','Клиент 3742','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3749','Клиент 3743','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3750','Клиент 3744','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3751','Клиент 3745','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3752','Клиент 3746','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3753','Клиент 3747','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3754','Клиент 3748','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3755','Клиент 3749','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3756','Клиент 3750','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3757','Клиент 3751','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3758','Клиент 3752','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3759','Клиент 3753','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3760','Клиент 3754','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3761','Клиент 3755','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3762','Клиент 3756','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3763','Клиент 3757','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3764','Клиент 3758','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3765','Клиент 3759','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3766','Клиент 3760','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3767','Клиент 3761','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3768','Клиент 3762','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3769','Клиент 3763','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3770','Клиент 3764','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3771','Клиент 3765','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3772','Клиент 3766','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3773','Клиент 3767','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3774','Клиент 3768','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3775','Клиент 3769','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3776','Клиент 3770','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3777','Клиент 3771','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3778','Клиент 3772','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3779','Клиент 3773','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3780','Клиент 3774','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3781','Клиент 3775','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3782','Клиент 3776','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3783','Клиент 3777','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3784','Клиент 3778','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3785','Клиент 3779','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3786','Клиент 3780','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3787','Клиент 3781','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3788','Клиент 3782','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3789','Клиент 3783','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3790','Клиент 3784','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3791','Клиент 3785','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3792','Клиент 3786','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3793','Клиент 3787','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3794','Клиент 3788','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3795','Клиент 3789','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3796','Клиент 3790','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3797','Клиент 3791','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3798','Клиент 3792','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3799','Клиент 3793','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3800','Клиент 3794','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3801','Клиент 3795','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3802','Клиент 3796','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3803','Клиент 3797','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3804','Клиент 3798','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3805','Клиент 3799','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3806','Клиент 3800','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3807','Клиент 3801','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3808','Клиент 3802','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3809','Клиент 3803','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3810','Клиент 3804','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3811','Клиент 3805','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3812','Клиент 3806','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3813','Клиент 3807','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3814','Клиент 3808','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3815','Клиент 3809','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3816','Клиент 3810','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3817','Клиент 3811','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3818','Клиент 3812','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3819','Клиент 3813','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3820','Клиент 3814','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3821','Клиент 3815','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3822','Клиент 3816','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3823','Клиент 3817','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3824','Клиент 3818','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3825','Клиент 3819','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3826','Клиент 3820','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3827','Клиент 3821','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3828','Клиент 3822','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3829','Клиент 3823','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3830','Клиент 3824','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3831','Клиент 3825','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3832','Клиент 3826','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3833','Клиент 3827','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3834','Клиент 3828','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3835','Клиент 3829','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3836','Клиент 3830','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3837','Клиент 3831','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3838','Клиент 3832','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3839','Клиент 3833','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3840','Клиент 3834','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3841','Клиент 3835','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3842','Клиент 3836','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3843','Клиент 3837','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3844','Клиент 3838','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3845','Клиент 3839','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3846','Клиент 3840','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3847','Клиент 3841','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3848','Клиент 3842','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3849','Клиент 3843','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3850','Клиент 3844','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3851','Клиент 3845','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3852','Клиент 3846','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3853','Клиент 3847','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3854','Клиент 3848','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3855','Клиент 3849','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3856','Клиент 3850','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3857','Клиент 3851','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3858','Клиент 3852','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3859','Клиент 3853','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3860','Клиент 3854','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3861','Клиент 3855','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3862','Клиент 3856','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3863','Клиент 3857','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3864','Клиент 3858','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3865','Клиент 3859','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3866','Клиент 3860','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3867','Клиент 3861','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3868','Клиент 3862','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3869','Клиент 3863','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3870','Клиент 3864','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3871','Клиент 3865','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3872','Клиент 3866','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3873','Клиент 3867','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3874','Клиент 3868','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3875','Клиент 3869','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3876','Клиент 3870','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3877','Клиент 3871','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3878','Клиент 3872','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3879','Клиент 3873','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3880','Клиент 3874','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3881','Клиент 3875','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3882','Клиент 3876','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3883','Клиент 3877','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3884','Клиент 3878','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3885','Клиент 3879','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3886','Клиент 3880','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3887','Клиент 3881','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3888','Клиент 3882','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3889','Клиент 3883','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3890','Клиент 3884','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3891','Клиент 3885','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3892','Клиент 3886','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3893','Клиент 3887','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3894','Клиент 3888','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3895','Клиент 3889','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3896','Клиент 3890','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3897','Клиент 3891','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3898','Клиент 3892','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3899','Клиент 3893','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3900','Клиент 3894','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3901','Клиент 3895','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3902','Клиент 3896','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3903','Клиент 3897','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3904','Клиент 3898','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3905','Клиент 3899','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3906','Клиент 3900','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3907','Клиент 3901','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3908','Клиент 3902','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3909','Клиент 3903','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3910','Клиент 3904','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3911','Клиент 3905','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3912','Клиент 3906','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3913','Клиент 3907','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3914','Клиент 3908','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3915','Клиент 3909','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3916','Клиент 3910','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3917','Клиент 3911','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3918','Клиент 3912','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3919','Клиент 3913','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3920','Клиент 3914','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3921','Клиент 3915','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3922','Клиент 3916','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3923','Клиент 3917','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3924','Клиент 3918','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3925','Клиент 3919','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3926','Клиент 3920','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3927','Клиент 3921','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3928','Клиент 3922','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3929','Клиент 3923','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3930','Клиент 3924','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3931','Клиент 3925','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3932','Клиент 3926','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3933','Клиент 3927','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3934','Клиент 3928','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3935','Клиент 3929','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3936','Клиент 3930','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3937','Клиент 3931','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3938','Клиент 3932','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3939','Клиент 3933','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3940','Клиент 3934','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3941','Клиент 3935','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3942','Клиент 3936','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3943','Клиент 3937','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3944','Клиент 3938','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3945','Клиент 3939','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3946','Клиент 3940','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3947','Клиент 3941','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3948','Клиент 3942','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3949','Клиент 3943','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3950','Клиент 3944','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3951','Клиент 3945','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3952','Клиент 3946','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3953','Клиент 3947','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3954','Клиент 3948','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3955','Клиент 3949','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3956','Клиент 3950','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3957','Клиент 3951','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3958','Клиент 3952','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3959','Клиент 3953','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3960','Клиент 3954','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3961','Клиент 3955','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3962','Клиент 3956','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3963','Клиент 3957','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3964','Клиент 3958','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3965','Клиент 3959','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3966','Клиент 3960','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3967','Клиент 3961','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3968','Клиент 3962','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3969','Клиент 3963','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3970','Клиент 3964','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3971','Клиент 3965','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3972','Клиент 3966','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3973','Клиент 3967','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3974','Клиент 3968','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3975','Клиент 3969','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3976','Клиент 3970','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3977','Клиент 3971','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3978','Клиент 3972','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3979','Клиент 3973','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3980','Клиент 3974','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3981','Клиент 3975','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3982','Клиент 3976','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3983','Клиент 3977','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3984','Клиент 3978','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3985','Клиент 3979','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3986','Клиент 3980','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3987','Клиент 3981','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3988','Клиент 3982','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3989','Клиент 3983','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3990','Клиент 3984','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3991','Клиент 3985','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3992','Клиент 3986','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3993','Клиент 3987','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3994','Клиент 3988','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3995','Клиент 3989','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3996','Клиент 3990','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3997','Клиент 3991','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3998','Клиент 3992','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('3999','Клиент 3993','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4000','Клиент 3994','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4001','Клиент 3995','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4002','Клиент 3996','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4003','Клиент 3997','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4004','Клиент 3998','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4005','Клиент 3999','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4006','Клиент 4000','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4007','Клиент 4001','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4008','Клиент 4002','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4009','Клиент 4003','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4010','Клиент 4004','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4011','Клиент 4005','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4012','Клиент 4006','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4013','Клиент 4007','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4014','Клиент 4008','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4015','Клиент 4009','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4016','Клиент 4010','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4017','Клиент 4011','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4018','Клиент 4012','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4019','Клиент 4013','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4020','Клиент 4014','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4021','Клиент 4015','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4022','Клиент 4016','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4023','Клиент 4017','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4024','Клиент 4018','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4025','Клиент 4019','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4026','Клиент 4020','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4027','Клиент 4021','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4028','Клиент 4022','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4029','Клиент 4023','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4030','Клиент 4024','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4031','Клиент 4025','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4032','Клиент 4026','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4033','Клиент 4027','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4034','Клиент 4028','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4035','Клиент 4029','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4036','Клиент 4030','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4037','Клиент 4031','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4038','Клиент 4032','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4039','Клиент 4033','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4040','Клиент 4034','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4041','Клиент 4035','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4042','Клиент 4036','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4043','Клиент 4037','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4044','Клиент 4038','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4045','Клиент 4039','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4046','Клиент 4040','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4047','Клиент 4041','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4048','Клиент 4042','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4049','Клиент 4043','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4050','Клиент 4044','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4051','Клиент 4045','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4052','Клиент 4046','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4053','Клиент 4047','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4054','Клиент 4048','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4055','Клиент 4049','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4056','Клиент 4050','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4057','Клиент 4051','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4058','Клиент 4052','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4059','Клиент 4053','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4060','Клиент 4054','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4061','Клиент 4055','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4062','Клиент 4056','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4063','Клиент 4057','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4064','Клиент 4058','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4065','Клиент 4059','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4066','Клиент 4060','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4067','Клиент 4061','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4068','Клиент 4062','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4069','Клиент 4063','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4070','Клиент 4064','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4071','Клиент 4065','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4072','Клиент 4066','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4073','Клиент 4067','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4074','Клиент 4068','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4075','Клиент 4069','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4076','Клиент 4070','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4077','Клиент 4071','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4078','Клиент 4072','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4079','Клиент 4073','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4080','Клиент 4074','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4081','Клиент 4075','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4082','Клиент 4076','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4083','Клиент 4077','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4084','Клиент 4078','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4085','Клиент 4079','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4086','Клиент 4080','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4087','Клиент 4081','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4088','Клиент 4082','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4089','Клиент 4083','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4090','Клиент 4084','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4091','Клиент 4085','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4092','Клиент 4086','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4093','Клиент 4087','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4094','Клиент 4088','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4095','Клиент 4089','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4096','Клиент 4090','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4097','Клиент 4091','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4098','Клиент 4092','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4099','Клиент 4093','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4100','Клиент 4094','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4101','Клиент 4095','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4102','Клиент 4096','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4103','Клиент 4097','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4104','Клиент 4098','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4105','Клиент 4099','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4106','Клиент 4100','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4107','Клиент 4101','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4108','Клиент 4102','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4109','Клиент 4103','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4110','Клиент 4104','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4111','Клиент 4105','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4112','Клиент 4106','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4113','Клиент 4107','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4114','Клиент 4108','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4115','Клиент 4109','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4116','Клиент 4110','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4117','Клиент 4111','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4118','Клиент 4112','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4119','Клиент 4113','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4120','Клиент 4114','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4121','Клиент 4115','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4122','Клиент 4116','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4123','Клиент 4117','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4124','Клиент 4118','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4125','Клиент 4119','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4126','Клиент 4120','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4127','Клиент 4121','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4128','Клиент 4122','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4129','Клиент 4123','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4130','Клиент 4124','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4131','Клиент 4125','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4132','Клиент 4126','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4133','Клиент 4127','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4134','Клиент 4128','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4135','Клиент 4129','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4136','Клиент 4130','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4137','Клиент 4131','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4138','Клиент 4132','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4139','Клиент 4133','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4140','Клиент 4134','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4141','Клиент 4135','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4142','Клиент 4136','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4143','Клиент 4137','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4144','Клиент 4138','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4145','Клиент 4139','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4146','Клиент 4140','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4147','Клиент 4141','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4148','Клиент 4142','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4149','Клиент 4143','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4150','Клиент 4144','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4151','Клиент 4145','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4152','Клиент 4146','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4153','Клиент 4147','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4154','Клиент 4148','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4155','Клиент 4149','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4156','Клиент 4150','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4157','Клиент 4151','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4158','Клиент 4152','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4159','Клиент 4153','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4160','Клиент 4154','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4161','Клиент 4155','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4162','Клиент 4156','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4163','Клиент 4157','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4164','Клиент 4158','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4165','Клиент 4159','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4166','Клиент 4160','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4167','Клиент 4161','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4168','Клиент 4162','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4169','Клиент 4163','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4170','Клиент 4164','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4171','Клиент 4165','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4172','Клиент 4166','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4173','Клиент 4167','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4174','Клиент 4168','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4175','Клиент 4169','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4176','Клиент 4170','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4177','Клиент 4171','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4178','Клиент 4172','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4179','Клиент 4173','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4180','Клиент 4174','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4181','Клиент 4175','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4182','Клиент 4176','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4183','Клиент 4177','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4184','Клиент 4178','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4185','Клиент 4179','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4186','Клиент 4180','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4187','Клиент 4181','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4188','Клиент 4182','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4189','Клиент 4183','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4190','Клиент 4184','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4191','Клиент 4185','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4192','Клиент 4186','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4193','Клиент 4187','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4194','Клиент 4188','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4195','Клиент 4189','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4196','Клиент 4190','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4197','Клиент 4191','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4198','Клиент 4192','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4199','Клиент 4193','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4200','Клиент 4194','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4201','Клиент 4195','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4202','Клиент 4196','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4203','Клиент 4197','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4204','Клиент 4198','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4205','Клиент 4199','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4206','Клиент 4200','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4207','Клиент 4201','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4208','Клиент 4202','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4209','Клиент 4203','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4210','Клиент 4204','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4211','Клиент 4205','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4212','Клиент 4206','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4213','Клиент 4207','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4214','Клиент 4208','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4215','Клиент 4209','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4216','Клиент 4210','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4217','Клиент 4211','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4218','Клиент 4212','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4219','Клиент 4213','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4220','Клиент 4214','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4221','Клиент 4215','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4222','Клиент 4216','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4223','Клиент 4217','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4224','Клиент 4218','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4225','Клиент 4219','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4226','Клиент 4220','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4227','Клиент 4221','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4228','Клиент 4222','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4229','Клиент 4223','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4230','Клиент 4224','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4231','Клиент 4225','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4232','Клиент 4226','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4233','Клиент 4227','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4234','Клиент 4228','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4235','Клиент 4229','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4236','Клиент 4230','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4237','Клиент 4231','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4238','Клиент 4232','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4239','Клиент 4233','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4240','Клиент 4234','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4241','Клиент 4235','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4242','Клиент 4236','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4243','Клиент 4237','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4244','Клиент 4238','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4245','Клиент 4239','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4246','Клиент 4240','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4247','Клиент 4241','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4248','Клиент 4242','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4249','Клиент 4243','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4250','Клиент 4244','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4251','Клиент 4245','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4252','Клиент 4246','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4253','Клиент 4247','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4254','Клиент 4248','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4255','Клиент 4249','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4256','Клиент 4250','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4257','Клиент 4251','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4258','Клиент 4252','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4259','Клиент 4253','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4260','Клиент 4254','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4261','Клиент 4255','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4262','Клиент 4256','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4263','Клиент 4257','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4264','Клиент 4258','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4265','Клиент 4259','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4266','Клиент 4260','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4267','Клиент 4261','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4268','Клиент 4262','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4269','Клиент 4263','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4270','Клиент 4264','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4271','Клиент 4265','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4272','Клиент 4266','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4273','Клиент 4267','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4274','Клиент 4268','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4275','Клиент 4269','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4276','Клиент 4270','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4277','Клиент 4271','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4278','Клиент 4272','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4279','Клиент 4273','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4280','Клиент 4274','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4281','Клиент 4275','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4282','Клиент 4276','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4283','Клиент 4277','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4284','Клиент 4278','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4285','Клиент 4279','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4286','Клиент 4280','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4287','Клиент 4281','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4288','Клиент 4282','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4289','Клиент 4283','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4290','Клиент 4284','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4291','Клиент 4285','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4292','Клиент 4286','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4293','Клиент 4287','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4294','Клиент 4288','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4295','Клиент 4289','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4296','Клиент 4290','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4297','Клиент 4291','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4298','Клиент 4292','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4299','Клиент 4293','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4300','Клиент 4294','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4301','Клиент 4295','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4302','Клиент 4296','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4303','Клиент 4297','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4304','Клиент 4298','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4305','Клиент 4299','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4306','Клиент 4300','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4307','Клиент 4301','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4308','Клиент 4302','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4309','Клиент 4303','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4310','Клиент 4304','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4311','Клиент 4305','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4312','Клиент 4306','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4313','Клиент 4307','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4314','Клиент 4308','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4315','Клиент 4309','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4316','Клиент 4310','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4317','Клиент 4311','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4318','Клиент 4312','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4319','Клиент 4313','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4320','Клиент 4314','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4321','Клиент 4315','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4322','Клиент 4316','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4323','Клиент 4317','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4324','Клиент 4318','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4325','Клиент 4319','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4326','Клиент 4320','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4327','Клиент 4321','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4328','Клиент 4322','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4329','Клиент 4323','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4330','Клиент 4324','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4331','Клиент 4325','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4332','Клиент 4326','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4333','Клиент 4327','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4334','Клиент 4328','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4335','Клиент 4329','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4336','Клиент 4330','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4337','Клиент 4331','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4338','Клиент 4332','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4339','Клиент 4333','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4340','Клиент 4334','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4341','Клиент 4335','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4342','Клиент 4336','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4343','Клиент 4337','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4344','Клиент 4338','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4345','Клиент 4339','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4346','Клиент 4340','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4347','Клиент 4341','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4348','Клиент 4342','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4349','Клиент 4343','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4350','Клиент 4344','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4351','Клиент 4345','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4352','Клиент 4346','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4353','Клиент 4347','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4354','Клиент 4348','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4355','Клиент 4349','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4356','Клиент 4350','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4357','Клиент 4351','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4358','Клиент 4352','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4359','Клиент 4353','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4360','Клиент 4354','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4361','Клиент 4355','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4362','Клиент 4356','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4363','Клиент 4357','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4364','Клиент 4358','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4365','Клиент 4359','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4366','Клиент 4360','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4367','Клиент 4361','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4368','Клиент 4362','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4369','Клиент 4363','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4370','Клиент 4364','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4371','Клиент 4365','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4372','Клиент 4366','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4373','Клиент 4367','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4374','Клиент 4368','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4375','Клиент 4369','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4376','Клиент 4370','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4377','Клиент 4371','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4378','Клиент 4372','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4379','Клиент 4373','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4380','Клиент 4374','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4381','Клиент 4375','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4382','Клиент 4376','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4383','Клиент 4377','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4384','Клиент 4378','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4385','Клиент 4379','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4386','Клиент 4380','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4387','Клиент 4381','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4388','Клиент 4382','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4389','Клиент 4383','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4390','Клиент 4384','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4391','Клиент 4385','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4392','Клиент 4386','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4393','Клиент 4387','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4394','Клиент 4388','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4395','Клиент 4389','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4396','Клиент 4390','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4397','Клиент 4391','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4398','Клиент 4392','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4399','Клиент 4393','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4400','Клиент 4394','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4401','Клиент 4395','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4402','Клиент 4396','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4403','Клиент 4397','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4404','Клиент 4398','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4405','Клиент 4399','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4406','Клиент 4400','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4407','Клиент 4401','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4408','Клиент 4402','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4409','Клиент 4403','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4410','Клиент 4404','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4411','Клиент 4405','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4412','Клиент 4406','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4413','Клиент 4407','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4414','Клиент 4408','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4415','Клиент 4409','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4416','Клиент 4410','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4417','Клиент 4411','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4418','Клиент 4412','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4419','Клиент 4413','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4420','Клиент 4414','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4421','Клиент 4415','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4422','Клиент 4416','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4423','Клиент 4417','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4424','Клиент 4418','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4425','Клиент 4419','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4426','Клиент 4420','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4427','Клиент 4421','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4428','Клиент 4422','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4429','Клиент 4423','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4430','Клиент 4424','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4431','Клиент 4425','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4432','Клиент 4426','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4433','Клиент 4427','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4434','Клиент 4428','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4435','Клиент 4429','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4436','Клиент 4430','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4437','Клиент 4431','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4438','Клиент 4432','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4439','Клиент 4433','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4440','Клиент 4434','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4441','Клиент 4435','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4442','Клиент 4436','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4443','Клиент 4437','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4444','Клиент 4438','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4445','Клиент 4439','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4446','Клиент 4440','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4447','Клиент 4441','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4448','Клиент 4442','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4449','Клиент 4443','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4450','Клиент 4444','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4451','Клиент 4445','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4452','Клиент 4446','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4453','Клиент 4447','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4454','Клиент 4448','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4455','Клиент 4449','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4456','Клиент 4450','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4457','Клиент 4451','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4458','Клиент 4452','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4459','Клиент 4453','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4460','Клиент 4454','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4461','Клиент 4455','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4462','Клиент 4456','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4463','Клиент 4457','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4464','Клиент 4458','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4465','Клиент 4459','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4466','Клиент 4460','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4467','Клиент 4461','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4468','Клиент 4462','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4469','Клиент 4463','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4470','Клиент 4464','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4471','Клиент 4465','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4472','Клиент 4466','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4473','Клиент 4467','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4474','Клиент 4468','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4475','Клиент 4469','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4476','Клиент 4470','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4477','Клиент 4471','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4478','Клиент 4472','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4479','Клиент 4473','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4480','Клиент 4474','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4481','Клиент 4475','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4482','Клиент 4476','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4483','Клиент 4477','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4484','Клиент 4478','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4485','Клиент 4479','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4486','Клиент 4480','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4487','Клиент 4481','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4488','Клиент 4482','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4489','Клиент 4483','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4490','Клиент 4484','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4491','Клиент 4485','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4492','Клиент 4486','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4493','Клиент 4487','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4494','Клиент 4488','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4495','Клиент 4489','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4496','Клиент 4490','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4497','Клиент 4491','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4498','Клиент 4492','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4499','Клиент 4493','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4500','Клиент 4494','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4501','Клиент 4495','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4502','Клиент 4496','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4503','Клиент 4497','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4504','Клиент 4498','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4505','Клиент 4499','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4506','Клиент 4500','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4507','Клиент 4501','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4508','Клиент 4502','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4509','Клиент 4503','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4510','Клиент 4504','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4511','Клиент 4505','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4512','Клиент 4506','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4513','Клиент 4507','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4514','Клиент 4508','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4515','Клиент 4509','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4516','Клиент 4510','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4517','Клиент 4511','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4518','Клиент 4512','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4519','Клиент 4513','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4520','Клиент 4514','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4521','Клиент 4515','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4522','Клиент 4516','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4523','Клиент 4517','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4524','Клиент 4518','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4525','Клиент 4519','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4526','Клиент 4520','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4527','Клиент 4521','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4528','Клиент 4522','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4529','Клиент 4523','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4530','Клиент 4524','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4531','Клиент 4525','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4532','Клиент 4526','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4533','Клиент 4527','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4534','Клиент 4528','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4535','Клиент 4529','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4536','Клиент 4530','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4537','Клиент 4531','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4538','Клиент 4532','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4539','Клиент 4533','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4540','Клиент 4534','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4541','Клиент 4535','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4542','Клиент 4536','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4543','Клиент 4537','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4544','Клиент 4538','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4545','Клиент 4539','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4546','Клиент 4540','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4547','Клиент 4541','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4548','Клиент 4542','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4549','Клиент 4543','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4550','Клиент 4544','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4551','Клиент 4545','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4552','Клиент 4546','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4553','Клиент 4547','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4554','Клиент 4548','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4555','Клиент 4549','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4556','Клиент 4550','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4557','Клиент 4551','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4558','Клиент 4552','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4559','Клиент 4553','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4560','Клиент 4554','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4561','Клиент 4555','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4562','Клиент 4556','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4563','Клиент 4557','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4564','Клиент 4558','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4565','Клиент 4559','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4566','Клиент 4560','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4567','Клиент 4561','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4568','Клиент 4562','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4569','Клиент 4563','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4570','Клиент 4564','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4571','Клиент 4565','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4572','Клиент 4566','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4573','Клиент 4567','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4574','Клиент 4568','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4575','Клиент 4569','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4576','Клиент 4570','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4577','Клиент 4571','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4578','Клиент 4572','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4579','Клиент 4573','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4580','Клиент 4574','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4581','Клиент 4575','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4582','Клиент 4576','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4583','Клиент 4577','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4584','Клиент 4578','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4585','Клиент 4579','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4586','Клиент 4580','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4587','Клиент 4581','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4588','Клиент 4582','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4589','Клиент 4583','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4590','Клиент 4584','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4591','Клиент 4585','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4592','Клиент 4586','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4593','Клиент 4587','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4594','Клиент 4588','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4595','Клиент 4589','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4596','Клиент 4590','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4597','Клиент 4591','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4598','Клиент 4592','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4599','Клиент 4593','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4600','Клиент 4594','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4601','Клиент 4595','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4602','Клиент 4596','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4603','Клиент 4597','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4604','Клиент 4598','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4605','Клиент 4599','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4606','Клиент 4600','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4607','Клиент 4601','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4608','Клиент 4602','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4609','Клиент 4603','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4610','Клиент 4604','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4611','Клиент 4605','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4612','Клиент 4606','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4613','Клиент 4607','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4614','Клиент 4608','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4615','Клиент 4609','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4616','Клиент 4610','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4617','Клиент 4611','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4618','Клиент 4612','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4619','Клиент 4613','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4620','Клиент 4614','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4621','Клиент 4615','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4622','Клиент 4616','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4623','Клиент 4617','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4624','Клиент 4618','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4625','Клиент 4619','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4626','Клиент 4620','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4627','Клиент 4621','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4628','Клиент 4622','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4629','Клиент 4623','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4630','Клиент 4624','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4631','Клиент 4625','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4632','Клиент 4626','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4633','Клиент 4627','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4634','Клиент 4628','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4635','Клиент 4629','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4636','Клиент 4630','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4637','Клиент 4631','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4638','Клиент 4632','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4639','Клиент 4633','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4640','Клиент 4634','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4641','Клиент 4635','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4642','Клиент 4636','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4643','Клиент 4637','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4644','Клиент 4638','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4645','Клиент 4639','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4646','Клиент 4640','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4647','Клиент 4641','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4648','Клиент 4642','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4649','Клиент 4643','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4650','Клиент 4644','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4651','Клиент 4645','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4652','Клиент 4646','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4653','Клиент 4647','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4654','Клиент 4648','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4655','Клиент 4649','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4656','Клиент 4650','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4657','Клиент 4651','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4658','Клиент 4652','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4659','Клиент 4653','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4660','Клиент 4654','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4661','Клиент 4655','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4662','Клиент 4656','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4663','Клиент 4657','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4664','Клиент 4658','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4665','Клиент 4659','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4666','Клиент 4660','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4667','Клиент 4661','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4668','Клиент 4662','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4669','Клиент 4663','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4670','Клиент 4664','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4671','Клиент 4665','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4672','Клиент 4666','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4673','Клиент 4667','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4674','Клиент 4668','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4675','Клиент 4669','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4676','Клиент 4670','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4677','Клиент 4671','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4678','Клиент 4672','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4679','Клиент 4673','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4680','Клиент 4674','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4681','Клиент 4675','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4682','Клиент 4676','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4683','Клиент 4677','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4684','Клиент 4678','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4685','Клиент 4679','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4686','Клиент 4680','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4687','Клиент 4681','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4688','Клиент 4682','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4689','Клиент 4683','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4690','Клиент 4684','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4691','Клиент 4685','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4692','Клиент 4686','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4693','Клиент 4687','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4694','Клиент 4688','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4695','Клиент 4689','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4696','Клиент 4690','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4697','Клиент 4691','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4698','Клиент 4692','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4699','Клиент 4693','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4700','Клиент 4694','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4701','Клиент 4695','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4702','Клиент 4696','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4703','Клиент 4697','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4704','Клиент 4698','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4705','Клиент 4699','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4706','Клиент 4700','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4707','Клиент 4701','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4708','Клиент 4702','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4709','Клиент 4703','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4710','Клиент 4704','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4711','Клиент 4705','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4712','Клиент 4706','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4713','Клиент 4707','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4714','Клиент 4708','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4715','Клиент 4709','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4716','Клиент 4710','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4717','Клиент 4711','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4718','Клиент 4712','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4719','Клиент 4713','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4720','Клиент 4714','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4721','Клиент 4715','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4722','Клиент 4716','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4723','Клиент 4717','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4724','Клиент 4718','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4725','Клиент 4719','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4726','Клиент 4720','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4727','Клиент 4721','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4728','Клиент 4722','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4729','Клиент 4723','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4730','Клиент 4724','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4731','Клиент 4725','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4732','Клиент 4726','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4733','Клиент 4727','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4734','Клиент 4728','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4735','Клиент 4729','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4736','Клиент 4730','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4737','Клиент 4731','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4738','Клиент 4732','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4739','Клиент 4733','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4740','Клиент 4734','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4741','Клиент 4735','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4742','Клиент 4736','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4743','Клиент 4737','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4744','Клиент 4738','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4745','Клиент 4739','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4746','Клиент 4740','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4747','Клиент 4741','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4748','Клиент 4742','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4749','Клиент 4743','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4750','Клиент 4744','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4751','Клиент 4745','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4752','Клиент 4746','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4753','Клиент 4747','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4754','Клиент 4748','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4755','Клиент 4749','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4756','Клиент 4750','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4757','Клиент 4751','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4758','Клиент 4752','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4759','Клиент 4753','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4760','Клиент 4754','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4761','Клиент 4755','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4762','Клиент 4756','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4763','Клиент 4757','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4764','Клиент 4758','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4765','Клиент 4759','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4766','Клиент 4760','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4767','Клиент 4761','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4768','Клиент 4762','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4769','Клиент 4763','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4770','Клиент 4764','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4771','Клиент 4765','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4772','Клиент 4766','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4773','Клиент 4767','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4774','Клиент 4768','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4775','Клиент 4769','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4776','Клиент 4770','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4777','Клиент 4771','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4778','Клиент 4772','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4779','Клиент 4773','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4780','Клиент 4774','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4781','Клиент 4775','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4782','Клиент 4776','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4783','Клиент 4777','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4784','Клиент 4778','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4785','Клиент 4779','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4786','Клиент 4780','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4787','Клиент 4781','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4788','Клиент 4782','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4789','Клиент 4783','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4790','Клиент 4784','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4791','Клиент 4785','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4792','Клиент 4786','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4793','Клиент 4787','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4794','Клиент 4788','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4795','Клиент 4789','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4796','Клиент 4790','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4797','Клиент 4791','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4798','Клиент 4792','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4799','Клиент 4793','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4800','Клиент 4794','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4801','Клиент 4795','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4802','Клиент 4796','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4803','Клиент 4797','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4804','Клиент 4798','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4805','Клиент 4799','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4806','Клиент 4800','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4807','Клиент 4801','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4808','Клиент 4802','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4809','Клиент 4803','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4810','Клиент 4804','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4811','Клиент 4805','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4812','Клиент 4806','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4813','Клиент 4807','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4814','Клиент 4808','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4815','Клиент 4809','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4816','Клиент 4810','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4817','Клиент 4811','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4818','Клиент 4812','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4819','Клиент 4813','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4820','Клиент 4814','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4821','Клиент 4815','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4822','Клиент 4816','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4823','Клиент 4817','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4824','Клиент 4818','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4825','Клиент 4819','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4826','Клиент 4820','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4827','Клиент 4821','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4828','Клиент 4822','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4829','Клиент 4823','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4830','Клиент 4824','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4831','Клиент 4825','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4832','Клиент 4826','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4833','Клиент 4827','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4834','Клиент 4828','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4835','Клиент 4829','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4836','Клиент 4830','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4837','Клиент 4831','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4838','Клиент 4832','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4839','Клиент 4833','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4840','Клиент 4834','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4841','Клиент 4835','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4842','Клиент 4836','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4843','Клиент 4837','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4844','Клиент 4838','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4845','Клиент 4839','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4846','Клиент 4840','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4847','Клиент 4841','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4848','Клиент 4842','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4849','Клиент 4843','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4850','Клиент 4844','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4851','Клиент 4845','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4852','Клиент 4846','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4853','Клиент 4847','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4854','Клиент 4848','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4855','Клиент 4849','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4856','Клиент 4850','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4857','Клиент 4851','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4858','Клиент 4852','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4859','Клиент 4853','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4860','Клиент 4854','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4861','Клиент 4855','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4862','Клиент 4856','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4863','Клиент 4857','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4864','Клиент 4858','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4865','Клиент 4859','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4866','Клиент 4860','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4867','Клиент 4861','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4868','Клиент 4862','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4869','Клиент 4863','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4870','Клиент 4864','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4871','Клиент 4865','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4872','Клиент 4866','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4873','Клиент 4867','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4874','Клиент 4868','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4875','Клиент 4869','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4876','Клиент 4870','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4877','Клиент 4871','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4878','Клиент 4872','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4879','Клиент 4873','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4880','Клиент 4874','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4881','Клиент 4875','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4882','Клиент 4876','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4883','Клиент 4877','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4884','Клиент 4878','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4885','Клиент 4879','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4886','Клиент 4880','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4887','Клиент 4881','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4888','Клиент 4882','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4889','Клиент 4883','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4890','Клиент 4884','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4891','Клиент 4885','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4892','Клиент 4886','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4893','Клиент 4887','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4894','Клиент 4888','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4895','Клиент 4889','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4896','Клиент 4890','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4897','Клиент 4891','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4898','Клиент 4892','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4899','Клиент 4893','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4900','Клиент 4894','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4901','Клиент 4895','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4902','Клиент 4896','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4903','Клиент 4897','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4904','Клиент 4898','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4905','Клиент 4899','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4906','Клиент 4900','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4907','Клиент 4901','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4908','Клиент 4902','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4909','Клиент 4903','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4910','Клиент 4904','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4911','Клиент 4905','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4912','Клиент 4906','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4913','Клиент 4907','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4914','Клиент 4908','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4915','Клиент 4909','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4916','Клиент 4910','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4917','Клиент 4911','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4918','Клиент 4912','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4919','Клиент 4913','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4920','Клиент 4914','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4921','Клиент 4915','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4922','Клиент 4916','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4923','Клиент 4917','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4924','Клиент 4918','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4925','Клиент 4919','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4926','Клиент 4920','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4927','Клиент 4921','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4928','Клиент 4922','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4929','Клиент 4923','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4930','Клиент 4924','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4931','Клиент 4925','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4932','Клиент 4926','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4933','Клиент 4927','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4934','Клиент 4928','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4935','Клиент 4929','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4936','Клиент 4930','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4937','Клиент 4931','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4938','Клиент 4932','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4939','Клиент 4933','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4940','Клиент 4934','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4941','Клиент 4935','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4942','Клиент 4936','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4943','Клиент 4937','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4944','Клиент 4938','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4945','Клиент 4939','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4946','Клиент 4940','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4947','Клиент 4941','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4948','Клиент 4942','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4949','Клиент 4943','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4950','Клиент 4944','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4951','Клиент 4945','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4952','Клиент 4946','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4953','Клиент 4947','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4954','Клиент 4948','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4955','Клиент 4949','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4956','Клиент 4950','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4957','Клиент 4951','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4958','Клиент 4952','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4959','Клиент 4953','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4960','Клиент 4954','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4961','Клиент 4955','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4962','Клиент 4956','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4963','Клиент 4957','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4964','Клиент 4958','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4965','Клиент 4959','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4966','Клиент 4960','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4967','Клиент 4961','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4968','Клиент 4962','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4969','Клиент 4963','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4970','Клиент 4964','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4971','Клиент 4965','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4972','Клиент 4966','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4973','Клиент 4967','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4974','Клиент 4968','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4975','Клиент 4969','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4976','Клиент 4970','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4977','Клиент 4971','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4978','Клиент 4972','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4979','Клиент 4973','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4980','Клиент 4974','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4981','Клиент 4975','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4982','Клиент 4976','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4983','Клиент 4977','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4984','Клиент 4978','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4985','Клиент 4979','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4986','Клиент 4980','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4987','Клиент 4981','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4988','Клиент 4982','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4989','Клиент 4983','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4990','Клиент 4984','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4991','Клиент 4985','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4992','Клиент 4986','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4993','Клиент 4987','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4994','Клиент 4988','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4995','Клиент 4989','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4996','Клиент 4990','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4997','Клиент 4991','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4998','Клиент 4992','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('4999','Клиент 4993','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5000','Клиент 4994','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5001','Клиент 4995','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5002','Клиент 4996','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5003','Клиент 4997','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5004','Клиент 4998','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5005','Клиент 4999','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5006','Клиент 5000','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5007','Клиент 5001','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5008','Клиент 5002','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5009','Клиент 5003','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5010','Клиент 5004','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5011','Клиент 5005','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5012','Клиент 5006','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5013','Клиент 5007','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5014','Клиент 5008','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5015','Клиент 5009','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5016','Клиент 5010','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5017','Клиент 5011','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5018','Клиент 5012','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5019','Клиент 5013','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5020','Клиент 5014','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5021','Клиент 5015','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5022','Клиент 5016','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5023','Клиент 5017','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5024','Клиент 5018','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5025','Клиент 5019','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5026','Клиент 5020','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5027','Клиент 5021','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5028','Клиент 5022','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5029','Клиент 5023','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5030','Клиент 5024','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5031','Клиент 5025','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5032','Клиент 5026','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5033','Клиент 5027','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5034','Клиент 5028','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5035','Клиент 5029','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5036','Клиент 5030','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5037','Клиент 5031','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5038','Клиент 5032','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5039','Клиент 5033','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5040','Клиент 5034','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5041','Клиент 5035','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5042','Клиент 5036','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5043','Клиент 5037','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5044','Клиент 5038','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5045','Клиент 5039','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5046','Клиент 5040','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5047','Клиент 5041','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5048','Клиент 5042','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5049','Клиент 5043','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5050','Клиент 5044','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5051','Клиент 5045','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5052','Клиент 5046','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5053','Клиент 5047','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5054','Клиент 5048','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5055','Клиент 5049','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5056','Клиент 5050','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5057','Клиент 5051','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5058','Клиент 5052','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5059','Клиент 5053','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5060','Клиент 5054','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5061','Клиент 5055','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5062','Клиент 5056','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5063','Клиент 5057','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5064','Клиент 5058','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5065','Клиент 5059','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5066','Клиент 5060','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5067','Клиент 5061','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5068','Клиент 5062','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5069','Клиент 5063','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5070','Клиент 5064','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5071','Клиент 5065','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5072','Клиент 5066','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5073','Клиент 5067','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5074','Клиент 5068','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5075','Клиент 5069','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5076','Клиент 5070','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5077','Клиент 5071','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5078','Клиент 5072','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5079','Клиент 5073','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5080','Клиент 5074','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5081','Клиент 5075','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5082','Клиент 5076','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5083','Клиент 5077','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5084','Клиент 5078','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5085','Клиент 5079','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5086','Клиент 5080','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5087','Клиент 5081','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5088','Клиент 5082','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5089','Клиент 5083','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5090','Клиент 5084','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5091','Клиент 5085','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5092','Клиент 5086','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5093','Клиент 5087','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5094','Клиент 5088','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5095','Клиент 5089','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5096','Клиент 5090','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5097','Клиент 5091','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5098','Клиент 5092','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5099','Клиент 5093','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5100','Клиент 5094','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5101','Клиент 5095','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5102','Клиент 5096','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5103','Клиент 5097','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5104','Клиент 5098','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5105','Клиент 5099','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5106','Клиент 5100','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5107','Клиент 5101','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5108','Клиент 5102','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5109','Клиент 5103','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5110','Клиент 5104','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5111','Клиент 5105','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5112','Клиент 5106','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5113','Клиент 5107','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5114','Клиент 5108','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5115','Клиент 5109','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5116','Клиент 5110','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5117','Клиент 5111','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5118','Клиент 5112','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5119','Клиент 5113','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5120','Клиент 5114','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5121','Клиент 5115','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5122','Клиент 5116','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5123','Клиент 5117','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5124','Клиент 5118','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5125','Клиент 5119','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5126','Клиент 5120','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5127','Клиент 5121','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5128','Клиент 5122','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5129','Клиент 5123','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5130','Клиент 5124','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5131','Клиент 5125','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5132','Клиент 5126','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5133','Клиент 5127','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5134','Клиент 5128','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5135','Клиент 5129','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5136','Клиент 5130','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5137','Клиент 5131','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5138','Клиент 5132','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5139','Клиент 5133','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5140','Клиент 5134','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5141','Клиент 5135','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5142','Клиент 5136','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5143','Клиент 5137','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5144','Клиент 5138','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5145','Клиент 5139','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5146','Клиент 5140','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5147','Клиент 5141','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5148','Клиент 5142','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5149','Клиент 5143','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5150','Клиент 5144','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5151','Клиент 5145','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5152','Клиент 5146','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5153','Клиент 5147','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5154','Клиент 5148','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5155','Клиент 5149','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5156','Клиент 5150','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5157','Клиент 5151','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5158','Клиент 5152','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5159','Клиент 5153','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5160','Клиент 5154','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5161','Клиент 5155','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5162','Клиент 5156','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5163','Клиент 5157','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5164','Клиент 5158','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5165','Клиент 5159','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5166','Клиент 5160','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5167','Клиент 5161','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5168','Клиент 5162','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5169','Клиент 5163','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5170','Клиент 5164','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5171','Клиент 5165','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5172','Клиент 5166','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5173','Клиент 5167','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5174','Клиент 5168','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5175','Клиент 5169','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5176','Клиент 5170','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5177','Клиент 5171','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5178','Клиент 5172','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5179','Клиент 5173','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5180','Клиент 5174','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5181','Клиент 5175','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5182','Клиент 5176','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5183','Клиент 5177','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5184','Клиент 5178','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5185','Клиент 5179','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5186','Клиент 5180','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5187','Клиент 5181','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5188','Клиент 5182','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5189','Клиент 5183','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5190','Клиент 5184','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5191','Клиент 5185','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5192','Клиент 5186','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5193','Клиент 5187','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5194','Клиент 5188','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5195','Клиент 5189','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5196','Клиент 5190','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5197','Клиент 5191','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5198','Клиент 5192','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5199','Клиент 5193','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5200','Клиент 5194','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5201','Клиент 5195','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5202','Клиент 5196','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5203','Клиент 5197','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5204','Клиент 5198','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5205','Клиент 5199','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5206','Клиент 5200','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5207','Клиент 5201','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5208','Клиент 5202','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5209','Клиент 5203','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5210','Клиент 5204','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5211','Клиент 5205','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5212','Клиент 5206','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5213','Клиент 5207','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5214','Клиент 5208','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5215','Клиент 5209','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5216','Клиент 5210','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5217','Клиент 5211','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5218','Клиент 5212','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5219','Клиент 5213','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5220','Клиент 5214','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5221','Клиент 5215','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5222','Клиент 5216','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5223','Клиент 5217','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5224','Клиент 5218','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5225','Клиент 5219','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5226','Клиент 5220','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5227','Клиент 5221','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5228','Клиент 5222','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5229','Клиент 5223','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5230','Клиент 5224','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5231','Клиент 5225','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5232','Клиент 5226','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5233','Клиент 5227','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5234','Клиент 5228','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5235','Клиент 5229','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5236','Клиент 5230','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5237','Клиент 5231','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5238','Клиент 5232','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5239','Клиент 5233','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5240','Клиент 5234','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5241','Клиент 5235','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5242','Клиент 5236','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5243','Клиент 5237','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5244','Клиент 5238','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5245','Клиент 5239','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5246','Клиент 5240','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5247','Клиент 5241','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5248','Клиент 5242','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5249','Клиент 5243','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5250','Клиент 5244','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5251','Клиент 5245','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5252','Клиент 5246','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5253','Клиент 5247','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5254','Клиент 5248','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5255','Клиент 5249','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5256','Клиент 5250','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5257','Клиент 5251','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5258','Клиент 5252','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5259','Клиент 5253','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5260','Клиент 5254','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5261','Клиент 5255','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5262','Клиент 5256','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5263','Клиент 5257','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5264','Клиент 5258','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5265','Клиент 5259','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5266','Клиент 5260','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5267','Клиент 5261','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5268','Клиент 5262','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5269','Клиент 5263','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5270','Клиент 5264','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5271','Клиент 5265','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5272','Клиент 5266','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5273','Клиент 5267','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5274','Клиент 5268','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5275','Клиент 5269','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5276','Клиент 5270','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5277','Клиент 5271','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5278','Клиент 5272','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5279','Клиент 5273','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5280','Клиент 5274','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5281','Клиент 5275','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5282','Клиент 5276','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5283','Клиент 5277','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5284','Клиент 5278','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5285','Клиент 5279','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5286','Клиент 5280','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5287','Клиент 5281','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5288','Клиент 5282','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5289','Клиент 5283','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5290','Клиент 5284','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5291','Клиент 5285','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5292','Клиент 5286','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5293','Клиент 5287','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5294','Клиент 5288','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5295','Клиент 5289','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5296','Клиент 5290','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5297','Клиент 5291','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5298','Клиент 5292','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5299','Клиент 5293','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5300','Клиент 5294','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5301','Клиент 5295','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5302','Клиент 5296','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5303','Клиент 5297','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5304','Клиент 5298','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5305','Клиент 5299','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5306','Клиент 5300','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5307','Клиент 5301','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5308','Клиент 5302','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5309','Клиент 5303','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5310','Клиент 5304','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5311','Клиент 5305','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5312','Клиент 5306','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5313','Клиент 5307','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5314','Клиент 5308','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5315','Клиент 5309','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5316','Клиент 5310','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5317','Клиент 5311','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5318','Клиент 5312','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5319','Клиент 5313','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5320','Клиент 5314','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5321','Клиент 5315','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5322','Клиент 5316','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5323','Клиент 5317','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5324','Клиент 5318','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5325','Клиент 5319','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5326','Клиент 5320','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5327','Клиент 5321','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5328','Клиент 5322','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5329','Клиент 5323','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5330','Клиент 5324','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5331','Клиент 5325','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5332','Клиент 5326','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5333','Клиент 5327','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5334','Клиент 5328','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5335','Клиент 5329','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5336','Клиент 5330','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5337','Клиент 5331','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5338','Клиент 5332','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5339','Клиент 5333','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5340','Клиент 5334','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5341','Клиент 5335','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5342','Клиент 5336','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5343','Клиент 5337','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5344','Клиент 5338','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5345','Клиент 5339','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5346','Клиент 5340','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5347','Клиент 5341','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5348','Клиент 5342','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5349','Клиент 5343','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5350','Клиент 5344','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5351','Клиент 5345','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5352','Клиент 5346','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5353','Клиент 5347','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5354','Клиент 5348','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5355','Клиент 5349','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5356','Клиент 5350','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5357','Клиент 5351','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5358','Клиент 5352','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5359','Клиент 5353','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5360','Клиент 5354','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5361','Клиент 5355','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5362','Клиент 5356','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5363','Клиент 5357','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5364','Клиент 5358','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5365','Клиент 5359','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5366','Клиент 5360','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5367','Клиент 5361','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5368','Клиент 5362','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5369','Клиент 5363','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5370','Клиент 5364','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5371','Клиент 5365','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5372','Клиент 5366','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5373','Клиент 5367','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5374','Клиент 5368','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5375','Клиент 5369','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5376','Клиент 5370','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5377','Клиент 5371','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5378','Клиент 5372','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5379','Клиент 5373','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5380','Клиент 5374','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5381','Клиент 5375','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5382','Клиент 5376','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5383','Клиент 5377','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5384','Клиент 5378','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5385','Клиент 5379','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5386','Клиент 5380','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5387','Клиент 5381','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5388','Клиент 5382','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5389','Клиент 5383','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5390','Клиент 5384','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5391','Клиент 5385','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5392','Клиент 5386','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5393','Клиент 5387','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5394','Клиент 5388','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5395','Клиент 5389','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5396','Клиент 5390','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5397','Клиент 5391','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5398','Клиент 5392','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5399','Клиент 5393','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5400','Клиент 5394','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5401','Клиент 5395','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5402','Клиент 5396','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5403','Клиент 5397','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5404','Клиент 5398','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5405','Клиент 5399','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5406','Клиент 5400','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5407','Клиент 5401','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5408','Клиент 5402','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5409','Клиент 5403','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5410','Клиент 5404','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5411','Клиент 5405','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5412','Клиент 5406','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5413','Клиент 5407','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5414','Клиент 5408','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5415','Клиент 5409','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5416','Клиент 5410','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5417','Клиент 5411','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5418','Клиент 5412','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5419','Клиент 5413','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5420','Клиент 5414','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5421','Клиент 5415','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5422','Клиент 5416','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5423','Клиент 5417','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5424','Клиент 5418','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5425','Клиент 5419','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5426','Клиент 5420','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5427','Клиент 5421','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5428','Клиент 5422','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5429','Клиент 5423','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5430','Клиент 5424','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5431','Клиент 5425','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5432','Клиент 5426','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5433','Клиент 5427','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5434','Клиент 5428','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5435','Клиент 5429','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5436','Клиент 5430','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5437','Клиент 5431','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5438','Клиент 5432','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5439','Клиент 5433','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5440','Клиент 5434','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5441','Клиент 5435','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5442','Клиент 5436','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5443','Клиент 5437','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5444','Клиент 5438','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5445','Клиент 5439','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5446','Клиент 5440','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5447','Клиент 5441','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5448','Клиент 5442','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5449','Клиент 5443','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5450','Клиент 5444','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5451','Клиент 5445','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5452','Клиент 5446','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5453','Клиент 5447','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5454','Клиент 5448','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5455','Клиент 5449','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5456','Клиент 5450','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5457','Клиент 5451','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5458','Клиент 5452','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5459','Клиент 5453','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5460','Клиент 5454','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5461','Клиент 5455','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5462','Клиент 5456','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5463','Клиент 5457','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5464','Клиент 5458','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5465','Клиент 5459','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5466','Клиент 5460','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5467','Клиент 5461','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5468','Клиент 5462','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5469','Клиент 5463','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5470','Клиент 5464','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5471','Клиент 5465','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5472','Клиент 5466','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5473','Клиент 5467','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5474','Клиент 5468','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5475','Клиент 5469','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5476','Клиент 5470','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5477','Клиент 5471','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5478','Клиент 5472','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5479','Клиент 5473','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5480','Клиент 5474','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5481','Клиент 5475','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5482','Клиент 5476','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5483','Клиент 5477','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5484','Клиент 5478','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5485','Клиент 5479','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5486','Клиент 5480','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5487','Клиент 5481','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5488','Клиент 5482','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5489','Клиент 5483','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5490','Клиент 5484','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5491','Клиент 5485','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5492','Клиент 5486','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5493','Клиент 5487','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5494','Клиент 5488','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5495','Клиент 5489','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5496','Клиент 5490','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5497','Клиент 5491','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5498','Клиент 5492','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5499','Клиент 5493','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5500','Клиент 5494','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5501','Клиент 5495','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5502','Клиент 5496','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5503','Клиент 5497','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5504','Клиент 5498','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5505','Клиент 5499','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5506','Клиент 5500','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5507','Клиент 5501','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5508','Клиент 5502','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5509','Клиент 5503','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5510','Клиент 5504','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5511','Клиент 5505','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5512','Клиент 5506','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5513','Клиент 5507','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5514','Клиент 5508','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5515','Клиент 5509','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5516','Клиент 5510','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5517','Клиент 5511','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5518','Клиент 5512','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5519','Клиент 5513','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5520','Клиент 5514','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5521','Клиент 5515','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5522','Клиент 5516','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5523','Клиент 5517','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5524','Клиент 5518','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5525','Клиент 5519','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5526','Клиент 5520','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5527','Клиент 5521','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5528','Клиент 5522','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5529','Клиент 5523','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5530','Клиент 5524','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5531','Клиент 5525','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5532','Клиент 5526','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5533','Клиент 5527','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5534','Клиент 5528','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5535','Клиент 5529','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5536','Клиент 5530','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5537','Клиент 5531','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5538','Клиент 5532','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5539','Клиент 5533','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5540','Клиент 5534','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5541','Клиент 5535','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5542','Клиент 5536','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5543','Клиент 5537','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5544','Клиент 5538','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5545','Клиент 5539','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5546','Клиент 5540','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5547','Клиент 5541','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5548','Клиент 5542','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5549','Клиент 5543','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5550','Клиент 5544','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5551','Клиент 5545','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5552','Клиент 5546','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5553','Клиент 5547','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5554','Клиент 5548','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5555','Клиент 5549','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5556','Клиент 5550','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5557','Клиент 5551','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5558','Клиент 5552','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5559','Клиент 5553','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5560','Клиент 5554','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5561','Клиент 5555','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5562','Клиент 5556','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5563','Клиент 5557','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5564','Клиент 5558','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5565','Клиент 5559','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5566','Клиент 5560','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5567','Клиент 5561','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5568','Клиент 5562','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5569','Клиент 5563','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5570','Клиент 5564','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5571','Клиент 5565','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5572','Клиент 5566','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5573','Клиент 5567','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5574','Клиент 5568','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5575','Клиент 5569','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5576','Клиент 5570','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5577','Клиент 5571','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5578','Клиент 5572','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5579','Клиент 5573','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5580','Клиент 5574','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5581','Клиент 5575','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5582','Клиент 5576','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5583','Клиент 5577','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5584','Клиент 5578','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5585','Клиент 5579','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5586','Клиент 5580','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5587','Клиент 5581','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5588','Клиент 5582','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5589','Клиент 5583','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5590','Клиент 5584','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5591','Клиент 5585','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5592','Клиент 5586','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5593','Клиент 5587','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5594','Клиент 5588','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5595','Клиент 5589','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5596','Клиент 5590','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5597','Клиент 5591','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5598','Клиент 5592','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5599','Клиент 5593','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5600','Клиент 5594','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5601','Клиент 5595','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5602','Клиент 5596','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5603','Клиент 5597','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5604','Клиент 5598','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5605','Клиент 5599','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5606','Клиент 5600','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5607','Клиент 5601','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5608','Клиент 5602','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5609','Клиент 5603','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5610','Клиент 5604','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5611','Клиент 5605','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5612','Клиент 5606','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5613','Клиент 5607','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5614','Клиент 5608','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5615','Клиент 5609','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5616','Клиент 5610','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5617','Клиент 5611','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5618','Клиент 5612','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5619','Клиент 5613','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5620','Клиент 5614','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5621','Клиент 5615','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5622','Клиент 5616','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5623','Клиент 5617','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5624','Клиент 5618','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5625','Клиент 5619','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5626','Клиент 5620','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5627','Клиент 5621','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5628','Клиент 5622','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5629','Клиент 5623','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5630','Клиент 5624','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5631','Клиент 5625','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5632','Клиент 5626','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5633','Клиент 5627','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5634','Клиент 5628','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5635','Клиент 5629','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5636','Клиент 5630','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5637','Клиент 5631','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5638','Клиент 5632','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5639','Клиент 5633','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5640','Клиент 5634','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5641','Клиент 5635','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5642','Клиент 5636','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5643','Клиент 5637','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5644','Клиент 5638','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5645','Клиент 5639','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5646','Клиент 5640','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5647','Клиент 5641','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5648','Клиент 5642','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5649','Клиент 5643','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5650','Клиент 5644','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5651','Клиент 5645','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5652','Клиент 5646','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5653','Клиент 5647','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5654','Клиент 5648','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5655','Клиент 5649','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5656','Клиент 5650','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5657','Клиент 5651','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5658','Клиент 5652','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5659','Клиент 5653','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5660','Клиент 5654','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5661','Клиент 5655','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5662','Клиент 5656','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5663','Клиент 5657','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5664','Клиент 5658','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5665','Клиент 5659','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5666','Клиент 5660','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5667','Клиент 5661','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5668','Клиент 5662','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5669','Клиент 5663','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5670','Клиент 5664','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5671','Клиент 5665','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5672','Клиент 5666','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5673','Клиент 5667','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5674','Клиент 5668','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5675','Клиент 5669','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5676','Клиент 5670','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5677','Клиент 5671','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5678','Клиент 5672','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5679','Клиент 5673','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5680','Клиент 5674','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5681','Клиент 5675','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5682','Клиент 5676','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5683','Клиент 5677','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5684','Клиент 5678','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5685','Клиент 5679','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5686','Клиент 5680','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5687','Клиент 5681','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5688','Клиент 5682','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5689','Клиент 5683','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5690','Клиент 5684','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5691','Клиент 5685','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5692','Клиент 5686','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5693','Клиент 5687','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5694','Клиент 5688','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5695','Клиент 5689','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5696','Клиент 5690','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5697','Клиент 5691','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5698','Клиент 5692','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5699','Клиент 5693','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5700','Клиент 5694','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5701','Клиент 5695','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5702','Клиент 5696','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5703','Клиент 5697','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5704','Клиент 5698','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5705','Клиент 5699','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5706','Клиент 5700','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5707','Клиент 5701','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5708','Клиент 5702','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5709','Клиент 5703','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5710','Клиент 5704','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5711','Клиент 5705','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5712','Клиент 5706','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5713','Клиент 5707','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5714','Клиент 5708','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5715','Клиент 5709','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5716','Клиент 5710','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5717','Клиент 5711','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5718','Клиент 5712','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5719','Клиент 5713','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5720','Клиент 5714','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5721','Клиент 5715','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5722','Клиент 5716','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5723','Клиент 5717','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5724','Клиент 5718','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5725','Клиент 5719','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5726','Клиент 5720','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5727','Клиент 5721','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5728','Клиент 5722','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5729','Клиент 5723','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5730','Клиент 5724','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5731','Клиент 5725','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5732','Клиент 5726','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5733','Клиент 5727','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5734','Клиент 5728','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5735','Клиент 5729','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5736','Клиент 5730','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5737','Клиент 5731','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5738','Клиент 5732','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5739','Клиент 5733','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5740','Клиент 5734','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5741','Клиент 5735','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5742','Клиент 5736','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5743','Клиент 5737','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5744','Клиент 5738','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5745','Клиент 5739','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5746','Клиент 5740','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5747','Клиент 5741','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5748','Клиент 5742','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5749','Клиент 5743','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5750','Клиент 5744','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5751','Клиент 5745','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5752','Клиент 5746','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5753','Клиент 5747','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5754','Клиент 5748','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5755','Клиент 5749','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5756','Клиент 5750','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5757','Клиент 5751','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5758','Клиент 5752','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5759','Клиент 5753','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5760','Клиент 5754','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5761','Клиент 5755','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5762','Клиент 5756','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5763','Клиент 5757','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5764','Клиент 5758','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5765','Клиент 5759','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5766','Клиент 5760','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5767','Клиент 5761','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5768','Клиент 5762','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5769','Клиент 5763','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5770','Клиент 5764','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5771','Клиент 5765','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5772','Клиент 5766','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5773','Клиент 5767','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5774','Клиент 5768','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5775','Клиент 5769','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5776','Клиент 5770','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5777','Клиент 5771','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5778','Клиент 5772','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5779','Клиент 5773','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5780','Клиент 5774','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5781','Клиент 5775','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5782','Клиент 5776','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5783','Клиент 5777','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5784','Клиент 5778','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5785','Клиент 5779','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5786','Клиент 5780','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5787','Клиент 5781','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5788','Клиент 5782','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5789','Клиент 5783','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5790','Клиент 5784','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5791','Клиент 5785','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5792','Клиент 5786','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5793','Клиент 5787','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5794','Клиент 5788','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5795','Клиент 5789','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5796','Клиент 5790','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5797','Клиент 5791','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5798','Клиент 5792','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5799','Клиент 5793','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5800','Клиент 5794','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5801','Клиент 5795','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5802','Клиент 5796','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5803','Клиент 5797','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5804','Клиент 5798','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5805','Клиент 5799','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5806','Клиент 5800','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5807','Клиент 5801','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5808','Клиент 5802','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5809','Клиент 5803','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5810','Клиент 5804','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5811','Клиент 5805','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5812','Клиент 5806','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5813','Клиент 5807','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5814','Клиент 5808','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5815','Клиент 5809','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5816','Клиент 5810','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5817','Клиент 5811','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5818','Клиент 5812','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5819','Клиент 5813','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5820','Клиент 5814','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5821','Клиент 5815','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5822','Клиент 5816','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5823','Клиент 5817','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5824','Клиент 5818','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5825','Клиент 5819','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5826','Клиент 5820','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5827','Клиент 5821','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5828','Клиент 5822','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5829','Клиент 5823','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5830','Клиент 5824','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5831','Клиент 5825','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5832','Клиент 5826','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5833','Клиент 5827','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5834','Клиент 5828','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5835','Клиент 5829','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5836','Клиент 5830','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5837','Клиент 5831','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5838','Клиент 5832','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5839','Клиент 5833','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5840','Клиент 5834','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5841','Клиент 5835','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5842','Клиент 5836','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5843','Клиент 5837','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5844','Клиент 5838','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5845','Клиент 5839','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5846','Клиент 5840','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5847','Клиент 5841','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5848','Клиент 5842','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5849','Клиент 5843','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5850','Клиент 5844','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5851','Клиент 5845','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5852','Клиент 5846','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5853','Клиент 5847','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5854','Клиент 5848','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5855','Клиент 5849','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5856','Клиент 5850','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5857','Клиент 5851','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5858','Клиент 5852','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5859','Клиент 5853','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5860','Клиент 5854','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5861','Клиент 5855','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5862','Клиент 5856','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5863','Клиент 5857','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5864','Клиент 5858','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5865','Клиент 5859','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5866','Клиент 5860','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5867','Клиент 5861','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5868','Клиент 5862','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5869','Клиент 5863','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5870','Клиент 5864','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5871','Клиент 5865','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5872','Клиент 5866','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5873','Клиент 5867','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5874','Клиент 5868','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5875','Клиент 5869','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5876','Клиент 5870','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5877','Клиент 5871','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5878','Клиент 5872','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5879','Клиент 5873','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5880','Клиент 5874','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5881','Клиент 5875','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5882','Клиент 5876','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5883','Клиент 5877','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5884','Клиент 5878','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5885','Клиент 5879','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5886','Клиент 5880','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5887','Клиент 5881','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5888','Клиент 5882','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5889','Клиент 5883','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5890','Клиент 5884','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5891','Клиент 5885','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5892','Клиент 5886','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5893','Клиент 5887','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5894','Клиент 5888','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5895','Клиент 5889','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5896','Клиент 5890','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5897','Клиент 5891','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5898','Клиент 5892','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5899','Клиент 5893','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5900','Клиент 5894','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5901','Клиент 5895','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5902','Клиент 5896','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5903','Клиент 5897','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5904','Клиент 5898','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5905','Клиент 5899','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5906','Клиент 5900','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5907','Клиент 5901','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5908','Клиент 5902','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5909','Клиент 5903','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5910','Клиент 5904','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5911','Клиент 5905','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5912','Клиент 5906','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5913','Клиент 5907','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5914','Клиент 5908','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5915','Клиент 5909','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5916','Клиент 5910','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5917','Клиент 5911','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5918','Клиент 5912','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5919','Клиент 5913','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5920','Клиент 5914','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5921','Клиент 5915','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5922','Клиент 5916','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5923','Клиент 5917','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5924','Клиент 5918','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5925','Клиент 5919','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5926','Клиент 5920','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5927','Клиент 5921','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5928','Клиент 5922','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5929','Клиент 5923','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5930','Клиент 5924','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5931','Клиент 5925','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5932','Клиент 5926','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5933','Клиент 5927','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5934','Клиент 5928','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5935','Клиент 5929','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5936','Клиент 5930','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5937','Клиент 5931','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5938','Клиент 5932','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5939','Клиент 5933','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5940','Клиент 5934','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5941','Клиент 5935','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5942','Клиент 5936','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5943','Клиент 5937','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5944','Клиент 5938','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5945','Клиент 5939','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5946','Клиент 5940','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5947','Клиент 5941','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5948','Клиент 5942','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5949','Клиент 5943','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5950','Клиент 5944','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5951','Клиент 5945','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5952','Клиент 5946','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5953','Клиент 5947','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5954','Клиент 5948','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5955','Клиент 5949','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5956','Клиент 5950','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5957','Клиент 5951','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5958','Клиент 5952','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5959','Клиент 5953','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5960','Клиент 5954','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5961','Клиент 5955','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5962','Клиент 5956','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5963','Клиент 5957','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5964','Клиент 5958','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5965','Клиент 5959','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5966','Клиент 5960','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5967','Клиент 5961','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5968','Клиент 5962','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5969','Клиент 5963','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5970','Клиент 5964','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5971','Клиент 5965','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5972','Клиент 5966','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5973','Клиент 5967','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5974','Клиент 5968','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5975','Клиент 5969','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5976','Клиент 5970','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5977','Клиент 5971','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5978','Клиент 5972','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5979','Клиент 5973','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5980','Клиент 5974','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5981','Клиент 5975','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5982','Клиент 5976','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5983','Клиент 5977','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5984','Клиент 5978','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5985','Клиент 5979','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5986','Клиент 5980','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5987','Клиент 5981','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5988','Клиент 5982','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5989','Клиент 5983','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5990','Клиент 5984','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5991','Клиент 5985','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5992','Клиент 5986','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5993','Клиент 5987','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5994','Клиент 5988','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5995','Клиент 5989','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5996','Клиент 5990','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5997','Клиент 5991','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5998','Клиент 5992','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('5999','Клиент 5993','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6000','Клиент 5994','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6001','Клиент 5995','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6002','Клиент 5996','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6003','Клиент 5997','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6004','Клиент 5998','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6005','Клиент 5999','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6006','Клиент 6000','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6007','Клиент 6001','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6008','Клиент 6002','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6009','Клиент 6003','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6010','Клиент 6004','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6011','Клиент 6005','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6012','Клиент 6006','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6013','Клиент 6007','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6014','Клиент 6008','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6015','Клиент 6009','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6016','Клиент 6010','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6017','Клиент 6011','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6018','Клиент 6012','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6019','Клиент 6013','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6020','Клиент 6014','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6021','Клиент 6015','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6022','Клиент 6016','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6023','Клиент 6017','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6024','Клиент 6018','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6025','Клиент 6019','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6026','Клиент 6020','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6027','Клиент 6021','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6028','Клиент 6022','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6029','Клиент 6023','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6030','Клиент 6024','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6031','Клиент 6025','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6032','Клиент 6026','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6033','Клиент 6027','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6034','Клиент 6028','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6035','Клиент 6029','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6036','Клиент 6030','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6037','Клиент 6031','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6038','Клиент 6032','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6039','Клиент 6033','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6040','Клиент 6034','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6041','Клиент 6035','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6042','Клиент 6036','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6043','Клиент 6037','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6044','Клиент 6038','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6045','Клиент 6039','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6046','Клиент 6040','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6047','Клиент 6041','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6048','Клиент 6042','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6049','Клиент 6043','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6050','Клиент 6044','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6051','Клиент 6045','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6052','Клиент 6046','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6053','Клиент 6047','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6054','Клиент 6048','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6055','Клиент 6049','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6056','Клиент 6050','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6057','Клиент 6051','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6058','Клиент 6052','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6059','Клиент 6053','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6060','Клиент 6054','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6061','Клиент 6055','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6062','Клиент 6056','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6063','Клиент 6057','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6064','Клиент 6058','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6065','Клиент 6059','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6066','Клиент 6060','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6067','Клиент 6061','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6068','Клиент 6062','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6069','Клиент 6063','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6070','Клиент 6064','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6071','Клиент 6065','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6072','Клиент 6066','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6073','Клиент 6067','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6074','Клиент 6068','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6075','Клиент 6069','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6076','Клиент 6070','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6077','Клиент 6071','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6078','Клиент 6072','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6079','Клиент 6073','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6080','Клиент 6074','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6081','Клиент 6075','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6082','Клиент 6076','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6083','Клиент 6077','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6084','Клиент 6078','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6085','Клиент 6079','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6086','Клиент 6080','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6087','Клиент 6081','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6088','Клиент 6082','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6089','Клиент 6083','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6090','Клиент 6084','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6091','Клиент 6085','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6092','Клиент 6086','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6093','Клиент 6087','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6094','Клиент 6088','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6095','Клиент 6089','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6096','Клиент 6090','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6097','Клиент 6091','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6098','Клиент 6092','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6099','Клиент 6093','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6100','Клиент 6094','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6101','Клиент 6095','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6102','Клиент 6096','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6103','Клиент 6097','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6104','Клиент 6098','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6105','Клиент 6099','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6106','Клиент 6100','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6107','Клиент 6101','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6108','Клиент 6102','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6109','Клиент 6103','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6110','Клиент 6104','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6111','Клиент 6105','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6112','Клиент 6106','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6113','Клиент 6107','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6114','Клиент 6108','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6115','Клиент 6109','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6116','Клиент 6110','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6117','Клиент 6111','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6118','Клиент 6112','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6119','Клиент 6113','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6120','Клиент 6114','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6121','Клиент 6115','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6122','Клиент 6116','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6123','Клиент 6117','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6124','Клиент 6118','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6125','Клиент 6119','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6126','Клиент 6120','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6127','Клиент 6121','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6128','Клиент 6122','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6129','Клиент 6123','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6130','Клиент 6124','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6131','Клиент 6125','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6132','Клиент 6126','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6133','Клиент 6127','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6134','Клиент 6128','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6135','Клиент 6129','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6136','Клиент 6130','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6137','Клиент 6131','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6138','Клиент 6132','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6139','Клиент 6133','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6140','Клиент 6134','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6141','Клиент 6135','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6142','Клиент 6136','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6143','Клиент 6137','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6144','Клиент 6138','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6145','Клиент 6139','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6146','Клиент 6140','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6147','Клиент 6141','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6148','Клиент 6142','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6149','Клиент 6143','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6150','Клиент 6144','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6151','Клиент 6145','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6152','Клиент 6146','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6153','Клиент 6147','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6154','Клиент 6148','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6155','Клиент 6149','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6156','Клиент 6150','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6157','Клиент 6151','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6158','Клиент 6152','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6159','Клиент 6153','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6160','Клиент 6154','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6161','Клиент 6155','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6162','Клиент 6156','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6163','Клиент 6157','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6164','Клиент 6158','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6165','Клиент 6159','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6166','Клиент 6160','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6167','Клиент 6161','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6168','Клиент 6162','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6169','Клиент 6163','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6170','Клиент 6164','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6171','Клиент 6165','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6172','Клиент 6166','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6173','Клиент 6167','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6174','Клиент 6168','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6175','Клиент 6169','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6176','Клиент 6170','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6177','Клиент 6171','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6178','Клиент 6172','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6179','Клиент 6173','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6180','Клиент 6174','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6181','Клиент 6175','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6182','Клиент 6176','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6183','Клиент 6177','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6184','Клиент 6178','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6185','Клиент 6179','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6186','Клиент 6180','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6187','Клиент 6181','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6188','Клиент 6182','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6189','Клиент 6183','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6190','Клиент 6184','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6191','Клиент 6185','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6192','Клиент 6186','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6193','Клиент 6187','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6194','Клиент 6188','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6195','Клиент 6189','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6196','Клиент 6190','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6197','Клиент 6191','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6198','Клиент 6192','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6199','Клиент 6193','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6200','Клиент 6194','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6201','Клиент 6195','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6202','Клиент 6196','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6203','Клиент 6197','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6204','Клиент 6198','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6205','Клиент 6199','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6206','Клиент 6200','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6207','Клиент 6201','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6208','Клиент 6202','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6209','Клиент 6203','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6210','Клиент 6204','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6211','Клиент 6205','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6212','Клиент 6206','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6213','Клиент 6207','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6214','Клиент 6208','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6215','Клиент 6209','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6216','Клиент 6210','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6217','Клиент 6211','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6218','Клиент 6212','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6219','Клиент 6213','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6220','Клиент 6214','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6221','Клиент 6215','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6222','Клиент 6216','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6223','Клиент 6217','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6224','Клиент 6218','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6225','Клиент 6219','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6226','Клиент 6220','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6227','Клиент 6221','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6228','Клиент 6222','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6229','Клиент 6223','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6230','Клиент 6224','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6231','Клиент 6225','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6232','Клиент 6226','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6233','Клиент 6227','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6234','Клиент 6228','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6235','Клиент 6229','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6236','Клиент 6230','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6237','Клиент 6231','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6238','Клиент 6232','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6239','Клиент 6233','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6240','Клиент 6234','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6241','Клиент 6235','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6242','Клиент 6236','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6243','Клиент 6237','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6244','Клиент 6238','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6245','Клиент 6239','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6246','Клиент 6240','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6247','Клиент 6241','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6248','Клиент 6242','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6249','Клиент 6243','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6250','Клиент 6244','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6251','Клиент 6245','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6252','Клиент 6246','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6253','Клиент 6247','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6254','Клиент 6248','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6255','Клиент 6249','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6256','Клиент 6250','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6257','Клиент 6251','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6258','Клиент 6252','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6259','Клиент 6253','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6260','Клиент 6254','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6261','Клиент 6255','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6262','Клиент 6256','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6263','Клиент 6257','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6264','Клиент 6258','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6265','Клиент 6259','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6266','Клиент 6260','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6267','Клиент 6261','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6268','Клиент 6262','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6269','Клиент 6263','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6270','Клиент 6264','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6271','Клиент 6265','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6272','Клиент 6266','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6273','Клиент 6267','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6274','Клиент 6268','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6275','Клиент 6269','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6276','Клиент 6270','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6277','Клиент 6271','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6278','Клиент 6272','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6279','Клиент 6273','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6280','Клиент 6274','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6281','Клиент 6275','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6282','Клиент 6276','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6283','Клиент 6277','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6284','Клиент 6278','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6285','Клиент 6279','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6286','Клиент 6280','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6287','Клиент 6281','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6288','Клиент 6282','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6289','Клиент 6283','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6290','Клиент 6284','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6291','Клиент 6285','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6292','Клиент 6286','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6293','Клиент 6287','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6294','Клиент 6288','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6295','Клиент 6289','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6296','Клиент 6290','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6297','Клиент 6291','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6298','Клиент 6292','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6299','Клиент 6293','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6300','Клиент 6294','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6301','Клиент 6295','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6302','Клиент 6296','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6303','Клиент 6297','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6304','Клиент 6298','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6305','Клиент 6299','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6306','Клиент 6300','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6307','Клиент 6301','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6308','Клиент 6302','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6309','Клиент 6303','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6310','Клиент 6304','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6311','Клиент 6305','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6312','Клиент 6306','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6313','Клиент 6307','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6314','Клиент 6308','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6315','Клиент 6309','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6316','Клиент 6310','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6317','Клиент 6311','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6318','Клиент 6312','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6319','Клиент 6313','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6320','Клиент 6314','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6321','Клиент 6315','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6322','Клиент 6316','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6323','Клиент 6317','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6324','Клиент 6318','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6325','Клиент 6319','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6326','Клиент 6320','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6327','Клиент 6321','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6328','Клиент 6322','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6329','Клиент 6323','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6330','Клиент 6324','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6331','Клиент 6325','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6332','Клиент 6326','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6333','Клиент 6327','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6334','Клиент 6328','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6335','Клиент 6329','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6336','Клиент 6330','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6337','Клиент 6331','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6338','Клиент 6332','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6339','Клиент 6333','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6340','Клиент 6334','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6341','Клиент 6335','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6342','Клиент 6336','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6343','Клиент 6337','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6344','Клиент 6338','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6345','Клиент 6339','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6346','Клиент 6340','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6347','Клиент 6341','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6348','Клиент 6342','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6349','Клиент 6343','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6350','Клиент 6344','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6351','Клиент 6345','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6352','Клиент 6346','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6353','Клиент 6347','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6354','Клиент 6348','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6355','Клиент 6349','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6356','Клиент 6350','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6357','Клиент 6351','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6358','Клиент 6352','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6359','Клиент 6353','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6360','Клиент 6354','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6361','Клиент 6355','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6362','Клиент 6356','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6363','Клиент 6357','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6364','Клиент 6358','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6365','Клиент 6359','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6366','Клиент 6360','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6367','Клиент 6361','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6368','Клиент 6362','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6369','Клиент 6363','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6370','Клиент 6364','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6371','Клиент 6365','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6372','Клиент 6366','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6373','Клиент 6367','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6374','Клиент 6368','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6375','Клиент 6369','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6376','Клиент 6370','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6377','Клиент 6371','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6378','Клиент 6372','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6379','Клиент 6373','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6380','Клиент 6374','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6381','Клиент 6375','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6382','Клиент 6376','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6383','Клиент 6377','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6384','Клиент 6378','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6385','Клиент 6379','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6386','Клиент 6380','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6387','Клиент 6381','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6388','Клиент 6382','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6389','Клиент 6383','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6390','Клиент 6384','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6391','Клиент 6385','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6392','Клиент 6386','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6393','Клиент 6387','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6394','Клиент 6388','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6395','Клиент 6389','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6396','Клиент 6390','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6397','Клиент 6391','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6398','Клиент 6392','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6399','Клиент 6393','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6400','Клиент 6394','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6401','Клиент 6395','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6402','Клиент 6396','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6403','Клиент 6397','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6404','Клиент 6398','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6405','Клиент 6399','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6406','Клиент 6400','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6407','Клиент 6401','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6408','Клиент 6402','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6409','Клиент 6403','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6410','Клиент 6404','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6411','Клиент 6405','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6412','Клиент 6406','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6413','Клиент 6407','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6414','Клиент 6408','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6415','Клиент 6409','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6416','Клиент 6410','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6417','Клиент 6411','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6418','Клиент 6412','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6419','Клиент 6413','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6420','Клиент 6414','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6421','Клиент 6415','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6422','Клиент 6416','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6423','Клиент 6417','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6424','Клиент 6418','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6425','Клиент 6419','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6426','Клиент 6420','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6427','Клиент 6421','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6428','Клиент 6422','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6429','Клиент 6423','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6430','Клиент 6424','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6431','Клиент 6425','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6432','Клиент 6426','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6433','Клиент 6427','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6434','Клиент 6428','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6435','Клиент 6429','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6436','Клиент 6430','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6437','Клиент 6431','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6438','Клиент 6432','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6439','Клиент 6433','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6440','Клиент 6434','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6441','Клиент 6435','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6442','Клиент 6436','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6443','Клиент 6437','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6444','Клиент 6438','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6445','Клиент 6439','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6446','Клиент 6440','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6447','Клиент 6441','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6448','Клиент 6442','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6449','Клиент 6443','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6450','Клиент 6444','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6451','Клиент 6445','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6452','Клиент 6446','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6453','Клиент 6447','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6454','Клиент 6448','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6455','Клиент 6449','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6456','Клиент 6450','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6457','Клиент 6451','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6458','Клиент 6452','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6459','Клиент 6453','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6460','Клиент 6454','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6461','Клиент 6455','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6462','Клиент 6456','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6463','Клиент 6457','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6464','Клиент 6458','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6465','Клиент 6459','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6466','Клиент 6460','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6467','Клиент 6461','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6468','Клиент 6462','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6469','Клиент 6463','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6470','Клиент 6464','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6471','Клиент 6465','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6472','Клиент 6466','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6473','Клиент 6467','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6474','Клиент 6468','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6475','Клиент 6469','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6476','Клиент 6470','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6477','Клиент 6471','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6478','Клиент 6472','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6479','Клиент 6473','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6480','Клиент 6474','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6481','Клиент 6475','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6482','Клиент 6476','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6483','Клиент 6477','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6484','Клиент 6478','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6485','Клиент 6479','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6486','Клиент 6480','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6487','Клиент 6481','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6488','Клиент 6482','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6489','Клиент 6483','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6490','Клиент 6484','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6491','Клиент 6485','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6492','Клиент 6486','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6493','Клиент 6487','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6494','Клиент 6488','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6495','Клиент 6489','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6496','Клиент 6490','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6497','Клиент 6491','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6498','Клиент 6492','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6499','Клиент 6493','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6500','Клиент 6494','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6501','Клиент 6495','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6502','Клиент 6496','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6503','Клиент 6497','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6504','Клиент 6498','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6505','Клиент 6499','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6506','Клиент 6500','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6507','Клиент 6501','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6508','Клиент 6502','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6509','Клиент 6503','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6510','Клиент 6504','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6511','Клиент 6505','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6512','Клиент 6506','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6513','Клиент 6507','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6514','Клиент 6508','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6515','Клиент 6509','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6516','Клиент 6510','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6517','Клиент 6511','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6518','Клиент 6512','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6519','Клиент 6513','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6520','Клиент 6514','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6521','Клиент 6515','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6522','Клиент 6516','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6523','Клиент 6517','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6524','Клиент 6518','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6525','Клиент 6519','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6526','Клиент 6520','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6527','Клиент 6521','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6528','Клиент 6522','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6529','Клиент 6523','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6530','Клиент 6524','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6531','Клиент 6525','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6532','Клиент 6526','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6533','Клиент 6527','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6534','Клиент 6528','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6535','Клиент 6529','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6536','Клиент 6530','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6537','Клиент 6531','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6538','Клиент 6532','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6539','Клиент 6533','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6540','Клиент 6534','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6541','Клиент 6535','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6542','Клиент 6536','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6543','Клиент 6537','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6544','Клиент 6538','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6545','Клиент 6539','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6546','Клиент 6540','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6547','Клиент 6541','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6548','Клиент 6542','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6549','Клиент 6543','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6550','Клиент 6544','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6551','Клиент 6545','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6552','Клиент 6546','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6553','Клиент 6547','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6554','Клиент 6548','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6555','Клиент 6549','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6556','Клиент 6550','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6557','Клиент 6551','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6558','Клиент 6552','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6559','Клиент 6553','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6560','Клиент 6554','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6561','Клиент 6555','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6562','Клиент 6556','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6563','Клиент 6557','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6564','Клиент 6558','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6565','Клиент 6559','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6566','Клиент 6560','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6567','Клиент 6561','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6568','Клиент 6562','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6569','Клиент 6563','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6570','Клиент 6564','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6571','Клиент 6565','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6572','Клиент 6566','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6573','Клиент 6567','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6574','Клиент 6568','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6575','Клиент 6569','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6576','Клиент 6570','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6577','Клиент 6571','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6578','Клиент 6572','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6579','Клиент 6573','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6580','Клиент 6574','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6581','Клиент 6575','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6582','Клиент 6576','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6583','Клиент 6577','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6584','Клиент 6578','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6585','Клиент 6579','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6586','Клиент 6580','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6587','Клиент 6581','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6588','Клиент 6582','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6589','Клиент 6583','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6590','Клиент 6584','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6591','Клиент 6585','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6592','Клиент 6586','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6593','Клиент 6587','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6594','Клиент 6588','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6595','Клиент 6589','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6596','Клиент 6590','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6597','Клиент 6591','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6598','Клиент 6592','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6599','Клиент 6593','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6600','Клиент 6594','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6601','Клиент 6595','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6602','Клиент 6596','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6603','Клиент 6597','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6604','Клиент 6598','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6605','Клиент 6599','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6606','Клиент 6600','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6607','Клиент 6601','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6608','Клиент 6602','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6609','Клиент 6603','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6610','Клиент 6604','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6611','Клиент 6605','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6612','Клиент 6606','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6613','Клиент 6607','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6614','Клиент 6608','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6615','Клиент 6609','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6616','Клиент 6610','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6617','Клиент 6611','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6618','Клиент 6612','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6619','Клиент 6613','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6620','Клиент 6614','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6621','Клиент 6615','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6622','Клиент 6616','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6623','Клиент 6617','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6624','Клиент 6618','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6625','Клиент 6619','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6626','Клиент 6620','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6627','Клиент 6621','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6628','Клиент 6622','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6629','Клиент 6623','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6630','Клиент 6624','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6631','Клиент 6625','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6632','Клиент 6626','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6633','Клиент 6627','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6634','Клиент 6628','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6635','Клиент 6629','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6636','Клиент 6630','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6637','Клиент 6631','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6638','Клиент 6632','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6639','Клиент 6633','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6640','Клиент 6634','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6641','Клиент 6635','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6642','Клиент 6636','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6643','Клиент 6637','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6644','Клиент 6638','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6645','Клиент 6639','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6646','Клиент 6640','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6647','Клиент 6641','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6648','Клиент 6642','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6649','Клиент 6643','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6650','Клиент 6644','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6651','Клиент 6645','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6652','Клиент 6646','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6653','Клиент 6647','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6654','Клиент 6648','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6655','Клиент 6649','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6656','Клиент 6650','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6657','Клиент 6651','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6658','Клиент 6652','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6659','Клиент 6653','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6660','Клиент 6654','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6661','Клиент 6655','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6662','Клиент 6656','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6663','Клиент 6657','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6664','Клиент 6658','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6665','Клиент 6659','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6666','Клиент 6660','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6667','Клиент 6661','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6668','Клиент 6662','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6669','Клиент 6663','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6670','Клиент 6664','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6671','Клиент 6665','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6672','Клиент 6666','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6673','Клиент 6667','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6674','Клиент 6668','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6675','Клиент 6669','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6676','Клиент 6670','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6677','Клиент 6671','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6678','Клиент 6672','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6679','Клиент 6673','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6680','Клиент 6674','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6681','Клиент 6675','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6682','Клиент 6676','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6683','Клиент 6677','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6684','Клиент 6678','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6685','Клиент 6679','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6686','Клиент 6680','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6687','Клиент 6681','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6688','Клиент 6682','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6689','Клиент 6683','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6690','Клиент 6684','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6691','Клиент 6685','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6692','Клиент 6686','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6693','Клиент 6687','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6694','Клиент 6688','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6695','Клиент 6689','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6696','Клиент 6690','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6697','Клиент 6691','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6698','Клиент 6692','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6699','Клиент 6693','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6700','Клиент 6694','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6701','Клиент 6695','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6702','Клиент 6696','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6703','Клиент 6697','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6704','Клиент 6698','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6705','Клиент 6699','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6706','Клиент 6700','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6707','Клиент 6701','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6708','Клиент 6702','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6709','Клиент 6703','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6710','Клиент 6704','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6711','Клиент 6705','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6712','Клиент 6706','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6713','Клиент 6707','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6714','Клиент 6708','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6715','Клиент 6709','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6716','Клиент 6710','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6717','Клиент 6711','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6718','Клиент 6712','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6719','Клиент 6713','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6720','Клиент 6714','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6721','Клиент 6715','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6722','Клиент 6716','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6723','Клиент 6717','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6724','Клиент 6718','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6725','Клиент 6719','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6726','Клиент 6720','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6727','Клиент 6721','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6728','Клиент 6722','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6729','Клиент 6723','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6730','Клиент 6724','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6731','Клиент 6725','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6732','Клиент 6726','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6733','Клиент 6727','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6734','Клиент 6728','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6735','Клиент 6729','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6736','Клиент 6730','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6737','Клиент 6731','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6738','Клиент 6732','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6739','Клиент 6733','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6740','Клиент 6734','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6741','Клиент 6735','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6742','Клиент 6736','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6743','Клиент 6737','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6744','Клиент 6738','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6745','Клиент 6739','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6746','Клиент 6740','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6747','Клиент 6741','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6748','Клиент 6742','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6749','Клиент 6743','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6750','Клиент 6744','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6751','Клиент 6745','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6752','Клиент 6746','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6753','Клиент 6747','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6754','Клиент 6748','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6755','Клиент 6749','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6756','Клиент 6750','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6757','Клиент 6751','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6758','Клиент 6752','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6759','Клиент 6753','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6760','Клиент 6754','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6761','Клиент 6755','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6762','Клиент 6756','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6763','Клиент 6757','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6764','Клиент 6758','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6765','Клиент 6759','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6766','Клиент 6760','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6767','Клиент 6761','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6768','Клиент 6762','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6769','Клиент 6763','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6770','Клиент 6764','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6771','Клиент 6765','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6772','Клиент 6766','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6773','Клиент 6767','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6774','Клиент 6768','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6775','Клиент 6769','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6776','Клиент 6770','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6777','Клиент 6771','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6778','Клиент 6772','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6779','Клиент 6773','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6780','Клиент 6774','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6781','Клиент 6775','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6782','Клиент 6776','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6783','Клиент 6777','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6784','Клиент 6778','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6785','Клиент 6779','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6786','Клиент 6780','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6787','Клиент 6781','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6788','Клиент 6782','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6789','Клиент 6783','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6790','Клиент 6784','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6791','Клиент 6785','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6792','Клиент 6786','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6793','Клиент 6787','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6794','Клиент 6788','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6795','Клиент 6789','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6796','Клиент 6790','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6797','Клиент 6791','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6798','Клиент 6792','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6799','Клиент 6793','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6800','Клиент 6794','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6801','Клиент 6795','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6802','Клиент 6796','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6803','Клиент 6797','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6804','Клиент 6798','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6805','Клиент 6799','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6806','Клиент 6800','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6807','Клиент 6801','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6808','Клиент 6802','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6809','Клиент 6803','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6810','Клиент 6804','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6811','Клиент 6805','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6812','Клиент 6806','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6813','Клиент 6807','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6814','Клиент 6808','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6815','Клиент 6809','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6816','Клиент 6810','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6817','Клиент 6811','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6818','Клиент 6812','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6819','Клиент 6813','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6820','Клиент 6814','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6821','Клиент 6815','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6822','Клиент 6816','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6823','Клиент 6817','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6824','Клиент 6818','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6825','Клиент 6819','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6826','Клиент 6820','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6827','Клиент 6821','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6828','Клиент 6822','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6829','Клиент 6823','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6830','Клиент 6824','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6831','Клиент 6825','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6832','Клиент 6826','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6833','Клиент 6827','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6834','Клиент 6828','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6835','Клиент 6829','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6836','Клиент 6830','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6837','Клиент 6831','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6838','Клиент 6832','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6839','Клиент 6833','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6840','Клиент 6834','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6841','Клиент 6835','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6842','Клиент 6836','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6843','Клиент 6837','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6844','Клиент 6838','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6845','Клиент 6839','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6846','Клиент 6840','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6847','Клиент 6841','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6848','Клиент 6842','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6849','Клиент 6843','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6850','Клиент 6844','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6851','Клиент 6845','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6852','Клиент 6846','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6853','Клиент 6847','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6854','Клиент 6848','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6855','Клиент 6849','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6856','Клиент 6850','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6857','Клиент 6851','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6858','Клиент 6852','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6859','Клиент 6853','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6860','Клиент 6854','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6861','Клиент 6855','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6862','Клиент 6856','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6863','Клиент 6857','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6864','Клиент 6858','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6865','Клиент 6859','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6866','Клиент 6860','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6867','Клиент 6861','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6868','Клиент 6862','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6869','Клиент 6863','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6870','Клиент 6864','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6871','Клиент 6865','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6872','Клиент 6866','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6873','Клиент 6867','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6874','Клиент 6868','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6875','Клиент 6869','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6876','Клиент 6870','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6877','Клиент 6871','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6878','Клиент 6872','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6879','Клиент 6873','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6880','Клиент 6874','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6881','Клиент 6875','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6882','Клиент 6876','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6883','Клиент 6877','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6884','Клиент 6878','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6885','Клиент 6879','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6886','Клиент 6880','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6887','Клиент 6881','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6888','Клиент 6882','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6889','Клиент 6883','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6890','Клиент 6884','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6891','Клиент 6885','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6892','Клиент 6886','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6893','Клиент 6887','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6894','Клиент 6888','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6895','Клиент 6889','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6896','Клиент 6890','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6897','Клиент 6891','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6898','Клиент 6892','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6899','Клиент 6893','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6900','Клиент 6894','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6901','Клиент 6895','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6902','Клиент 6896','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6903','Клиент 6897','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6904','Клиент 6898','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6905','Клиент 6899','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6906','Клиент 6900','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6907','Клиент 6901','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6908','Клиент 6902','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6909','Клиент 6903','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6910','Клиент 6904','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6911','Клиент 6905','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6912','Клиент 6906','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6913','Клиент 6907','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6914','Клиент 6908','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6915','Клиент 6909','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6916','Клиент 6910','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6917','Клиент 6911','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6918','Клиент 6912','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6919','Клиент 6913','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6920','Клиент 6914','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6921','Клиент 6915','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6922','Клиент 6916','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6923','Клиент 6917','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6924','Клиент 6918','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6925','Клиент 6919','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6926','Клиент 6920','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6927','Клиент 6921','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6928','Клиент 6922','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6929','Клиент 6923','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6930','Клиент 6924','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6931','Клиент 6925','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6932','Клиент 6926','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6933','Клиент 6927','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6934','Клиент 6928','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6935','Клиент 6929','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6936','Клиент 6930','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6937','Клиент 6931','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6938','Клиент 6932','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6939','Клиент 6933','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6940','Клиент 6934','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6941','Клиент 6935','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6942','Клиент 6936','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6943','Клиент 6937','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6944','Клиент 6938','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6945','Клиент 6939','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6946','Клиент 6940','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6947','Клиент 6941','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6948','Клиент 6942','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6949','Клиент 6943','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6950','Клиент 6944','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6951','Клиент 6945','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6952','Клиент 6946','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6953','Клиент 6947','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6954','Клиент 6948','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6955','Клиент 6949','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6956','Клиент 6950','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6957','Клиент 6951','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6958','Клиент 6952','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6959','Клиент 6953','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6960','Клиент 6954','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6961','Клиент 6955','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6962','Клиент 6956','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6963','Клиент 6957','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6964','Клиент 6958','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6965','Клиент 6959','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6966','Клиент 6960','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6967','Клиент 6961','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6968','Клиент 6962','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6969','Клиент 6963','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6970','Клиент 6964','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6971','Клиент 6965','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6972','Клиент 6966','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6973','Клиент 6967','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6974','Клиент 6968','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6975','Клиент 6969','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6976','Клиент 6970','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6977','Клиент 6971','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6978','Клиент 6972','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6979','Клиент 6973','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6980','Клиент 6974','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6981','Клиент 6975','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6982','Клиент 6976','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6983','Клиент 6977','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6984','Клиент 6978','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6985','Клиент 6979','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6986','Клиент 6980','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6987','Клиент 6981','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6988','Клиент 6982','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6989','Клиент 6983','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6990','Клиент 6984','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6991','Клиент 6985','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6992','Клиент 6986','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6993','Клиент 6987','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6994','Клиент 6988','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6995','Клиент 6989','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6996','Клиент 6990','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6997','Клиент 6991','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6998','Клиент 6992','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('6999','Клиент 6993','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7000','Клиент 6994','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7001','Клиент 6995','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7002','Клиент 6996','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7003','Клиент 6997','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7004','Клиент 6998','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7005','Клиент 6999','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7006','Клиент 7000','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7007','Клиент 7001','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7008','Клиент 7002','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7009','Клиент 7003','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7010','Клиент 7004','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7011','Клиент 7005','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7012','Клиент 7006','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7013','Клиент 7007','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7014','Клиент 7008','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7015','Клиент 7009','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7016','Клиент 7010','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7017','Клиент 7011','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7018','Клиент 7012','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7019','Клиент 7013','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7020','Клиент 7014','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7021','Клиент 7015','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7022','Клиент 7016','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7023','Клиент 7017','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7024','Клиент 7018','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7025','Клиент 7019','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7026','Клиент 7020','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7027','Клиент 7021','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7028','Клиент 7022','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7029','Клиент 7023','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7030','Клиент 7024','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7031','Клиент 7025','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7032','Клиент 7026','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7033','Клиент 7027','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7034','Клиент 7028','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7035','Клиент 7029','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7036','Клиент 7030','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7037','Клиент 7031','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7038','Клиент 7032','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7039','Клиент 7033','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7040','Клиент 7034','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7041','Клиент 7035','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7042','Клиент 7036','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7043','Клиент 7037','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7044','Клиент 7038','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7045','Клиент 7039','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7046','Клиент 7040','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7047','Клиент 7041','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7048','Клиент 7042','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7049','Клиент 7043','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7050','Клиент 7044','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7051','Клиент 7045','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7052','Клиент 7046','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7053','Клиент 7047','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7054','Клиент 7048','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7055','Клиент 7049','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7056','Клиент 7050','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7057','Клиент 7051','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7058','Клиент 7052','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7059','Клиент 7053','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7060','Клиент 7054','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7061','Клиент 7055','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7062','Клиент 7056','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7063','Клиент 7057','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7064','Клиент 7058','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7065','Клиент 7059','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7066','Клиент 7060','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7067','Клиент 7061','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7068','Клиент 7062','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7069','Клиент 7063','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7070','Клиент 7064','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7071','Клиент 7065','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7072','Клиент 7066','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7073','Клиент 7067','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7074','Клиент 7068','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7075','Клиент 7069','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7076','Клиент 7070','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7077','Клиент 7071','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7078','Клиент 7072','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7079','Клиент 7073','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7080','Клиент 7074','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7081','Клиент 7075','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7082','Клиент 7076','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7083','Клиент 7077','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7084','Клиент 7078','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7085','Клиент 7079','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7086','Клиент 7080','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7087','Клиент 7081','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7088','Клиент 7082','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7089','Клиент 7083','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7090','Клиент 7084','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7091','Клиент 7085','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7092','Клиент 7086','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7093','Клиент 7087','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7094','Клиент 7088','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7095','Клиент 7089','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7096','Клиент 7090','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7097','Клиент 7091','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7098','Клиент 7092','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7099','Клиент 7093','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7100','Клиент 7094','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7101','Клиент 7095','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7102','Клиент 7096','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7103','Клиент 7097','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7104','Клиент 7098','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7105','Клиент 7099','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7106','Клиент 7100','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7107','Клиент 7101','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7108','Клиент 7102','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7109','Клиент 7103','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7110','Клиент 7104','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7111','Клиент 7105','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7112','Клиент 7106','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7113','Клиент 7107','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7114','Клиент 7108','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7115','Клиент 7109','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7116','Клиент 7110','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7117','Клиент 7111','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7118','Клиент 7112','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7119','Клиент 7113','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7120','Клиент 7114','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7121','Клиент 7115','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7122','Клиент 7116','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7123','Клиент 7117','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7124','Клиент 7118','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7125','Клиент 7119','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7126','Клиент 7120','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7127','Клиент 7121','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7128','Клиент 7122','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7129','Клиент 7123','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7130','Клиент 7124','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7131','Клиент 7125','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7132','Клиент 7126','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7133','Клиент 7127','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7134','Клиент 7128','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7135','Клиент 7129','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7136','Клиент 7130','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7137','Клиент 7131','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7138','Клиент 7132','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7139','Клиент 7133','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7140','Клиент 7134','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7141','Клиент 7135','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7142','Клиент 7136','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7143','Клиент 7137','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7144','Клиент 7138','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7145','Клиент 7139','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7146','Клиент 7140','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7147','Клиент 7141','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7148','Клиент 7142','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7149','Клиент 7143','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7150','Клиент 7144','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7151','Клиент 7145','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7152','Клиент 7146','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7153','Клиент 7147','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7154','Клиент 7148','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7155','Клиент 7149','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7156','Клиент 7150','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7157','Клиент 7151','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7158','Клиент 7152','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7159','Клиент 7153','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7160','Клиент 7154','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7161','Клиент 7155','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7162','Клиент 7156','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7163','Клиент 7157','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7164','Клиент 7158','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7165','Клиент 7159','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7166','Клиент 7160','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7167','Клиент 7161','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7168','Клиент 7162','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7169','Клиент 7163','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7170','Клиент 7164','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7171','Клиент 7165','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7172','Клиент 7166','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7173','Клиент 7167','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7174','Клиент 7168','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7175','Клиент 7169','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7176','Клиент 7170','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7177','Клиент 7171','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7178','Клиент 7172','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7179','Клиент 7173','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7180','Клиент 7174','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7181','Клиент 7175','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7182','Клиент 7176','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7183','Клиент 7177','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7184','Клиент 7178','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7185','Клиент 7179','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7186','Клиент 7180','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7187','Клиент 7181','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7188','Клиент 7182','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7189','Клиент 7183','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7190','Клиент 7184','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7191','Клиент 7185','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7192','Клиент 7186','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7193','Клиент 7187','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7194','Клиент 7188','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7195','Клиент 7189','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7196','Клиент 7190','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7197','Клиент 7191','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7198','Клиент 7192','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7199','Клиент 7193','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7200','Клиент 7194','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7201','Клиент 7195','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7202','Клиент 7196','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7203','Клиент 7197','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7204','Клиент 7198','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7205','Клиент 7199','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7206','Клиент 7200','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7207','Клиент 7201','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7208','Клиент 7202','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7209','Клиент 7203','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7210','Клиент 7204','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7211','Клиент 7205','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7212','Клиент 7206','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7213','Клиент 7207','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7214','Клиент 7208','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7215','Клиент 7209','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7216','Клиент 7210','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7217','Клиент 7211','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7218','Клиент 7212','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7219','Клиент 7213','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7220','Клиент 7214','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7221','Клиент 7215','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7222','Клиент 7216','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7223','Клиент 7217','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7224','Клиент 7218','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7225','Клиент 7219','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7226','Клиент 7220','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7227','Клиент 7221','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7228','Клиент 7222','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7229','Клиент 7223','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7230','Клиент 7224','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7231','Клиент 7225','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7232','Клиент 7226','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7233','Клиент 7227','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7234','Клиент 7228','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7235','Клиент 7229','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7236','Клиент 7230','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7237','Клиент 7231','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7238','Клиент 7232','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7239','Клиент 7233','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7240','Клиент 7234','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7241','Клиент 7235','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7242','Клиент 7236','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7243','Клиент 7237','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7244','Клиент 7238','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7245','Клиент 7239','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7246','Клиент 7240','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7247','Клиент 7241','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7248','Клиент 7242','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7249','Клиент 7243','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7250','Клиент 7244','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7251','Клиент 7245','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7252','Клиент 7246','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7253','Клиент 7247','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7254','Клиент 7248','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7255','Клиент 7249','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7256','Клиент 7250','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7257','Клиент 7251','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7258','Клиент 7252','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7259','Клиент 7253','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7260','Клиент 7254','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7261','Клиент 7255','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7262','Клиент 7256','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7263','Клиент 7257','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7264','Клиент 7258','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7265','Клиент 7259','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7266','Клиент 7260','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7267','Клиент 7261','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7268','Клиент 7262','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7269','Клиент 7263','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7270','Клиент 7264','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7271','Клиент 7265','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7272','Клиент 7266','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7273','Клиент 7267','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7274','Клиент 7268','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7275','Клиент 7269','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7276','Клиент 7270','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7277','Клиент 7271','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7278','Клиент 7272','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7279','Клиент 7273','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7280','Клиент 7274','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7281','Клиент 7275','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7282','Клиент 7276','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7283','Клиент 7277','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7284','Клиент 7278','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7285','Клиент 7279','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7286','Клиент 7280','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7287','Клиент 7281','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7288','Клиент 7282','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7289','Клиент 7283','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7290','Клиент 7284','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7291','Клиент 7285','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7292','Клиент 7286','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7293','Клиент 7287','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7294','Клиент 7288','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7295','Клиент 7289','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7296','Клиент 7290','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7297','Клиент 7291','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7298','Клиент 7292','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7299','Клиент 7293','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7300','Клиент 7294','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7301','Клиент 7295','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7302','Клиент 7296','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7303','Клиент 7297','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7304','Клиент 7298','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7305','Клиент 7299','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7306','Клиент 7300','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7307','Клиент 7301','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7308','Клиент 7302','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7309','Клиент 7303','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7310','Клиент 7304','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7311','Клиент 7305','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7312','Клиент 7306','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7313','Клиент 7307','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7314','Клиент 7308','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7315','Клиент 7309','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7316','Клиент 7310','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7317','Клиент 7311','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7318','Клиент 7312','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7319','Клиент 7313','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7320','Клиент 7314','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7321','Клиент 7315','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7322','Клиент 7316','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7323','Клиент 7317','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7324','Клиент 7318','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7325','Клиент 7319','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7326','Клиент 7320','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7327','Клиент 7321','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7328','Клиент 7322','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7329','Клиент 7323','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7330','Клиент 7324','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7331','Клиент 7325','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7332','Клиент 7326','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7333','Клиент 7327','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7334','Клиент 7328','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7335','Клиент 7329','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7336','Клиент 7330','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7337','Клиент 7331','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7338','Клиент 7332','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7339','Клиент 7333','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7340','Клиент 7334','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7341','Клиент 7335','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7342','Клиент 7336','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7343','Клиент 7337','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7344','Клиент 7338','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7345','Клиент 7339','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7346','Клиент 7340','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7347','Клиент 7341','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7348','Клиент 7342','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7349','Клиент 7343','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7350','Клиент 7344','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7351','Клиент 7345','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7352','Клиент 7346','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7353','Клиент 7347','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7354','Клиент 7348','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7355','Клиент 7349','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7356','Клиент 7350','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7357','Клиент 7351','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7358','Клиент 7352','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7359','Клиент 7353','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7360','Клиент 7354','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7361','Клиент 7355','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7362','Клиент 7356','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7363','Клиент 7357','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7364','Клиент 7358','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7365','Клиент 7359','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7366','Клиент 7360','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7367','Клиент 7361','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7368','Клиент 7362','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7369','Клиент 7363','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7370','Клиент 7364','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7371','Клиент 7365','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7372','Клиент 7366','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7373','Клиент 7367','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7374','Клиент 7368','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7375','Клиент 7369','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7376','Клиент 7370','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7377','Клиент 7371','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7378','Клиент 7372','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7379','Клиент 7373','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7380','Клиент 7374','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7381','Клиент 7375','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7382','Клиент 7376','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7383','Клиент 7377','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7384','Клиент 7378','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7385','Клиент 7379','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7386','Клиент 7380','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7387','Клиент 7381','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7388','Клиент 7382','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7389','Клиент 7383','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7390','Клиент 7384','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7391','Клиент 7385','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7392','Клиент 7386','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7393','Клиент 7387','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7394','Клиент 7388','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7395','Клиент 7389','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7396','Клиент 7390','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7397','Клиент 7391','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7398','Клиент 7392','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7399','Клиент 7393','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7400','Клиент 7394','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7401','Клиент 7395','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7402','Клиент 7396','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7403','Клиент 7397','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7404','Клиент 7398','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7405','Клиент 7399','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7406','Клиент 7400','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7407','Клиент 7401','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7408','Клиент 7402','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7409','Клиент 7403','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7410','Клиент 7404','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7411','Клиент 7405','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7412','Клиент 7406','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7413','Клиент 7407','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7414','Клиент 7408','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7415','Клиент 7409','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7416','Клиент 7410','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7417','Клиент 7411','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7418','Клиент 7412','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7419','Клиент 7413','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7420','Клиент 7414','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7421','Клиент 7415','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7422','Клиент 7416','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7423','Клиент 7417','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7424','Клиент 7418','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7425','Клиент 7419','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7426','Клиент 7420','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7427','Клиент 7421','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7428','Клиент 7422','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7429','Клиент 7423','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7430','Клиент 7424','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7431','Клиент 7425','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7432','Клиент 7426','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7433','Клиент 7427','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7434','Клиент 7428','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7435','Клиент 7429','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7436','Клиент 7430','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7437','Клиент 7431','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7438','Клиент 7432','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7439','Клиент 7433','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7440','Клиент 7434','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7441','Клиент 7435','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7442','Клиент 7436','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7443','Клиент 7437','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7444','Клиент 7438','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7445','Клиент 7439','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7446','Клиент 7440','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7447','Клиент 7441','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7448','Клиент 7442','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7449','Клиент 7443','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7450','Клиент 7444','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7451','Клиент 7445','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7452','Клиент 7446','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7453','Клиент 7447','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7454','Клиент 7448','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7455','Клиент 7449','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7456','Клиент 7450','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7457','Клиент 7451','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7458','Клиент 7452','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7459','Клиент 7453','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7460','Клиент 7454','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7461','Клиент 7455','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7462','Клиент 7456','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7463','Клиент 7457','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7464','Клиент 7458','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7465','Клиент 7459','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7466','Клиент 7460','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7467','Клиент 7461','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7468','Клиент 7462','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7469','Клиент 7463','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7470','Клиент 7464','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7471','Клиент 7465','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7472','Клиент 7466','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7473','Клиент 7467','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7474','Клиент 7468','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7475','Клиент 7469','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7476','Клиент 7470','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7477','Клиент 7471','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7478','Клиент 7472','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7479','Клиент 7473','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7480','Клиент 7474','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7481','Клиент 7475','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7482','Клиент 7476','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7483','Клиент 7477','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7484','Клиент 7478','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7485','Клиент 7479','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7486','Клиент 7480','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7487','Клиент 7481','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7488','Клиент 7482','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7489','Клиент 7483','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7490','Клиент 7484','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7491','Клиент 7485','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7492','Клиент 7486','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7493','Клиент 7487','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7494','Клиент 7488','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7495','Клиент 7489','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7496','Клиент 7490','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7497','Клиент 7491','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7498','Клиент 7492','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7499','Клиент 7493','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7500','Клиент 7494','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7501','Клиент 7495','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7502','Клиент 7496','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7503','Клиент 7497','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7504','Клиент 7498','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7505','Клиент 7499','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7506','Клиент 7500','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7507','Клиент 7501','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7508','Клиент 7502','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7509','Клиент 7503','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7510','Клиент 7504','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7511','Клиент 7505','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7512','Клиент 7506','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7513','Клиент 7507','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7514','Клиент 7508','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7515','Клиент 7509','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7516','Клиент 7510','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7517','Клиент 7511','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7518','Клиент 7512','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7519','Клиент 7513','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7520','Клиент 7514','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7521','Клиент 7515','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7522','Клиент 7516','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7523','Клиент 7517','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7524','Клиент 7518','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7525','Клиент 7519','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7526','Клиент 7520','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7527','Клиент 7521','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7528','Клиент 7522','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7529','Клиент 7523','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7530','Клиент 7524','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7531','Клиент 7525','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7532','Клиент 7526','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7533','Клиент 7527','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7534','Клиент 7528','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7535','Клиент 7529','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7536','Клиент 7530','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7537','Клиент 7531','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7538','Клиент 7532','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7539','Клиент 7533','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7540','Клиент 7534','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7541','Клиент 7535','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7542','Клиент 7536','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7543','Клиент 7537','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7544','Клиент 7538','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7545','Клиент 7539','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7546','Клиент 7540','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7547','Клиент 7541','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7548','Клиент 7542','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7549','Клиент 7543','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7550','Клиент 7544','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7551','Клиент 7545','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7552','Клиент 7546','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7553','Клиент 7547','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7554','Клиент 7548','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7555','Клиент 7549','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7556','Клиент 7550','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7557','Клиент 7551','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7558','Клиент 7552','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7559','Клиент 7553','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7560','Клиент 7554','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7561','Клиент 7555','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7562','Клиент 7556','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7563','Клиент 7557','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7564','Клиент 7558','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7565','Клиент 7559','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7566','Клиент 7560','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7567','Клиент 7561','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7568','Клиент 7562','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7569','Клиент 7563','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7570','Клиент 7564','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7571','Клиент 7565','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7572','Клиент 7566','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7573','Клиент 7567','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7574','Клиент 7568','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7575','Клиент 7569','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7576','Клиент 7570','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7577','Клиент 7571','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7578','Клиент 7572','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7579','Клиент 7573','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7580','Клиент 7574','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7581','Клиент 7575','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7582','Клиент 7576','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7583','Клиент 7577','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7584','Клиент 7578','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7585','Клиент 7579','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7586','Клиент 7580','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7587','Клиент 7581','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7588','Клиент 7582','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7589','Клиент 7583','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7590','Клиент 7584','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7591','Клиент 7585','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7592','Клиент 7586','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7593','Клиент 7587','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7594','Клиент 7588','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7595','Клиент 7589','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7596','Клиент 7590','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7597','Клиент 7591','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7598','Клиент 7592','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7599','Клиент 7593','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7600','Клиент 7594','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7601','Клиент 7595','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7602','Клиент 7596','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7603','Клиент 7597','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7604','Клиент 7598','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7605','Клиент 7599','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7606','Клиент 7600','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7607','Клиент 7601','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7608','Клиент 7602','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7609','Клиент 7603','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7610','Клиент 7604','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7611','Клиент 7605','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7612','Клиент 7606','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7613','Клиент 7607','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7614','Клиент 7608','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7615','Клиент 7609','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7616','Клиент 7610','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7617','Клиент 7611','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7618','Клиент 7612','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7619','Клиент 7613','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7620','Клиент 7614','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7621','Клиент 7615','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7622','Клиент 7616','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7623','Клиент 7617','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7624','Клиент 7618','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7625','Клиент 7619','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7626','Клиент 7620','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7627','Клиент 7621','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7628','Клиент 7622','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7629','Клиент 7623','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7630','Клиент 7624','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7631','Клиент 7625','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7632','Клиент 7626','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7633','Клиент 7627','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7634','Клиент 7628','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7635','Клиент 7629','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7636','Клиент 7630','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7637','Клиент 7631','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7638','Клиент 7632','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7639','Клиент 7633','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7640','Клиент 7634','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7641','Клиент 7635','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7642','Клиент 7636','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7643','Клиент 7637','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7644','Клиент 7638','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7645','Клиент 7639','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7646','Клиент 7640','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7647','Клиент 7641','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7648','Клиент 7642','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7649','Клиент 7643','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7650','Клиент 7644','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7651','Клиент 7645','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7652','Клиент 7646','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7653','Клиент 7647','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7654','Клиент 7648','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7655','Клиент 7649','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7656','Клиент 7650','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7657','Клиент 7651','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7658','Клиент 7652','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7659','Клиент 7653','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7660','Клиент 7654','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7661','Клиент 7655','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7662','Клиент 7656','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7663','Клиент 7657','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7664','Клиент 7658','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7665','Клиент 7659','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7666','Клиент 7660','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7667','Клиент 7661','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7668','Клиент 7662','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7669','Клиент 7663','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7670','Клиент 7664','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7671','Клиент 7665','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7672','Клиент 7666','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7673','Клиент 7667','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7674','Клиент 7668','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7675','Клиент 7669','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7676','Клиент 7670','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7677','Клиент 7671','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7678','Клиент 7672','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7679','Клиент 7673','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7680','Клиент 7674','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7681','Клиент 7675','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7682','Клиент 7676','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7683','Клиент 7677','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7684','Клиент 7678','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7685','Клиент 7679','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7686','Клиент 7680','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7687','Клиент 7681','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7688','Клиент 7682','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7689','Клиент 7683','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7690','Клиент 7684','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7691','Клиент 7685','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7692','Клиент 7686','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7693','Клиент 7687','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7694','Клиент 7688','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7695','Клиент 7689','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7696','Клиент 7690','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7697','Клиент 7691','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7698','Клиент 7692','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7699','Клиент 7693','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7700','Клиент 7694','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7701','Клиент 7695','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7702','Клиент 7696','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7703','Клиент 7697','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7704','Клиент 7698','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7705','Клиент 7699','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7706','Клиент 7700','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7707','Клиент 7701','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7708','Клиент 7702','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7709','Клиент 7703','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7710','Клиент 7704','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7711','Клиент 7705','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7712','Клиент 7706','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7713','Клиент 7707','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7714','Клиент 7708','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7715','Клиент 7709','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7716','Клиент 7710','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7717','Клиент 7711','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7718','Клиент 7712','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7719','Клиент 7713','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7720','Клиент 7714','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7721','Клиент 7715','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7722','Клиент 7716','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7723','Клиент 7717','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7724','Клиент 7718','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7725','Клиент 7719','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7726','Клиент 7720','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7727','Клиент 7721','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7728','Клиент 7722','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7729','Клиент 7723','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7730','Клиент 7724','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7731','Клиент 7725','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7732','Клиент 7726','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7733','Клиент 7727','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7734','Клиент 7728','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7735','Клиент 7729','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7736','Клиент 7730','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7737','Клиент 7731','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7738','Клиент 7732','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7739','Клиент 7733','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7740','Клиент 7734','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7741','Клиент 7735','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7742','Клиент 7736','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7743','Клиент 7737','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7744','Клиент 7738','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7745','Клиент 7739','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7746','Клиент 7740','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7747','Клиент 7741','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7748','Клиент 7742','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7749','Клиент 7743','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7750','Клиент 7744','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7751','Клиент 7745','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7752','Клиент 7746','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7753','Клиент 7747','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7754','Клиент 7748','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7755','Клиент 7749','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7756','Клиент 7750','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7757','Клиент 7751','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7758','Клиент 7752','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7759','Клиент 7753','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7760','Клиент 7754','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7761','Клиент 7755','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7762','Клиент 7756','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7763','Клиент 7757','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7764','Клиент 7758','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7765','Клиент 7759','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7766','Клиент 7760','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7767','Клиент 7761','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7768','Клиент 7762','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7769','Клиент 7763','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7770','Клиент 7764','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7771','Клиент 7765','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7772','Клиент 7766','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7773','Клиент 7767','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7774','Клиент 7768','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7775','Клиент 7769','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7776','Клиент 7770','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7777','Клиент 7771','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7778','Клиент 7772','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7779','Клиент 7773','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7780','Клиент 7774','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7781','Клиент 7775','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7782','Клиент 7776','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7783','Клиент 7777','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7784','Клиент 7778','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7785','Клиент 7779','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7786','Клиент 7780','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7787','Клиент 7781','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7788','Клиент 7782','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7789','Клиент 7783','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7790','Клиент 7784','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7791','Клиент 7785','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7792','Клиент 7786','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7793','Клиент 7787','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7794','Клиент 7788','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7795','Клиент 7789','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7796','Клиент 7790','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7797','Клиент 7791','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7798','Клиент 7792','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7799','Клиент 7793','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7800','Клиент 7794','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7801','Клиент 7795','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7802','Клиент 7796','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7803','Клиент 7797','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7804','Клиент 7798','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7805','Клиент 7799','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7806','Клиент 7800','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7807','Клиент 7801','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7808','Клиент 7802','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7809','Клиент 7803','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7810','Клиент 7804','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7811','Клиент 7805','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7812','Клиент 7806','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7813','Клиент 7807','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7814','Клиент 7808','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7815','Клиент 7809','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7816','Клиент 7810','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7817','Клиент 7811','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7818','Клиент 7812','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7819','Клиент 7813','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7820','Клиент 7814','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7821','Клиент 7815','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7822','Клиент 7816','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7823','Клиент 7817','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7824','Клиент 7818','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7825','Клиент 7819','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7826','Клиент 7820','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7827','Клиент 7821','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7828','Клиент 7822','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7829','Клиент 7823','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7830','Клиент 7824','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7831','Клиент 7825','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7832','Клиент 7826','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7833','Клиент 7827','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7834','Клиент 7828','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7835','Клиент 7829','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7836','Клиент 7830','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7837','Клиент 7831','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7838','Клиент 7832','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7839','Клиент 7833','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7840','Клиент 7834','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7841','Клиент 7835','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7842','Клиент 7836','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7843','Клиент 7837','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7844','Клиент 7838','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7845','Клиент 7839','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7846','Клиент 7840','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7847','Клиент 7841','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7848','Клиент 7842','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7849','Клиент 7843','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7850','Клиент 7844','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7851','Клиент 7845','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7852','Клиент 7846','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7853','Клиент 7847','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7854','Клиент 7848','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7855','Клиент 7849','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7856','Клиент 7850','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7857','Клиент 7851','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7858','Клиент 7852','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7859','Клиент 7853','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7860','Клиент 7854','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7861','Клиент 7855','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7862','Клиент 7856','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7863','Клиент 7857','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7864','Клиент 7858','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7865','Клиент 7859','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7866','Клиент 7860','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7867','Клиент 7861','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7868','Клиент 7862','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7869','Клиент 7863','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7870','Клиент 7864','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7871','Клиент 7865','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7872','Клиент 7866','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7873','Клиент 7867','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7874','Клиент 7868','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7875','Клиент 7869','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7876','Клиент 7870','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7877','Клиент 7871','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7878','Клиент 7872','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7879','Клиент 7873','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7880','Клиент 7874','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7881','Клиент 7875','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7882','Клиент 7876','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7883','Клиент 7877','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7884','Клиент 7878','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7885','Клиент 7879','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7886','Клиент 7880','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7887','Клиент 7881','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7888','Клиент 7882','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7889','Клиент 7883','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7890','Клиент 7884','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7891','Клиент 7885','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7892','Клиент 7886','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7893','Клиент 7887','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7894','Клиент 7888','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7895','Клиент 7889','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7896','Клиент 7890','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7897','Клиент 7891','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7898','Клиент 7892','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7899','Клиент 7893','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7900','Клиент 7894','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7901','Клиент 7895','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7902','Клиент 7896','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7903','Клиент 7897','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7904','Клиент 7898','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7905','Клиент 7899','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7906','Клиент 7900','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7907','Клиент 7901','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7908','Клиент 7902','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7909','Клиент 7903','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7910','Клиент 7904','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7911','Клиент 7905','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7912','Клиент 7906','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7913','Клиент 7907','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7914','Клиент 7908','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7915','Клиент 7909','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7916','Клиент 7910','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7917','Клиент 7911','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7918','Клиент 7912','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7919','Клиент 7913','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7920','Клиент 7914','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7921','Клиент 7915','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7922','Клиент 7916','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7923','Клиент 7917','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7924','Клиент 7918','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7925','Клиент 7919','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7926','Клиент 7920','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7927','Клиент 7921','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7928','Клиент 7922','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7929','Клиент 7923','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7930','Клиент 7924','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7931','Клиент 7925','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7932','Клиент 7926','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7933','Клиент 7927','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7934','Клиент 7928','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7935','Клиент 7929','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7936','Клиент 7930','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7937','Клиент 7931','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7938','Клиент 7932','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7939','Клиент 7933','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7940','Клиент 7934','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7941','Клиент 7935','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7942','Клиент 7936','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7943','Клиент 7937','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7944','Клиент 7938','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7945','Клиент 7939','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7946','Клиент 7940','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7947','Клиент 7941','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7948','Клиент 7942','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7949','Клиент 7943','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7950','Клиент 7944','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7951','Клиент 7945','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7952','Клиент 7946','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7953','Клиент 7947','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7954','Клиент 7948','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7955','Клиент 7949','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7956','Клиент 7950','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7957','Клиент 7951','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7958','Клиент 7952','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7959','Клиент 7953','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7960','Клиент 7954','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7961','Клиент 7955','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7962','Клиент 7956','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7963','Клиент 7957','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7964','Клиент 7958','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7965','Клиент 7959','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7966','Клиент 7960','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7967','Клиент 7961','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7968','Клиент 7962','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7969','Клиент 7963','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7970','Клиент 7964','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7971','Клиент 7965','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7972','Клиент 7966','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7973','Клиент 7967','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7974','Клиент 7968','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7975','Клиент 7969','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7976','Клиент 7970','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7977','Клиент 7971','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7978','Клиент 7972','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7979','Клиент 7973','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7980','Клиент 7974','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7981','Клиент 7975','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7982','Клиент 7976','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7983','Клиент 7977','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7984','Клиент 7978','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7985','Клиент 7979','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7986','Клиент 7980','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7987','Клиент 7981','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7988','Клиент 7982','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7989','Клиент 7983','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7990','Клиент 7984','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7991','Клиент 7985','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7992','Клиент 7986','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7993','Клиент 7987','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7994','Клиент 7988','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7995','Клиент 7989','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7996','Клиент 7990','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7997','Клиент 7991','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7998','Клиент 7992','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('7999','Клиент 7993','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8000','Клиент 7994','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8001','Клиент 7995','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8002','Клиент 7996','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8003','Клиент 7997','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8004','Клиент 7998','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8005','Клиент 7999','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8006','Клиент 8000','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8007','Клиент 8001','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8008','Клиент 8002','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8009','Клиент 8003','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8010','Клиент 8004','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8011','Клиент 8005','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8012','Клиент 8006','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8013','Клиент 8007','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8014','Клиент 8008','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8015','Клиент 8009','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8016','Клиент 8010','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8017','Клиент 8011','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8018','Клиент 8012','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8019','Клиент 8013','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8020','Клиент 8014','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8021','Клиент 8015','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8022','Клиент 8016','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8023','Клиент 8017','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8024','Клиент 8018','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8025','Клиент 8019','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8026','Клиент 8020','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8027','Клиент 8021','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8028','Клиент 8022','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8029','Клиент 8023','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8030','Клиент 8024','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8031','Клиент 8025','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8032','Клиент 8026','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8033','Клиент 8027','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8034','Клиент 8028','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8035','Клиент 8029','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8036','Клиент 8030','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8037','Клиент 8031','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8038','Клиент 8032','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8039','Клиент 8033','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8040','Клиент 8034','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8041','Клиент 8035','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8042','Клиент 8036','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8043','Клиент 8037','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8044','Клиент 8038','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8045','Клиент 8039','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8046','Клиент 8040','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8047','Клиент 8041','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8048','Клиент 8042','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8049','Клиент 8043','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8050','Клиент 8044','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8051','Клиент 8045','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8052','Клиент 8046','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8053','Клиент 8047','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8054','Клиент 8048','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8055','Клиент 8049','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8056','Клиент 8050','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8057','Клиент 8051','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8058','Клиент 8052','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8059','Клиент 8053','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8060','Клиент 8054','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8061','Клиент 8055','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8062','Клиент 8056','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8063','Клиент 8057','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8064','Клиент 8058','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8065','Клиент 8059','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8066','Клиент 8060','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8067','Клиент 8061','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8068','Клиент 8062','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8069','Клиент 8063','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8070','Клиент 8064','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8071','Клиент 8065','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8072','Клиент 8066','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8073','Клиент 8067','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8074','Клиент 8068','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8075','Клиент 8069','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8076','Клиент 8070','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8077','Клиент 8071','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8078','Клиент 8072','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8079','Клиент 8073','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8080','Клиент 8074','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8081','Клиент 8075','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8082','Клиент 8076','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8083','Клиент 8077','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8084','Клиент 8078','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8085','Клиент 8079','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8086','Клиент 8080','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8087','Клиент 8081','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8088','Клиент 8082','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8089','Клиент 8083','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8090','Клиент 8084','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8091','Клиент 8085','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8092','Клиент 8086','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8093','Клиент 8087','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8094','Клиент 8088','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8095','Клиент 8089','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8096','Клиент 8090','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8097','Клиент 8091','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8098','Клиент 8092','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8099','Клиент 8093','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8100','Клиент 8094','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8101','Клиент 8095','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8102','Клиент 8096','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8103','Клиент 8097','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8104','Клиент 8098','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8105','Клиент 8099','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8106','Клиент 8100','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8107','Клиент 8101','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8108','Клиент 8102','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8109','Клиент 8103','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8110','Клиент 8104','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8111','Клиент 8105','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8112','Клиент 8106','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8113','Клиент 8107','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8114','Клиент 8108','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8115','Клиент 8109','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8116','Клиент 8110','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8117','Клиент 8111','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8118','Клиент 8112','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8119','Клиент 8113','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8120','Клиент 8114','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8121','Клиент 8115','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8122','Клиент 8116','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8123','Клиент 8117','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8124','Клиент 8118','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8125','Клиент 8119','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8126','Клиент 8120','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8127','Клиент 8121','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8128','Клиент 8122','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8129','Клиент 8123','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8130','Клиент 8124','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8131','Клиент 8125','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8132','Клиент 8126','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8133','Клиент 8127','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8134','Клиент 8128','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8135','Клиент 8129','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8136','Клиент 8130','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8137','Клиент 8131','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8138','Клиент 8132','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8139','Клиент 8133','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8140','Клиент 8134','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8141','Клиент 8135','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8142','Клиент 8136','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8143','Клиент 8137','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8144','Клиент 8138','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8145','Клиент 8139','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8146','Клиент 8140','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8147','Клиент 8141','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8148','Клиент 8142','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8149','Клиент 8143','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8150','Клиент 8144','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8151','Клиент 8145','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8152','Клиент 8146','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8153','Клиент 8147','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8154','Клиент 8148','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8155','Клиент 8149','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8156','Клиент 8150','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8157','Клиент 8151','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8158','Клиент 8152','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8159','Клиент 8153','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8160','Клиент 8154','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8161','Клиент 8155','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8162','Клиент 8156','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8163','Клиент 8157','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8164','Клиент 8158','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8165','Клиент 8159','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8166','Клиент 8160','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8167','Клиент 8161','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8168','Клиент 8162','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8169','Клиент 8163','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8170','Клиент 8164','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8171','Клиент 8165','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8172','Клиент 8166','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8173','Клиент 8167','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8174','Клиент 8168','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8175','Клиент 8169','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8176','Клиент 8170','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8177','Клиент 8171','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8178','Клиент 8172','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8179','Клиент 8173','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8180','Клиент 8174','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8181','Клиент 8175','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8182','Клиент 8176','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8183','Клиент 8177','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8184','Клиент 8178','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8185','Клиент 8179','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8186','Клиент 8180','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8187','Клиент 8181','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8188','Клиент 8182','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8189','Клиент 8183','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8190','Клиент 8184','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8191','Клиент 8185','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8192','Клиент 8186','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8193','Клиент 8187','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8194','Клиент 8188','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8195','Клиент 8189','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8196','Клиент 8190','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8197','Клиент 8191','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8198','Клиент 8192','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8199','Клиент 8193','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8200','Клиент 8194','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8201','Клиент 8195','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8202','Клиент 8196','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8203','Клиент 8197','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8204','Клиент 8198','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8205','Клиент 8199','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8206','Клиент 8200','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8207','Клиент 8201','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8208','Клиент 8202','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8209','Клиент 8203','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8210','Клиент 8204','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8211','Клиент 8205','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8212','Клиент 8206','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8213','Клиент 8207','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8214','Клиент 8208','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8215','Клиент 8209','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8216','Клиент 8210','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8217','Клиент 8211','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8218','Клиент 8212','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8219','Клиент 8213','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8220','Клиент 8214','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8221','Клиент 8215','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8222','Клиент 8216','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8223','Клиент 8217','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8224','Клиент 8218','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8225','Клиент 8219','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8226','Клиент 8220','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8227','Клиент 8221','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8228','Клиент 8222','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8229','Клиент 8223','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8230','Клиент 8224','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8231','Клиент 8225','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8232','Клиент 8226','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8233','Клиент 8227','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8234','Клиент 8228','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8235','Клиент 8229','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8236','Клиент 8230','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8237','Клиент 8231','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8238','Клиент 8232','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8239','Клиент 8233','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8240','Клиент 8234','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8241','Клиент 8235','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8242','Клиент 8236','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8243','Клиент 8237','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8244','Клиент 8238','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8245','Клиент 8239','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8246','Клиент 8240','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8247','Клиент 8241','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8248','Клиент 8242','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8249','Клиент 8243','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8250','Клиент 8244','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8251','Клиент 8245','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8252','Клиент 8246','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8253','Клиент 8247','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8254','Клиент 8248','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8255','Клиент 8249','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8256','Клиент 8250','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8257','Клиент 8251','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8258','Клиент 8252','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8259','Клиент 8253','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8260','Клиент 8254','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8261','Клиент 8255','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8262','Клиент 8256','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8263','Клиент 8257','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8264','Клиент 8258','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8265','Клиент 8259','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8266','Клиент 8260','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8267','Клиент 8261','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8268','Клиент 8262','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8269','Клиент 8263','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8270','Клиент 8264','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8271','Клиент 8265','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8272','Клиент 8266','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8273','Клиент 8267','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8274','Клиент 8268','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8275','Клиент 8269','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8276','Клиент 8270','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8277','Клиент 8271','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8278','Клиент 8272','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8279','Клиент 8273','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8280','Клиент 8274','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8281','Клиент 8275','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8282','Клиент 8276','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8283','Клиент 8277','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8284','Клиент 8278','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8285','Клиент 8279','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8286','Клиент 8280','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8287','Клиент 8281','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8288','Клиент 8282','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8289','Клиент 8283','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8290','Клиент 8284','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8291','Клиент 8285','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8292','Клиент 8286','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8293','Клиент 8287','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8294','Клиент 8288','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8295','Клиент 8289','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8296','Клиент 8290','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8297','Клиент 8291','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8298','Клиент 8292','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8299','Клиент 8293','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8300','Клиент 8294','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8301','Клиент 8295','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8302','Клиент 8296','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8303','Клиент 8297','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8304','Клиент 8298','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8305','Клиент 8299','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8306','Клиент 8300','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8307','Клиент 8301','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8308','Клиент 8302','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8309','Клиент 8303','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8310','Клиент 8304','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8311','Клиент 8305','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8312','Клиент 8306','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8313','Клиент 8307','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8314','Клиент 8308','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8315','Клиент 8309','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8316','Клиент 8310','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8317','Клиент 8311','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8318','Клиент 8312','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8319','Клиент 8313','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8320','Клиент 8314','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8321','Клиент 8315','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8322','Клиент 8316','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8323','Клиент 8317','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8324','Клиент 8318','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8325','Клиент 8319','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8326','Клиент 8320','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8327','Клиент 8321','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8328','Клиент 8322','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8329','Клиент 8323','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8330','Клиент 8324','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8331','Клиент 8325','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8332','Клиент 8326','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8333','Клиент 8327','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8334','Клиент 8328','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8335','Клиент 8329','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8336','Клиент 8330','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8337','Клиент 8331','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8338','Клиент 8332','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8339','Клиент 8333','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8340','Клиент 8334','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8341','Клиент 8335','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8342','Клиент 8336','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8343','Клиент 8337','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8344','Клиент 8338','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8345','Клиент 8339','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8346','Клиент 8340','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8347','Клиент 8341','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8348','Клиент 8342','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8349','Клиент 8343','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8350','Клиент 8344','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8351','Клиент 8345','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8352','Клиент 8346','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8353','Клиент 8347','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8354','Клиент 8348','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8355','Клиент 8349','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8356','Клиент 8350','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8357','Клиент 8351','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8358','Клиент 8352','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8359','Клиент 8353','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8360','Клиент 8354','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8361','Клиент 8355','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8362','Клиент 8356','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8363','Клиент 8357','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8364','Клиент 8358','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8365','Клиент 8359','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8366','Клиент 8360','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8367','Клиент 8361','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8368','Клиент 8362','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8369','Клиент 8363','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8370','Клиент 8364','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8371','Клиент 8365','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8372','Клиент 8366','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8373','Клиент 8367','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8374','Клиент 8368','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8375','Клиент 8369','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8376','Клиент 8370','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8377','Клиент 8371','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8378','Клиент 8372','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8379','Клиент 8373','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8380','Клиент 8374','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8381','Клиент 8375','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8382','Клиент 8376','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8383','Клиент 8377','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8384','Клиент 8378','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8385','Клиент 8379','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8386','Клиент 8380','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8387','Клиент 8381','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8388','Клиент 8382','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8389','Клиент 8383','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8390','Клиент 8384','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8391','Клиент 8385','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8392','Клиент 8386','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8393','Клиент 8387','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8394','Клиент 8388','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8395','Клиент 8389','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8396','Клиент 8390','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8397','Клиент 8391','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8398','Клиент 8392','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8399','Клиент 8393','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8400','Клиент 8394','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8401','Клиент 8395','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8402','Клиент 8396','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8403','Клиент 8397','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8404','Клиент 8398','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8405','Клиент 8399','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8406','Клиент 8400','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8407','Клиент 8401','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8408','Клиент 8402','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8409','Клиент 8403','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8410','Клиент 8404','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8411','Клиент 8405','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8412','Клиент 8406','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8413','Клиент 8407','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8414','Клиент 8408','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8415','Клиент 8409','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8416','Клиент 8410','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8417','Клиент 8411','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8418','Клиент 8412','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8419','Клиент 8413','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8420','Клиент 8414','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8421','Клиент 8415','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8422','Клиент 8416','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8423','Клиент 8417','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8424','Клиент 8418','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8425','Клиент 8419','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8426','Клиент 8420','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8427','Клиент 8421','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8428','Клиент 8422','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8429','Клиент 8423','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8430','Клиент 8424','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8431','Клиент 8425','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8432','Клиент 8426','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8433','Клиент 8427','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8434','Клиент 8428','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8435','Клиент 8429','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8436','Клиент 8430','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8437','Клиент 8431','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8438','Клиент 8432','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8439','Клиент 8433','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8440','Клиент 8434','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8441','Клиент 8435','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8442','Клиент 8436','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8443','Клиент 8437','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8444','Клиент 8438','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8445','Клиент 8439','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8446','Клиент 8440','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8447','Клиент 8441','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8448','Клиент 8442','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8449','Клиент 8443','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8450','Клиент 8444','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8451','Клиент 8445','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8452','Клиент 8446','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8453','Клиент 8447','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8454','Клиент 8448','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8455','Клиент 8449','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8456','Клиент 8450','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8457','Клиент 8451','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8458','Клиент 8452','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8459','Клиент 8453','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8460','Клиент 8454','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8461','Клиент 8455','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8462','Клиент 8456','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8463','Клиент 8457','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8464','Клиент 8458','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8465','Клиент 8459','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8466','Клиент 8460','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8467','Клиент 8461','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8468','Клиент 8462','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8469','Клиент 8463','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8470','Клиент 8464','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8471','Клиент 8465','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8472','Клиент 8466','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8473','Клиент 8467','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8474','Клиент 8468','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8475','Клиент 8469','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8476','Клиент 8470','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8477','Клиент 8471','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8478','Клиент 8472','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8479','Клиент 8473','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8480','Клиент 8474','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8481','Клиент 8475','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8482','Клиент 8476','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8483','Клиент 8477','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8484','Клиент 8478','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8485','Клиент 8479','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8486','Клиент 8480','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8487','Клиент 8481','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8488','Клиент 8482','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8489','Клиент 8483','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8490','Клиент 8484','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8491','Клиент 8485','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8492','Клиент 8486','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8493','Клиент 8487','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8494','Клиент 8488','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8495','Клиент 8489','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8496','Клиент 8490','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8497','Клиент 8491','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8498','Клиент 8492','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8499','Клиент 8493','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8500','Клиент 8494','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8501','Клиент 8495','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8502','Клиент 8496','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8503','Клиент 8497','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8504','Клиент 8498','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8505','Клиент 8499','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8506','Клиент 8500','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8507','Клиент 8501','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8508','Клиент 8502','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8509','Клиент 8503','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8510','Клиент 8504','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8511','Клиент 8505','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8512','Клиент 8506','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8513','Клиент 8507','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8514','Клиент 8508','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8515','Клиент 8509','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8516','Клиент 8510','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8517','Клиент 8511','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8518','Клиент 8512','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8519','Клиент 8513','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8520','Клиент 8514','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8521','Клиент 8515','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8522','Клиент 8516','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8523','Клиент 8517','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8524','Клиент 8518','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8525','Клиент 8519','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8526','Клиент 8520','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8527','Клиент 8521','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8528','Клиент 8522','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8529','Клиент 8523','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8530','Клиент 8524','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8531','Клиент 8525','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8532','Клиент 8526','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8533','Клиент 8527','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8534','Клиент 8528','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8535','Клиент 8529','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8536','Клиент 8530','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8537','Клиент 8531','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8538','Клиент 8532','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8539','Клиент 8533','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8540','Клиент 8534','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8541','Клиент 8535','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8542','Клиент 8536','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8543','Клиент 8537','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8544','Клиент 8538','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8545','Клиент 8539','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8546','Клиент 8540','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8547','Клиент 8541','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8548','Клиент 8542','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8549','Клиент 8543','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8550','Клиент 8544','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8551','Клиент 8545','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8552','Клиент 8546','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8553','Клиент 8547','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8554','Клиент 8548','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8555','Клиент 8549','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8556','Клиент 8550','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8557','Клиент 8551','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8558','Клиент 8552','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8559','Клиент 8553','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8560','Клиент 8554','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8561','Клиент 8555','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8562','Клиент 8556','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8563','Клиент 8557','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8564','Клиент 8558','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8565','Клиент 8559','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8566','Клиент 8560','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8567','Клиент 8561','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8568','Клиент 8562','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8569','Клиент 8563','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8570','Клиент 8564','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8571','Клиент 8565','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8572','Клиент 8566','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8573','Клиент 8567','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8574','Клиент 8568','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8575','Клиент 8569','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8576','Клиент 8570','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8577','Клиент 8571','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8578','Клиент 8572','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8579','Клиент 8573','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8580','Клиент 8574','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8581','Клиент 8575','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8582','Клиент 8576','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8583','Клиент 8577','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8584','Клиент 8578','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8585','Клиент 8579','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8586','Клиент 8580','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8587','Клиент 8581','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8588','Клиент 8582','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8589','Клиент 8583','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8590','Клиент 8584','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8591','Клиент 8585','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8592','Клиент 8586','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8593','Клиент 8587','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8594','Клиент 8588','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8595','Клиент 8589','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8596','Клиент 8590','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8597','Клиент 8591','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8598','Клиент 8592','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8599','Клиент 8593','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8600','Клиент 8594','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8601','Клиент 8595','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8602','Клиент 8596','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8603','Клиент 8597','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8604','Клиент 8598','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8605','Клиент 8599','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8606','Клиент 8600','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8607','Клиент 8601','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8608','Клиент 8602','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8609','Клиент 8603','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8610','Клиент 8604','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8611','Клиент 8605','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8612','Клиент 8606','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8613','Клиент 8607','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8614','Клиент 8608','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8615','Клиент 8609','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8616','Клиент 8610','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8617','Клиент 8611','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8618','Клиент 8612','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8619','Клиент 8613','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8620','Клиент 8614','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8621','Клиент 8615','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8622','Клиент 8616','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8623','Клиент 8617','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8624','Клиент 8618','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8625','Клиент 8619','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8626','Клиент 8620','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8627','Клиент 8621','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8628','Клиент 8622','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8629','Клиент 8623','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8630','Клиент 8624','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8631','Клиент 8625','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8632','Клиент 8626','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8633','Клиент 8627','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8634','Клиент 8628','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8635','Клиент 8629','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8636','Клиент 8630','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8637','Клиент 8631','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8638','Клиент 8632','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8639','Клиент 8633','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8640','Клиент 8634','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8641','Клиент 8635','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8642','Клиент 8636','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8643','Клиент 8637','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8644','Клиент 8638','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8645','Клиент 8639','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8646','Клиент 8640','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8647','Клиент 8641','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8648','Клиент 8642','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8649','Клиент 8643','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8650','Клиент 8644','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8651','Клиент 8645','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8652','Клиент 8646','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8653','Клиент 8647','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8654','Клиент 8648','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8655','Клиент 8649','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8656','Клиент 8650','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8657','Клиент 8651','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8658','Клиент 8652','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8659','Клиент 8653','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8660','Клиент 8654','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8661','Клиент 8655','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8662','Клиент 8656','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8663','Клиент 8657','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8664','Клиент 8658','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8665','Клиент 8659','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8666','Клиент 8660','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8667','Клиент 8661','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8668','Клиент 8662','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8669','Клиент 8663','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8670','Клиент 8664','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8671','Клиент 8665','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8672','Клиент 8666','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8673','Клиент 8667','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8674','Клиент 8668','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8675','Клиент 8669','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8676','Клиент 8670','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8677','Клиент 8671','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8678','Клиент 8672','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8679','Клиент 8673','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8680','Клиент 8674','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8681','Клиент 8675','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8682','Клиент 8676','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8683','Клиент 8677','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8684','Клиент 8678','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8685','Клиент 8679','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8686','Клиент 8680','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8687','Клиент 8681','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8688','Клиент 8682','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8689','Клиент 8683','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8690','Клиент 8684','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8691','Клиент 8685','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8692','Клиент 8686','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8693','Клиент 8687','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8694','Клиент 8688','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8695','Клиент 8689','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8696','Клиент 8690','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8697','Клиент 8691','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8698','Клиент 8692','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8699','Клиент 8693','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8700','Клиент 8694','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8701','Клиент 8695','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8702','Клиент 8696','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8703','Клиент 8697','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8704','Клиент 8698','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8705','Клиент 8699','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8706','Клиент 8700','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8707','Клиент 8701','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8708','Клиент 8702','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8709','Клиент 8703','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8710','Клиент 8704','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8711','Клиент 8705','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8712','Клиент 8706','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8713','Клиент 8707','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8714','Клиент 8708','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8715','Клиент 8709','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8716','Клиент 8710','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8717','Клиент 8711','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8718','Клиент 8712','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8719','Клиент 8713','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8720','Клиент 8714','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8721','Клиент 8715','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8722','Клиент 8716','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8723','Клиент 8717','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8724','Клиент 8718','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8725','Клиент 8719','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8726','Клиент 8720','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8727','Клиент 8721','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8728','Клиент 8722','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8729','Клиент 8723','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8730','Клиент 8724','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8731','Клиент 8725','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8732','Клиент 8726','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8733','Клиент 8727','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8734','Клиент 8728','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8735','Клиент 8729','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8736','Клиент 8730','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8737','Клиент 8731','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8738','Клиент 8732','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8739','Клиент 8733','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8740','Клиент 8734','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8741','Клиент 8735','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8742','Клиент 8736','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8743','Клиент 8737','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8744','Клиент 8738','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8745','Клиент 8739','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8746','Клиент 8740','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8747','Клиент 8741','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8748','Клиент 8742','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8749','Клиент 8743','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8750','Клиент 8744','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8751','Клиент 8745','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8752','Клиент 8746','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8753','Клиент 8747','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8754','Клиент 8748','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8755','Клиент 8749','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8756','Клиент 8750','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8757','Клиент 8751','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8758','Клиент 8752','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8759','Клиент 8753','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8760','Клиент 8754','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8761','Клиент 8755','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8762','Клиент 8756','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8763','Клиент 8757','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8764','Клиент 8758','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8765','Клиент 8759','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8766','Клиент 8760','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8767','Клиент 8761','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8768','Клиент 8762','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8769','Клиент 8763','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8770','Клиент 8764','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8771','Клиент 8765','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8772','Клиент 8766','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8773','Клиент 8767','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8774','Клиент 8768','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8775','Клиент 8769','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8776','Клиент 8770','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8777','Клиент 8771','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8778','Клиент 8772','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8779','Клиент 8773','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8780','Клиент 8774','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8781','Клиент 8775','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8782','Клиент 8776','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8783','Клиент 8777','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8784','Клиент 8778','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8785','Клиент 8779','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8786','Клиент 8780','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8787','Клиент 8781','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8788','Клиент 8782','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8789','Клиент 8783','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8790','Клиент 8784','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8791','Клиент 8785','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8792','Клиент 8786','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8793','Клиент 8787','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8794','Клиент 8788','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8795','Клиент 8789','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8796','Клиент 8790','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8797','Клиент 8791','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8798','Клиент 8792','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8799','Клиент 8793','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8800','Клиент 8794','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8801','Клиент 8795','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8802','Клиент 8796','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8803','Клиент 8797','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8804','Клиент 8798','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8805','Клиент 8799','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8806','Клиент 8800','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8807','Клиент 8801','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8808','Клиент 8802','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8809','Клиент 8803','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8810','Клиент 8804','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8811','Клиент 8805','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8812','Клиент 8806','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8813','Клиент 8807','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8814','Клиент 8808','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8815','Клиент 8809','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8816','Клиент 8810','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8817','Клиент 8811','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8818','Клиент 8812','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8819','Клиент 8813','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8820','Клиент 8814','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8821','Клиент 8815','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8822','Клиент 8816','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8823','Клиент 8817','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8824','Клиент 8818','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8825','Клиент 8819','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8826','Клиент 8820','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8827','Клиент 8821','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8828','Клиент 8822','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8829','Клиент 8823','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8830','Клиент 8824','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8831','Клиент 8825','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8832','Клиент 8826','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8833','Клиент 8827','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8834','Клиент 8828','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8835','Клиент 8829','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8836','Клиент 8830','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8837','Клиент 8831','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8838','Клиент 8832','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8839','Клиент 8833','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8840','Клиент 8834','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8841','Клиент 8835','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8842','Клиент 8836','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8843','Клиент 8837','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8844','Клиент 8838','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8845','Клиент 8839','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8846','Клиент 8840','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8847','Клиент 8841','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8848','Клиент 8842','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8849','Клиент 8843','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8850','Клиент 8844','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8851','Клиент 8845','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8852','Клиент 8846','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8853','Клиент 8847','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8854','Клиент 8848','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8855','Клиент 8849','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8856','Клиент 8850','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8857','Клиент 8851','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8858','Клиент 8852','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8859','Клиент 8853','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8860','Клиент 8854','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8861','Клиент 8855','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8862','Клиент 8856','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8863','Клиент 8857','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8864','Клиент 8858','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8865','Клиент 8859','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8866','Клиент 8860','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8867','Клиент 8861','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8868','Клиент 8862','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8869','Клиент 8863','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8870','Клиент 8864','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8871','Клиент 8865','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8872','Клиент 8866','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8873','Клиент 8867','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8874','Клиент 8868','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8875','Клиент 8869','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8876','Клиент 8870','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8877','Клиент 8871','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8878','Клиент 8872','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8879','Клиент 8873','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8880','Клиент 8874','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8881','Клиент 8875','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8882','Клиент 8876','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8883','Клиент 8877','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8884','Клиент 8878','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8885','Клиент 8879','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8886','Клиент 8880','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8887','Клиент 8881','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8888','Клиент 8882','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8889','Клиент 8883','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8890','Клиент 8884','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8891','Клиент 8885','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8892','Клиент 8886','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8893','Клиент 8887','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8894','Клиент 8888','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8895','Клиент 8889','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8896','Клиент 8890','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8897','Клиент 8891','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8898','Клиент 8892','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8899','Клиент 8893','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8900','Клиент 8894','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8901','Клиент 8895','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8902','Клиент 8896','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8903','Клиент 8897','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8904','Клиент 8898','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8905','Клиент 8899','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8906','Клиент 8900','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8907','Клиент 8901','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8908','Клиент 8902','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8909','Клиент 8903','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8910','Клиент 8904','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8911','Клиент 8905','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8912','Клиент 8906','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8913','Клиент 8907','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8914','Клиент 8908','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8915','Клиент 8909','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8916','Клиент 8910','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8917','Клиент 8911','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8918','Клиент 8912','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8919','Клиент 8913','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8920','Клиент 8914','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8921','Клиент 8915','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8922','Клиент 8916','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8923','Клиент 8917','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8924','Клиент 8918','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8925','Клиент 8919','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8926','Клиент 8920','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8927','Клиент 8921','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8928','Клиент 8922','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8929','Клиент 8923','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8930','Клиент 8924','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8931','Клиент 8925','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8932','Клиент 8926','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8933','Клиент 8927','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8934','Клиент 8928','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8935','Клиент 8929','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8936','Клиент 8930','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8937','Клиент 8931','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8938','Клиент 8932','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8939','Клиент 8933','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8940','Клиент 8934','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8941','Клиент 8935','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8942','Клиент 8936','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8943','Клиент 8937','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8944','Клиент 8938','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8945','Клиент 8939','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8946','Клиент 8940','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8947','Клиент 8941','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8948','Клиент 8942','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8949','Клиент 8943','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8950','Клиент 8944','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8951','Клиент 8945','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8952','Клиент 8946','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8953','Клиент 8947','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8954','Клиент 8948','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8955','Клиент 8949','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8956','Клиент 8950','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8957','Клиент 8951','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8958','Клиент 8952','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8959','Клиент 8953','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8960','Клиент 8954','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8961','Клиент 8955','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8962','Клиент 8956','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8963','Клиент 8957','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8964','Клиент 8958','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8965','Клиент 8959','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8966','Клиент 8960','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8967','Клиент 8961','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8968','Клиент 8962','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8969','Клиент 8963','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8970','Клиент 8964','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8971','Клиент 8965','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8972','Клиент 8966','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8973','Клиент 8967','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8974','Клиент 8968','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8975','Клиент 8969','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8976','Клиент 8970','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8977','Клиент 8971','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8978','Клиент 8972','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8979','Клиент 8973','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8980','Клиент 8974','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8981','Клиент 8975','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8982','Клиент 8976','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8983','Клиент 8977','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8984','Клиент 8978','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8985','Клиент 8979','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8986','Клиент 8980','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8987','Клиент 8981','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8988','Клиент 8982','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8989','Клиент 8983','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8990','Клиент 8984','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8991','Клиент 8985','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8992','Клиент 8986','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8993','Клиент 8987','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8994','Клиент 8988','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8995','Клиент 8989','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8996','Клиент 8990','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8997','Клиент 8991','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8998','Клиент 8992','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('8999','Клиент 8993','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9000','Клиент 8994','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9001','Клиент 8995','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9002','Клиент 8996','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9003','Клиент 8997','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9004','Клиент 8998','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9005','Клиент 8999','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9006','Клиент 9000','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9007','Клиент 9001','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9008','Клиент 9002','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9009','Клиент 9003','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9010','Клиент 9004','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9011','Клиент 9005','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9012','Клиент 9006','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9013','Клиент 9007','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9014','Клиент 9008','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9015','Клиент 9009','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9016','Клиент 9010','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9017','Клиент 9011','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9018','Клиент 9012','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9019','Клиент 9013','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9020','Клиент 9014','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9021','Клиент 9015','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9022','Клиент 9016','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9023','Клиент 9017','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9024','Клиент 9018','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9025','Клиент 9019','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9026','Клиент 9020','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9027','Клиент 9021','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9028','Клиент 9022','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9029','Клиент 9023','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9030','Клиент 9024','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9031','Клиент 9025','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9032','Клиент 9026','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9033','Клиент 9027','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9034','Клиент 9028','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9035','Клиент 9029','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9036','Клиент 9030','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9037','Клиент 9031','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9038','Клиент 9032','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9039','Клиент 9033','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9040','Клиент 9034','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9041','Клиент 9035','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9042','Клиент 9036','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9043','Клиент 9037','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9044','Клиент 9038','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9045','Клиент 9039','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9046','Клиент 9040','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9047','Клиент 9041','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9048','Клиент 9042','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9049','Клиент 9043','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9050','Клиент 9044','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9051','Клиент 9045','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9052','Клиент 9046','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9053','Клиент 9047','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9054','Клиент 9048','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9055','Клиент 9049','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9056','Клиент 9050','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9057','Клиент 9051','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9058','Клиент 9052','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9059','Клиент 9053','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9060','Клиент 9054','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9061','Клиент 9055','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9062','Клиент 9056','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9063','Клиент 9057','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9064','Клиент 9058','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9065','Клиент 9059','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9066','Клиент 9060','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9067','Клиент 9061','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9068','Клиент 9062','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9069','Клиент 9063','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9070','Клиент 9064','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9071','Клиент 9065','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9072','Клиент 9066','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9073','Клиент 9067','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9074','Клиент 9068','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9075','Клиент 9069','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9076','Клиент 9070','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9077','Клиент 9071','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9078','Клиент 9072','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9079','Клиент 9073','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9080','Клиент 9074','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9081','Клиент 9075','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9082','Клиент 9076','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9083','Клиент 9077','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9084','Клиент 9078','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9085','Клиент 9079','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9086','Клиент 9080','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9087','Клиент 9081','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9088','Клиент 9082','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9089','Клиент 9083','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9090','Клиент 9084','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9091','Клиент 9085','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9092','Клиент 9086','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9093','Клиент 9087','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9094','Клиент 9088','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9095','Клиент 9089','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9096','Клиент 9090','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9097','Клиент 9091','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9098','Клиент 9092','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9099','Клиент 9093','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9100','Клиент 9094','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9101','Клиент 9095','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9102','Клиент 9096','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9103','Клиент 9097','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9104','Клиент 9098','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9105','Клиент 9099','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9106','Клиент 9100','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9107','Клиент 9101','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9108','Клиент 9102','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9109','Клиент 9103','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9110','Клиент 9104','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9111','Клиент 9105','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9112','Клиент 9106','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9113','Клиент 9107','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9114','Клиент 9108','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9115','Клиент 9109','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9116','Клиент 9110','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9117','Клиент 9111','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9118','Клиент 9112','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9119','Клиент 9113','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9120','Клиент 9114','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9121','Клиент 9115','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9122','Клиент 9116','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9123','Клиент 9117','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9124','Клиент 9118','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9125','Клиент 9119','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9126','Клиент 9120','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9127','Клиент 9121','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9128','Клиент 9122','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9129','Клиент 9123','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9130','Клиент 9124','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9131','Клиент 9125','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9132','Клиент 9126','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9133','Клиент 9127','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9134','Клиент 9128','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9135','Клиент 9129','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9136','Клиент 9130','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9137','Клиент 9131','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9138','Клиент 9132','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9139','Клиент 9133','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9140','Клиент 9134','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9141','Клиент 9135','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9142','Клиент 9136','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9143','Клиент 9137','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9144','Клиент 9138','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9145','Клиент 9139','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9146','Клиент 9140','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9147','Клиент 9141','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9148','Клиент 9142','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9149','Клиент 9143','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9150','Клиент 9144','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9151','Клиент 9145','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9152','Клиент 9146','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9153','Клиент 9147','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9154','Клиент 9148','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9155','Клиент 9149','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9156','Клиент 9150','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9157','Клиент 9151','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9158','Клиент 9152','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9159','Клиент 9153','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9160','Клиент 9154','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9161','Клиент 9155','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9162','Клиент 9156','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9163','Клиент 9157','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9164','Клиент 9158','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9165','Клиент 9159','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9166','Клиент 9160','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9167','Клиент 9161','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9168','Клиент 9162','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9169','Клиент 9163','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9170','Клиент 9164','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9171','Клиент 9165','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9172','Клиент 9166','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9173','Клиент 9167','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9174','Клиент 9168','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9175','Клиент 9169','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9176','Клиент 9170','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9177','Клиент 9171','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9178','Клиент 9172','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9179','Клиент 9173','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9180','Клиент 9174','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9181','Клиент 9175','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9182','Клиент 9176','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9183','Клиент 9177','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9184','Клиент 9178','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9185','Клиент 9179','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9186','Клиент 9180','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9187','Клиент 9181','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9188','Клиент 9182','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9189','Клиент 9183','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9190','Клиент 9184','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9191','Клиент 9185','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9192','Клиент 9186','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9193','Клиент 9187','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9194','Клиент 9188','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9195','Клиент 9189','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9196','Клиент 9190','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9197','Клиент 9191','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9198','Клиент 9192','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9199','Клиент 9193','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9200','Клиент 9194','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9201','Клиент 9195','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9202','Клиент 9196','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9203','Клиент 9197','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9204','Клиент 9198','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9205','Клиент 9199','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9206','Клиент 9200','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9207','Клиент 9201','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9208','Клиент 9202','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9209','Клиент 9203','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9210','Клиент 9204','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9211','Клиент 9205','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9212','Клиент 9206','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9213','Клиент 9207','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9214','Клиент 9208','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9215','Клиент 9209','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9216','Клиент 9210','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9217','Клиент 9211','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9218','Клиент 9212','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9219','Клиент 9213','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9220','Клиент 9214','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9221','Клиент 9215','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9222','Клиент 9216','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9223','Клиент 9217','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9224','Клиент 9218','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9225','Клиент 9219','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9226','Клиент 9220','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9227','Клиент 9221','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9228','Клиент 9222','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9229','Клиент 9223','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9230','Клиент 9224','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9231','Клиент 9225','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9232','Клиент 9226','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9233','Клиент 9227','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9234','Клиент 9228','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9235','Клиент 9229','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9236','Клиент 9230','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9237','Клиент 9231','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9238','Клиент 9232','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9239','Клиент 9233','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9240','Клиент 9234','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9241','Клиент 9235','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9242','Клиент 9236','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9243','Клиент 9237','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9244','Клиент 9238','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9245','Клиент 9239','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9246','Клиент 9240','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9247','Клиент 9241','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9248','Клиент 9242','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9249','Клиент 9243','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9250','Клиент 9244','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9251','Клиент 9245','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9252','Клиент 9246','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9253','Клиент 9247','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9254','Клиент 9248','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9255','Клиент 9249','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9256','Клиент 9250','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9257','Клиент 9251','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9258','Клиент 9252','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9259','Клиент 9253','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9260','Клиент 9254','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9261','Клиент 9255','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9262','Клиент 9256','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9263','Клиент 9257','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9264','Клиент 9258','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9265','Клиент 9259','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9266','Клиент 9260','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9267','Клиент 9261','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9268','Клиент 9262','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9269','Клиент 9263','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9270','Клиент 9264','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9271','Клиент 9265','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9272','Клиент 9266','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9273','Клиент 9267','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9274','Клиент 9268','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9275','Клиент 9269','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9276','Клиент 9270','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9277','Клиент 9271','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9278','Клиент 9272','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9279','Клиент 9273','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9280','Клиент 9274','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9281','Клиент 9275','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9282','Клиент 9276','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9283','Клиент 9277','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9284','Клиент 9278','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9285','Клиент 9279','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9286','Клиент 9280','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9287','Клиент 9281','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9288','Клиент 9282','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9289','Клиент 9283','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9290','Клиент 9284','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9291','Клиент 9285','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9292','Клиент 9286','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9293','Клиент 9287','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9294','Клиент 9288','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9295','Клиент 9289','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9296','Клиент 9290','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9297','Клиент 9291','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9298','Клиент 9292','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9299','Клиент 9293','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9300','Клиент 9294','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9301','Клиент 9295','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9302','Клиент 9296','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9303','Клиент 9297','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9304','Клиент 9298','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9305','Клиент 9299','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9306','Клиент 9300','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9307','Клиент 9301','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9308','Клиент 9302','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9309','Клиент 9303','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9310','Клиент 9304','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9311','Клиент 9305','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9312','Клиент 9306','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9313','Клиент 9307','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9314','Клиент 9308','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9315','Клиент 9309','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9316','Клиент 9310','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9317','Клиент 9311','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9318','Клиент 9312','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9319','Клиент 9313','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9320','Клиент 9314','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9321','Клиент 9315','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9322','Клиент 9316','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9323','Клиент 9317','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9324','Клиент 9318','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9325','Клиент 9319','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9326','Клиент 9320','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9327','Клиент 9321','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9328','Клиент 9322','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9329','Клиент 9323','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9330','Клиент 9324','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9331','Клиент 9325','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9332','Клиент 9326','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9333','Клиент 9327','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9334','Клиент 9328','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9335','Клиент 9329','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9336','Клиент 9330','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9337','Клиент 9331','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9338','Клиент 9332','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9339','Клиент 9333','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9340','Клиент 9334','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9341','Клиент 9335','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9342','Клиент 9336','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9343','Клиент 9337','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9344','Клиент 9338','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9345','Клиент 9339','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9346','Клиент 9340','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9347','Клиент 9341','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9348','Клиент 9342','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9349','Клиент 9343','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9350','Клиент 9344','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9351','Клиент 9345','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9352','Клиент 9346','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9353','Клиент 9347','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9354','Клиент 9348','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9355','Клиент 9349','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9356','Клиент 9350','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9357','Клиент 9351','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9358','Клиент 9352','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9359','Клиент 9353','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9360','Клиент 9354','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9361','Клиент 9355','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9362','Клиент 9356','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9363','Клиент 9357','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9364','Клиент 9358','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9365','Клиент 9359','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9366','Клиент 9360','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9367','Клиент 9361','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9368','Клиент 9362','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9369','Клиент 9363','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9370','Клиент 9364','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9371','Клиент 9365','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9372','Клиент 9366','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9373','Клиент 9367','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9374','Клиент 9368','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9375','Клиент 9369','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9376','Клиент 9370','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9377','Клиент 9371','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9378','Клиент 9372','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9379','Клиент 9373','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9380','Клиент 9374','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9381','Клиент 9375','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9382','Клиент 9376','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9383','Клиент 9377','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9384','Клиент 9378','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9385','Клиент 9379','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9386','Клиент 9380','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9387','Клиент 9381','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9388','Клиент 9382','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9389','Клиент 9383','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9390','Клиент 9384','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9391','Клиент 9385','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9392','Клиент 9386','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9393','Клиент 9387','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9394','Клиент 9388','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9395','Клиент 9389','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9396','Клиент 9390','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9397','Клиент 9391','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9398','Клиент 9392','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9399','Клиент 9393','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9400','Клиент 9394','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9401','Клиент 9395','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9402','Клиент 9396','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9403','Клиент 9397','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9404','Клиент 9398','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9405','Клиент 9399','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9406','Клиент 9400','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9407','Клиент 9401','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9408','Клиент 9402','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9409','Клиент 9403','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9410','Клиент 9404','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9411','Клиент 9405','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9412','Клиент 9406','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9413','Клиент 9407','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9414','Клиент 9408','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9415','Клиент 9409','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9416','Клиент 9410','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9417','Клиент 9411','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9418','Клиент 9412','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9419','Клиент 9413','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9420','Клиент 9414','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9421','Клиент 9415','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9422','Клиент 9416','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9423','Клиент 9417','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9424','Клиент 9418','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9425','Клиент 9419','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9426','Клиент 9420','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9427','Клиент 9421','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9428','Клиент 9422','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9429','Клиент 9423','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9430','Клиент 9424','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9431','Клиент 9425','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9432','Клиент 9426','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9433','Клиент 9427','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9434','Клиент 9428','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9435','Клиент 9429','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9436','Клиент 9430','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9437','Клиент 9431','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9438','Клиент 9432','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9439','Клиент 9433','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9440','Клиент 9434','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9441','Клиент 9435','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9442','Клиент 9436','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9443','Клиент 9437','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9444','Клиент 9438','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9445','Клиент 9439','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9446','Клиент 9440','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9447','Клиент 9441','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9448','Клиент 9442','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9449','Клиент 9443','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9450','Клиент 9444','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9451','Клиент 9445','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9452','Клиент 9446','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9453','Клиент 9447','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9454','Клиент 9448','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9455','Клиент 9449','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9456','Клиент 9450','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9457','Клиент 9451','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9458','Клиент 9452','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9459','Клиент 9453','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9460','Клиент 9454','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9461','Клиент 9455','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9462','Клиент 9456','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9463','Клиент 9457','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9464','Клиент 9458','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9465','Клиент 9459','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9466','Клиент 9460','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9467','Клиент 9461','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9468','Клиент 9462','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9469','Клиент 9463','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9470','Клиент 9464','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9471','Клиент 9465','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9472','Клиент 9466','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9473','Клиент 9467','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9474','Клиент 9468','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9475','Клиент 9469','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9476','Клиент 9470','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9477','Клиент 9471','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9478','Клиент 9472','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9479','Клиент 9473','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9480','Клиент 9474','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9481','Клиент 9475','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9482','Клиент 9476','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9483','Клиент 9477','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9484','Клиент 9478','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9485','Клиент 9479','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9486','Клиент 9480','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9487','Клиент 9481','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9488','Клиент 9482','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9489','Клиент 9483','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9490','Клиент 9484','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9491','Клиент 9485','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9492','Клиент 9486','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9493','Клиент 9487','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9494','Клиент 9488','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9495','Клиент 9489','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9496','Клиент 9490','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9497','Клиент 9491','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9498','Клиент 9492','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9499','Клиент 9493','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9500','Клиент 9494','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9501','Клиент 9495','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9502','Клиент 9496','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9503','Клиент 9497','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9504','Клиент 9498','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9505','Клиент 9499','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9506','Клиент 9500','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9507','Клиент 9501','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9508','Клиент 9502','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9509','Клиент 9503','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9510','Клиент 9504','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9511','Клиент 9505','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9512','Клиент 9506','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9513','Клиент 9507','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9514','Клиент 9508','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9515','Клиент 9509','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9516','Клиент 9510','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9517','Клиент 9511','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9518','Клиент 9512','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9519','Клиент 9513','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9520','Клиент 9514','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9521','Клиент 9515','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9522','Клиент 9516','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9523','Клиент 9517','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9524','Клиент 9518','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9525','Клиент 9519','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9526','Клиент 9520','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9527','Клиент 9521','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9528','Клиент 9522','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9529','Клиент 9523','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9530','Клиент 9524','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9531','Клиент 9525','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9532','Клиент 9526','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9533','Клиент 9527','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9534','Клиент 9528','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9535','Клиент 9529','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9536','Клиент 9530','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9537','Клиент 9531','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9538','Клиент 9532','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9539','Клиент 9533','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9540','Клиент 9534','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9541','Клиент 9535','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9542','Клиент 9536','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9543','Клиент 9537','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9544','Клиент 9538','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9545','Клиент 9539','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9546','Клиент 9540','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9547','Клиент 9541','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9548','Клиент 9542','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9549','Клиент 9543','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9550','Клиент 9544','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9551','Клиент 9545','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9552','Клиент 9546','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9553','Клиент 9547','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9554','Клиент 9548','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9555','Клиент 9549','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9556','Клиент 9550','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9557','Клиент 9551','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9558','Клиент 9552','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9559','Клиент 9553','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9560','Клиент 9554','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9561','Клиент 9555','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9562','Клиент 9556','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9563','Клиент 9557','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9564','Клиент 9558','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9565','Клиент 9559','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9566','Клиент 9560','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9567','Клиент 9561','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9568','Клиент 9562','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9569','Клиент 9563','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9570','Клиент 9564','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9571','Клиент 9565','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9572','Клиент 9566','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9573','Клиент 9567','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9574','Клиент 9568','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9575','Клиент 9569','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9576','Клиент 9570','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9577','Клиент 9571','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9578','Клиент 9572','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9579','Клиент 9573','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9580','Клиент 9574','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9581','Клиент 9575','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9582','Клиент 9576','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9583','Клиент 9577','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9584','Клиент 9578','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9585','Клиент 9579','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9586','Клиент 9580','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9587','Клиент 9581','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9588','Клиент 9582','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9589','Клиент 9583','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9590','Клиент 9584','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9591','Клиент 9585','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9592','Клиент 9586','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9593','Клиент 9587','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9594','Клиент 9588','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9595','Клиент 9589','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9596','Клиент 9590','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9597','Клиент 9591','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9598','Клиент 9592','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9599','Клиент 9593','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9600','Клиент 9594','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9601','Клиент 9595','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9602','Клиент 9596','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9603','Клиент 9597','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9604','Клиент 9598','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9605','Клиент 9599','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9606','Клиент 9600','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9607','Клиент 9601','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9608','Клиент 9602','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9609','Клиент 9603','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9610','Клиент 9604','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9611','Клиент 9605','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9612','Клиент 9606','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9613','Клиент 9607','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9614','Клиент 9608','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9615','Клиент 9609','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9616','Клиент 9610','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9617','Клиент 9611','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9618','Клиент 9612','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9619','Клиент 9613','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9620','Клиент 9614','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9621','Клиент 9615','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9622','Клиент 9616','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9623','Клиент 9617','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9624','Клиент 9618','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9625','Клиент 9619','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9626','Клиент 9620','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9627','Клиент 9621','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9628','Клиент 9622','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9629','Клиент 9623','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9630','Клиент 9624','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9631','Клиент 9625','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9632','Клиент 9626','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9633','Клиент 9627','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9634','Клиент 9628','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9635','Клиент 9629','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9636','Клиент 9630','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9637','Клиент 9631','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9638','Клиент 9632','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9639','Клиент 9633','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9640','Клиент 9634','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9641','Клиент 9635','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9642','Клиент 9636','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9643','Клиент 9637','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9644','Клиент 9638','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9645','Клиент 9639','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9646','Клиент 9640','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9647','Клиент 9641','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9648','Клиент 9642','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9649','Клиент 9643','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9650','Клиент 9644','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9651','Клиент 9645','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9652','Клиент 9646','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9653','Клиент 9647','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9654','Клиент 9648','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9655','Клиент 9649','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9656','Клиент 9650','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9657','Клиент 9651','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9658','Клиент 9652','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9659','Клиент 9653','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9660','Клиент 9654','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9661','Клиент 9655','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9662','Клиент 9656','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9663','Клиент 9657','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9664','Клиент 9658','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9665','Клиент 9659','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9666','Клиент 9660','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9667','Клиент 9661','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9668','Клиент 9662','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9669','Клиент 9663','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9670','Клиент 9664','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9671','Клиент 9665','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9672','Клиент 9666','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9673','Клиент 9667','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9674','Клиент 9668','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9675','Клиент 9669','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9676','Клиент 9670','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9677','Клиент 9671','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9678','Клиент 9672','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9679','Клиент 9673','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9680','Клиент 9674','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9681','Клиент 9675','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9682','Клиент 9676','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9683','Клиент 9677','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9684','Клиент 9678','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9685','Клиент 9679','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9686','Клиент 9680','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9687','Клиент 9681','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9688','Клиент 9682','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9689','Клиент 9683','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9690','Клиент 9684','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9691','Клиент 9685','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9692','Клиент 9686','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9693','Клиент 9687','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9694','Клиент 9688','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9695','Клиент 9689','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9696','Клиент 9690','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9697','Клиент 9691','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9698','Клиент 9692','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9699','Клиент 9693','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9700','Клиент 9694','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9701','Клиент 9695','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9702','Клиент 9696','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9703','Клиент 9697','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9704','Клиент 9698','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9705','Клиент 9699','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9706','Клиент 9700','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9707','Клиент 9701','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9708','Клиент 9702','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9709','Клиент 9703','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9710','Клиент 9704','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9711','Клиент 9705','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9712','Клиент 9706','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9713','Клиент 9707','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9714','Клиент 9708','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9715','Клиент 9709','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9716','Клиент 9710','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9717','Клиент 9711','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9718','Клиент 9712','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9719','Клиент 9713','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9720','Клиент 9714','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9721','Клиент 9715','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9722','Клиент 9716','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9723','Клиент 9717','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9724','Клиент 9718','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9725','Клиент 9719','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9726','Клиент 9720','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9727','Клиент 9721','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9728','Клиент 9722','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9729','Клиент 9723','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9730','Клиент 9724','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9731','Клиент 9725','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9732','Клиент 9726','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9733','Клиент 9727','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9734','Клиент 9728','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9735','Клиент 9729','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9736','Клиент 9730','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9737','Клиент 9731','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9738','Клиент 9732','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9739','Клиент 9733','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9740','Клиент 9734','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9741','Клиент 9735','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9742','Клиент 9736','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9743','Клиент 9737','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9744','Клиент 9738','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9745','Клиент 9739','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9746','Клиент 9740','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9747','Клиент 9741','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9748','Клиент 9742','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9749','Клиент 9743','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9750','Клиент 9744','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9751','Клиент 9745','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9752','Клиент 9746','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9753','Клиент 9747','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9754','Клиент 9748','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9755','Клиент 9749','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9756','Клиент 9750','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9757','Клиент 9751','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9758','Клиент 9752','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9759','Клиент 9753','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9760','Клиент 9754','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9761','Клиент 9755','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9762','Клиент 9756','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9763','Клиент 9757','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9764','Клиент 9758','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9765','Клиент 9759','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9766','Клиент 9760','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9767','Клиент 9761','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9768','Клиент 9762','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9769','Клиент 9763','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9770','Клиент 9764','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9771','Клиент 9765','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9772','Клиент 9766','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9773','Клиент 9767','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9774','Клиент 9768','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9775','Клиент 9769','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9776','Клиент 9770','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9777','Клиент 9771','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9778','Клиент 9772','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9779','Клиент 9773','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9780','Клиент 9774','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9781','Клиент 9775','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9782','Клиент 9776','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9783','Клиент 9777','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9784','Клиент 9778','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9785','Клиент 9779','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9786','Клиент 9780','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9787','Клиент 9781','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9788','Клиент 9782','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9789','Клиент 9783','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9790','Клиент 9784','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9791','Клиент 9785','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9792','Клиент 9786','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9793','Клиент 9787','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9794','Клиент 9788','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9795','Клиент 9789','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9796','Клиент 9790','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9797','Клиент 9791','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9798','Клиент 9792','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9799','Клиент 9793','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9800','Клиент 9794','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9801','Клиент 9795','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9802','Клиент 9796','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9803','Клиент 9797','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9804','Клиент 9798','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9805','Клиент 9799','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9806','Клиент 9800','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9807','Клиент 9801','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9808','Клиент 9802','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9809','Клиент 9803','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9810','Клиент 9804','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9811','Клиент 9805','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9812','Клиент 9806','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9813','Клиент 9807','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9814','Клиент 9808','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9815','Клиент 9809','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9816','Клиент 9810','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9817','Клиент 9811','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9818','Клиент 9812','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9819','Клиент 9813','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9820','Клиент 9814','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9821','Клиент 9815','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9822','Клиент 9816','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9823','Клиент 9817','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9824','Клиент 9818','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9825','Клиент 9819','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9826','Клиент 9820','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9827','Клиент 9821','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9828','Клиент 9822','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9829','Клиент 9823','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9830','Клиент 9824','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9831','Клиент 9825','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9832','Клиент 9826','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9833','Клиент 9827','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9834','Клиент 9828','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9835','Клиент 9829','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9836','Клиент 9830','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9837','Клиент 9831','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9838','Клиент 9832','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9839','Клиент 9833','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9840','Клиент 9834','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9841','Клиент 9835','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9842','Клиент 9836','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9843','Клиент 9837','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9844','Клиент 9838','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9845','Клиент 9839','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9846','Клиент 9840','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9847','Клиент 9841','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9848','Клиент 9842','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9849','Клиент 9843','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9850','Клиент 9844','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9851','Клиент 9845','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9852','Клиент 9846','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9853','Клиент 9847','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9854','Клиент 9848','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9855','Клиент 9849','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9856','Клиент 9850','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9857','Клиент 9851','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9858','Клиент 9852','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9859','Клиент 9853','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9860','Клиент 9854','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9861','Клиент 9855','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9862','Клиент 9856','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9863','Клиент 9857','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9864','Клиент 9858','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9865','Клиент 9859','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9866','Клиент 9860','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9867','Клиент 9861','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9868','Клиент 9862','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9869','Клиент 9863','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9870','Клиент 9864','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9871','Клиент 9865','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9872','Клиент 9866','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9873','Клиент 9867','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9874','Клиент 9868','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9875','Клиент 9869','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9876','Клиент 9870','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9877','Клиент 9871','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9878','Клиент 9872','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9879','Клиент 9873','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9880','Клиент 9874','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9881','Клиент 9875','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9882','Клиент 9876','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9883','Клиент 9877','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9884','Клиент 9878','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9885','Клиент 9879','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9886','Клиент 9880','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9887','Клиент 9881','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9888','Клиент 9882','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9889','Клиент 9883','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9890','Клиент 9884','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9891','Клиент 9885','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9892','Клиент 9886','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9893','Клиент 9887','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9894','Клиент 9888','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9895','Клиент 9889','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9896','Клиент 9890','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9897','Клиент 9891','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9898','Клиент 9892','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9899','Клиент 9893','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9900','Клиент 9894','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9901','Клиент 9895','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9902','Клиент 9896','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9903','Клиент 9897','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9904','Клиент 9898','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9905','Клиент 9899','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9906','Клиент 9900','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9907','Клиент 9901','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9908','Клиент 9902','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9909','Клиент 9903','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9910','Клиент 9904','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9911','Клиент 9905','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9912','Клиент 9906','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9913','Клиент 9907','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9914','Клиент 9908','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9915','Клиент 9909','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9916','Клиент 9910','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9917','Клиент 9911','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9918','Клиент 9912','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9919','Клиент 9913','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9920','Клиент 9914','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9921','Клиент 9915','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9922','Клиент 9916','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9923','Клиент 9917','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9924','Клиент 9918','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9925','Клиент 9919','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9926','Клиент 9920','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9927','Клиент 9921','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9928','Клиент 9922','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9929','Клиент 9923','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9930','Клиент 9924','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9931','Клиент 9925','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9932','Клиент 9926','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9933','Клиент 9927','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9934','Клиент 9928','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9935','Клиент 9929','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9936','Клиент 9930','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9937','Клиент 9931','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9938','Клиент 9932','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9939','Клиент 9933','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9940','Клиент 9934','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9941','Клиент 9935','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9942','Клиент 9936','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9943','Клиент 9937','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9944','Клиент 9938','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9945','Клиент 9939','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9946','Клиент 9940','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9947','Клиент 9941','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9948','Клиент 9942','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9949','Клиент 9943','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9950','Клиент 9944','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9951','Клиент 9945','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9952','Клиент 9946','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9953','Клиент 9947','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9954','Клиент 9948','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9955','Клиент 9949','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9956','Клиент 9950','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9957','Клиент 9951','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9958','Клиент 9952','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9959','Клиент 9953','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9960','Клиент 9954','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9961','Клиент 9955','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9962','Клиент 9956','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9963','Клиент 9957','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9964','Клиент 9958','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9965','Клиент 9959','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9966','Клиент 9960','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9967','Клиент 9961','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9968','Клиент 9962','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9969','Клиент 9963','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9970','Клиент 9964','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9971','Клиент 9965','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9972','Клиент 9966','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9973','Клиент 9967','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9974','Клиент 9968','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9975','Клиент 9969','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9976','Клиент 9970','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9977','Клиент 9971','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9978','Клиент 9972','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9979','Клиент 9973','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9980','Клиент 9974','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9981','Клиент 9975','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9982','Клиент 9976','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9983','Клиент 9977','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9984','Клиент 9978','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9985','Клиент 9979','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9986','Клиент 9980','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9987','Клиент 9981','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9988','Клиент 9982','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9989','Клиент 9983','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9990','Клиент 9984','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9991','Клиент 9985','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9992','Клиент 9986','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9993','Клиент 9987','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9994','Клиент 9988','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9995','Клиент 9989','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9996','Клиент 9990','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9997','Клиент 9991','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9998','Клиент 9992','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('9999','Клиент 9993','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('10000','Клиент 9994','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('10001','Клиент 9995','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('10002','Клиент 9996','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('10003','Клиент 9997','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('10004','Клиент 9998','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('10005','Клиент 9999','0.00','0','')~
INSERT INTO `stock_clients` (`client_id`,`client_name`,`client_debt`,`client_category`,`client_comment`) VALUES
('10006','Клиент 10000','0.00','0','')~
-- -------------------------------------------~
-- TABLE DATA stock_clients_invoices~
-- -------------------------------------------~
INSERT INTO `stock_clients_invoices` (`invoice_id`,`invoice_code`,`invoice_datetime`,`invoice_seller_id`,`invoice_client_id`,`invoice_summ`,`invoice_manager_comment`,`invoice_status`) VALUES
('16','Д19062014','2014-06-19 16:11:46','1','1117','12500.00','-','0')~
INSERT INTO `stock_clients_invoices` (`invoice_id`,`invoice_code`,`invoice_datetime`,`invoice_seller_id`,`invoice_client_id`,`invoice_summ`,`invoice_manager_comment`,`invoice_status`) VALUES
('17','Д19062014','2014-06-19 17:43:31','1','1117','3500.00','-','0')~
INSERT INTO `stock_clients_invoices` (`invoice_id`,`invoice_code`,`invoice_datetime`,`invoice_seller_id`,`invoice_client_id`,`invoice_summ`,`invoice_manager_comment`,`invoice_status`) VALUES
('18','з3344','2014-06-19 20:55:35','3','1117','0.00','-','0')~
-- -------------------------------------------~
-- TABLE DATA stock_colors~
-- -------------------------------------------~
INSERT INTO `stock_colors` (`color_id`,`color_name`,`color_picture`) VALUES
('1','Белый','')~
INSERT INTO `stock_colors` (`color_id`,`color_name`,`color_picture`) VALUES
('2','Черный','')~
INSERT INTO `stock_colors` (`color_id`,`color_name`,`color_picture`) VALUES
('3','Красный','')~
INSERT INTO `stock_colors` (`color_id`,`color_name`,`color_picture`) VALUES
('4','Зеленый','')~
INSERT INTO `stock_colors` (`color_id`,`color_name`,`color_picture`) VALUES
('5','Синий','')~
-- -------------------------------------------~
-- TABLE DATA stock_expected_products~
-- -------------------------------------------~
INSERT INTO `stock_expected_products` (`product_id`,`invoice_id`,`product_name`,`product_roll`,`product_color`,`product_measurement`,`product_quantity`,`product_price`,`product_total`) VALUES
('54','77','Бархат','0','3','1','600.0000','2.00','1200.00')~
INSERT INTO `stock_expected_products` (`product_id`,`invoice_id`,`product_name`,`product_roll`,`product_color`,`product_measurement`,`product_quantity`,`product_price`,`product_total`) VALUES
('55','77','Шелк','0','1','1','600.0000','7.00','4200.00')~
-- -------------------------------------------~
-- TABLE DATA stock_extra_costs~
-- -------------------------------------------~
INSERT INTO `stock_extra_costs` (`extra_id`,`extra_name`,`extra_price`) VALUES
('1','Нет доп. затрат','0.00')~
INSERT INTO `stock_extra_costs` (`extra_id`,`extra_name`,`extra_price`) VALUES
('2','Доп. затраты 1','25.00')~
INSERT INTO `stock_extra_costs` (`extra_id`,`extra_name`,`extra_price`) VALUES
('3','Доп. затраты 2','100.00')~
-- -------------------------------------------~
-- TABLE DATA stock_history~
-- -------------------------------------------~
INSERT INTO `stock_history` (`record_id`,`record_group`,`record_item_id`,`record_datetime`,`record_content`) VALUES
('7','product','20015','2014-06-19 20:49:10','Получено 600.0000. Рулонов - 0 Поставщик - Поставщик 22')~
INSERT INTO `stock_history` (`record_id`,`record_group`,`record_item_id`,`record_datetime`,`record_content`) VALUES
('8','product','20016','2014-06-19 20:49:10','Получено 600.0000. Рулонов - 0 Поставщик - Поставщик 22')~
INSERT INTO `stock_history` (`record_id`,`record_group`,`record_item_id`,`record_datetime`,`record_content`) VALUES
('9','product','20015','2014-06-19 20:55:36','Продано 260 (50 50 50 77 33). Рулонов - 5 Продавец - Неизвестный. Клиент - Клиент 1111')~
-- -------------------------------------------~
-- TABLE DATA stock_invoices_products~
-- -------------------------------------------~
INSERT INTO `stock_invoices_products` (`id`,`invoice_id`,`product_id`,`product_name`,`product_color`,`product_measurement`,`product_roll`,`product_quantity`,`product_quantity_details`,`product_price`,`product_total`,`return_status`) VALUES
('13','16','10014','Товар 0','1','1','5','150.0000','10 20 30 40 50','25.00','3750.00','1')~
INSERT INTO `stock_invoices_products` (`id`,`invoice_id`,`product_id`,`product_name`,`product_color`,`product_measurement`,`product_roll`,`product_quantity`,`product_quantity_details`,`product_price`,`product_total`,`return_status`) VALUES
('14','16','10015','Товар 1','1','1','5','90.0000','10 20 30 20 10','25.00','2250.00','1')~
INSERT INTO `stock_invoices_products` (`id`,`invoice_id`,`product_id`,`product_name`,`product_color`,`product_measurement`,`product_roll`,`product_quantity`,`product_quantity_details`,`product_price`,`product_total`,`return_status`) VALUES
('15','16','10016','Товар 2','1','1','5','110.0000','30 20 10 20 30','25.00','2750.00','1')~
INSERT INTO `stock_invoices_products` (`id`,`invoice_id`,`product_id`,`product_name`,`product_color`,`product_measurement`,`product_roll`,`product_quantity`,`product_quantity_details`,`product_price`,`product_total`,`return_status`) VALUES
('16','16','10017','Товар 3','1','1','5','150.0000','50 40 30 20 10','25.00','3750.00','1')~
INSERT INTO `stock_invoices_products` (`id`,`invoice_id`,`product_id`,`product_name`,`product_color`,`product_measurement`,`product_roll`,`product_quantity`,`product_quantity_details`,`product_price`,`product_total`,`return_status`) VALUES
('17','17','10014','Товар 0','1','1','4','140.0000','10 10 110 10','25.00','3500.00','1')~
INSERT INTO `stock_invoices_products` (`id`,`invoice_id`,`product_id`,`product_name`,`product_color`,`product_measurement`,`product_roll`,`product_quantity`,`product_quantity_details`,`product_price`,`product_total`,`return_status`) VALUES
('18','18','20015','Бархат','3','1','5','260.0000','50 50 50 77 33','2.00','520.00','1')~
-- -------------------------------------------~
-- TABLE DATA stock_measurement_units~
-- -------------------------------------------~
INSERT INTO `stock_measurement_units` (`unit_id`,`unit_name`,`unit_value`) VALUES
('1','Метр','1.00000000')~
INSERT INTO `stock_measurement_units` (`unit_id`,`unit_name`,`unit_value`) VALUES
('2','Ярд','0.92000000')~
-- -------------------------------------------~
-- TABLE DATA stock_products~
-- -------------------------------------------~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10014','Товар 0','-15','1','1','25.00','-775.8000','1','11')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10015','Товар 1','-5','1','1','25.00','-197.8000','1','4')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10016','Товар 2','-1','1','1','25.00','-97.8000','1','2')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10017','Товар 3','-5','1','1','25.00','-137.8000','1','2')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10018','Товар 4','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10019','Товар 5','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10020','Товар 6','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10021','Товар 7','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10022','Товар 8','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10023','Товар 9','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10024','Товар 10','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10025','Товар 11','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10026','Товар 12','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10027','Товар 13','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10028','Товар 14','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10029','Товар 15','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10030','Товар 16','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10031','Товар 17','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10032','Товар 18','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10033','Товар 19','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10034','Товар 20','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10035','Товар 21','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10036','Товар 22','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10037','Товар 23','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10038','Товар 24','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10039','Товар 25','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10040','Товар 26','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10041','Товар 27','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10042','Товар 28','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10043','Товар 29','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10044','Товар 30','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10045','Товар 31','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10046','Товар 32','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10047','Товар 33','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10048','Товар 34','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10049','Товар 35','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10050','Товар 36','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10051','Товар 37','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10052','Товар 38','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10053','Товар 39','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10054','Товар 40','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10055','Товар 41','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10056','Товар 42','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10057','Товар 43','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10058','Товар 44','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10059','Товар 45','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10060','Товар 46','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10061','Товар 47','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10062','Товар 48','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10063','Товар 49','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10064','Товар 50','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10065','Товар 51','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10066','Товар 52','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10067','Товар 53','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10068','Товар 54','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10069','Товар 55','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10070','Товар 56','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10071','Товар 57','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10072','Товар 58','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10073','Товар 59','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10074','Товар 60','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10075','Товар 61','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10076','Товар 62','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10077','Товар 63','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10078','Товар 64','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10079','Товар 65','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10080','Товар 66','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10081','Товар 67','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10082','Товар 68','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10083','Товар 69','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10084','Товар 70','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10085','Товар 71','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10086','Товар 72','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10087','Товар 73','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10088','Товар 74','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10089','Товар 75','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10090','Товар 76','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10091','Товар 77','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10092','Товар 78','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10093','Товар 79','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10094','Товар 80','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10095','Товар 81','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10096','Товар 82','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10097','Товар 83','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10098','Товар 84','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10099','Товар 85','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10100','Товар 86','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10101','Товар 87','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10102','Товар 88','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10103','Товар 89','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10104','Товар 90','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10105','Товар 91','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10106','Товар 92','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10107','Товар 93','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10108','Товар 94','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10109','Товар 95','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10110','Товар 96','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10111','Товар 97','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10112','Товар 98','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10113','Товар 99','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10114','Товар 100','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10115','Товар 101','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10116','Товар 102','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10117','Товар 103','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10118','Товар 104','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10119','Товар 105','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10120','Товар 106','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10121','Товар 107','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10122','Товар 108','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10123','Товар 109','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10124','Товар 110','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10125','Товар 111','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10126','Товар 112','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10127','Товар 113','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10128','Товар 114','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10129','Товар 115','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10130','Товар 116','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10131','Товар 117','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10132','Товар 118','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10133','Товар 119','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10134','Товар 120','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10135','Товар 121','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10136','Товар 122','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10137','Товар 123','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10138','Товар 124','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10139','Товар 125','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10140','Товар 126','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10141','Товар 127','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10142','Товар 128','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10143','Товар 129','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10144','Товар 130','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10145','Товар 131','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10146','Товар 132','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10147','Товар 133','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10148','Товар 134','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10149','Товар 135','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10150','Товар 136','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10151','Товар 137','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10152','Товар 138','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10153','Товар 139','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10154','Товар 140','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10155','Товар 141','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10156','Товар 142','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10157','Товар 143','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10158','Товар 144','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10159','Товар 145','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10160','Товар 146','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10161','Товар 147','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10162','Товар 148','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10163','Товар 149','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10164','Товар 150','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10165','Товар 151','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10166','Товар 152','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10167','Товар 153','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10168','Товар 154','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10169','Товар 155','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10170','Товар 156','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10171','Товар 157','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10172','Товар 158','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10173','Товар 159','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10174','Товар 160','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10175','Товар 161','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10176','Товар 162','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10177','Товар 163','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10178','Товар 164','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10179','Товар 165','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10180','Товар 166','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10181','Товар 167','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10182','Товар 168','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10183','Товар 169','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10184','Товар 170','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10185','Товар 171','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10186','Товар 172','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10187','Товар 173','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10188','Товар 174','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10189','Товар 175','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10190','Товар 176','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10191','Товар 177','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10192','Товар 178','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10193','Товар 179','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10194','Товар 180','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10195','Товар 181','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10196','Товар 182','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10197','Товар 183','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10198','Товар 184','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10199','Товар 185','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10200','Товар 186','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10201','Товар 187','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10202','Товар 188','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10203','Товар 189','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10204','Товар 190','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10205','Товар 191','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10206','Товар 192','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10207','Товар 193','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10208','Товар 194','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10209','Товар 195','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10210','Товар 196','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10211','Товар 197','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10212','Товар 198','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10213','Товар 199','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10214','Товар 200','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10215','Товар 201','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10216','Товар 202','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10217','Товар 203','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10218','Товар 204','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10219','Товар 205','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10220','Товар 206','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10221','Товар 207','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10222','Товар 208','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10223','Товар 209','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10224','Товар 210','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10225','Товар 211','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10226','Товар 212','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10227','Товар 213','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10228','Товар 214','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10229','Товар 215','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10230','Товар 216','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10231','Товар 217','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10232','Товар 218','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10233','Товар 219','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10234','Товар 220','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10235','Товар 221','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10236','Товар 222','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10237','Товар 223','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10238','Товар 224','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10239','Товар 225','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10240','Товар 226','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10241','Товар 227','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10242','Товар 228','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10243','Товар 229','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10244','Товар 230','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10245','Товар 231','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10246','Товар 232','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10247','Товар 233','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10248','Товар 234','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10249','Товар 235','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10250','Товар 236','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10251','Товар 237','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10252','Товар 238','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10253','Товар 239','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10254','Товар 240','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10255','Товар 241','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10256','Товар 242','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10257','Товар 243','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10258','Товар 244','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10259','Товар 245','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10260','Товар 246','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10261','Товар 247','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10262','Товар 248','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10263','Товар 249','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10264','Товар 250','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10265','Товар 251','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10266','Товар 252','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10267','Товар 253','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10268','Товар 254','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10269','Товар 255','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10270','Товар 256','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10271','Товар 257','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10272','Товар 258','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10273','Товар 259','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10274','Товар 260','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10275','Товар 261','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10276','Товар 262','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10277','Товар 263','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10278','Товар 264','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10279','Товар 265','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10280','Товар 266','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10281','Товар 267','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10282','Товар 268','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10283','Товар 269','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10284','Товар 270','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10285','Товар 271','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10286','Товар 272','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10287','Товар 273','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10288','Товар 274','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10289','Товар 275','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10290','Товар 276','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10291','Товар 277','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10292','Товар 278','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10293','Товар 279','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10294','Товар 280','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10295','Товар 281','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10296','Товар 282','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10297','Товар 283','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10298','Товар 284','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10299','Товар 285','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10300','Товар 286','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10301','Товар 287','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10302','Товар 288','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10303','Товар 289','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10304','Товар 290','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10305','Товар 291','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10306','Товар 292','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10307','Товар 293','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10308','Товар 294','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10309','Товар 295','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10310','Товар 296','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10311','Товар 297','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10312','Товар 298','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10313','Товар 299','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10314','Товар 300','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10315','Товар 301','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10316','Товар 302','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10317','Товар 303','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10318','Товар 304','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10319','Товар 305','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10320','Товар 306','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10321','Товар 307','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10322','Товар 308','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10323','Товар 309','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10324','Товар 310','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10325','Товар 311','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10326','Товар 312','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10327','Товар 313','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10328','Товар 314','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10329','Товар 315','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10330','Товар 316','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10331','Товар 317','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10332','Товар 318','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10333','Товар 319','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10334','Товар 320','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10335','Товар 321','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10336','Товар 322','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10337','Товар 323','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10338','Товар 324','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10339','Товар 325','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10340','Товар 326','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10341','Товар 327','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10342','Товар 328','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10343','Товар 329','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10344','Товар 330','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10345','Товар 331','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10346','Товар 332','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10347','Товар 333','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10348','Товар 334','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10349','Товар 335','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10350','Товар 336','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10351','Товар 337','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10352','Товар 338','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10353','Товар 339','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10354','Товар 340','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10355','Товар 341','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10356','Товар 342','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10357','Товар 343','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10358','Товар 344','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10359','Товар 345','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10360','Товар 346','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10361','Товар 347','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10362','Товар 348','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10363','Товар 349','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10364','Товар 350','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10365','Товар 351','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10366','Товар 352','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10367','Товар 353','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10368','Товар 354','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10369','Товар 355','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10370','Товар 356','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10371','Товар 357','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10372','Товар 358','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10373','Товар 359','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10374','Товар 360','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10375','Товар 361','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10376','Товар 362','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10377','Товар 363','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10378','Товар 364','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10379','Товар 365','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10380','Товар 366','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10381','Товар 367','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10382','Товар 368','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10383','Товар 369','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10384','Товар 370','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10385','Товар 371','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10386','Товар 372','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10387','Товар 373','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10388','Товар 374','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10389','Товар 375','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10390','Товар 376','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10391','Товар 377','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10392','Товар 378','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10393','Товар 379','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10394','Товар 380','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10395','Товар 381','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10396','Товар 382','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10397','Товар 383','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10398','Товар 384','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10399','Товар 385','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10400','Товар 386','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10401','Товар 387','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10402','Товар 388','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10403','Товар 389','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10404','Товар 390','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10405','Товар 391','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10406','Товар 392','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10407','Товар 393','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10408','Товар 394','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10409','Товар 395','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10410','Товар 396','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10411','Товар 397','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10412','Товар 398','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10413','Товар 399','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10414','Товар 400','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10415','Товар 401','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10416','Товар 402','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10417','Товар 403','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10418','Товар 404','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10419','Товар 405','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10420','Товар 406','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10421','Товар 407','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10422','Товар 408','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10423','Товар 409','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10424','Товар 410','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10425','Товар 411','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10426','Товар 412','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10427','Товар 413','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10428','Товар 414','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10429','Товар 415','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10430','Товар 416','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10431','Товар 417','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10432','Товар 418','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10433','Товар 419','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10434','Товар 420','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10435','Товар 421','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10436','Товар 422','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10437','Товар 423','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10438','Товар 424','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10439','Товар 425','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10440','Товар 426','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10441','Товар 427','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10442','Товар 428','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10443','Товар 429','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10444','Товар 430','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10445','Товар 431','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10446','Товар 432','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10447','Товар 433','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10448','Товар 434','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10449','Товар 435','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10450','Товар 436','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10451','Товар 437','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10452','Товар 438','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10453','Товар 439','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10454','Товар 440','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10455','Товар 441','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10456','Товар 442','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10457','Товар 443','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10458','Товар 444','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10459','Товар 445','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10460','Товар 446','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10461','Товар 447','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10462','Товар 448','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10463','Товар 449','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10464','Товар 450','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10465','Товар 451','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10466','Товар 452','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10467','Товар 453','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10468','Товар 454','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10469','Товар 455','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10470','Товар 456','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10471','Товар 457','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10472','Товар 458','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10473','Товар 459','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10474','Товар 460','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10475','Товар 461','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10476','Товар 462','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10477','Товар 463','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10478','Товар 464','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10479','Товар 465','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10480','Товар 466','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10481','Товар 467','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10482','Товар 468','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10483','Товар 469','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10484','Товар 470','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10485','Товар 471','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10486','Товар 472','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10487','Товар 473','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10488','Товар 474','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10489','Товар 475','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10490','Товар 476','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10491','Товар 477','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10492','Товар 478','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10493','Товар 479','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10494','Товар 480','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10495','Товар 481','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10496','Товар 482','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10497','Товар 483','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10498','Товар 484','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10499','Товар 485','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10500','Товар 486','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10501','Товар 487','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10502','Товар 488','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10503','Товар 489','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10504','Товар 490','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10505','Товар 491','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10506','Товар 492','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10507','Товар 493','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10508','Товар 494','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10509','Товар 495','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10510','Товар 496','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10511','Товар 497','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10512','Товар 498','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10513','Товар 499','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10514','Товар 500','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10515','Товар 501','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10516','Товар 502','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10517','Товар 503','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10518','Товар 504','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10519','Товар 505','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10520','Товар 506','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10521','Товар 507','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10522','Товар 508','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10523','Товар 509','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10524','Товар 510','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10525','Товар 511','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10526','Товар 512','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10527','Товар 513','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10528','Товар 514','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10529','Товар 515','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10530','Товар 516','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10531','Товар 517','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10532','Товар 518','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10533','Товар 519','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10534','Товар 520','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10535','Товар 521','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10536','Товар 522','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10537','Товар 523','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10538','Товар 524','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10539','Товар 525','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10540','Товар 526','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10541','Товар 527','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10542','Товар 528','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10543','Товар 529','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10544','Товар 530','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10545','Товар 531','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10546','Товар 532','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10547','Товар 533','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10548','Товар 534','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10549','Товар 535','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10550','Товар 536','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10551','Товар 537','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10552','Товар 538','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10553','Товар 539','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10554','Товар 540','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10555','Товар 541','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10556','Товар 542','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10557','Товар 543','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10558','Товар 544','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10559','Товар 545','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10560','Товар 546','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10561','Товар 547','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10562','Товар 548','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10563','Товар 549','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10564','Товар 550','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10565','Товар 551','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10566','Товар 552','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10567','Товар 553','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10568','Товар 554','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10569','Товар 555','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10570','Товар 556','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10571','Товар 557','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10572','Товар 558','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10573','Товар 559','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10574','Товар 560','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10575','Товар 561','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10576','Товар 562','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10577','Товар 563','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10578','Товар 564','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10579','Товар 565','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10580','Товар 566','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10581','Товар 567','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10582','Товар 568','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10583','Товар 569','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10584','Товар 570','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10585','Товар 571','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10586','Товар 572','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10587','Товар 573','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10588','Товар 574','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10589','Товар 575','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10590','Товар 576','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10591','Товар 577','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10592','Товар 578','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10593','Товар 579','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10594','Товар 580','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10595','Товар 581','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10596','Товар 582','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10597','Товар 583','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10598','Товар 584','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10599','Товар 585','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10600','Товар 586','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10601','Товар 587','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10602','Товар 588','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10603','Товар 589','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10604','Товар 590','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10605','Товар 591','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10606','Товар 592','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10607','Товар 593','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10608','Товар 594','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10609','Товар 595','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10610','Товар 596','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10611','Товар 597','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10612','Товар 598','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10613','Товар 599','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10614','Товар 600','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10615','Товар 601','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10616','Товар 602','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10617','Товар 603','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10618','Товар 604','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10619','Товар 605','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10620','Товар 606','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10621','Товар 607','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10622','Товар 608','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10623','Товар 609','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10624','Товар 610','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10625','Товар 611','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10626','Товар 612','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10627','Товар 613','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10628','Товар 614','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10629','Товар 615','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10630','Товар 616','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10631','Товар 617','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10632','Товар 618','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10633','Товар 619','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10634','Товар 620','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10635','Товар 621','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10636','Товар 622','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10637','Товар 623','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10638','Товар 624','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10639','Товар 625','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10640','Товар 626','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10641','Товар 627','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10642','Товар 628','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10643','Товар 629','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10644','Товар 630','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10645','Товар 631','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10646','Товар 632','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10647','Товар 633','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10648','Товар 634','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10649','Товар 635','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10650','Товар 636','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10651','Товар 637','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10652','Товар 638','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10653','Товар 639','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10654','Товар 640','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10655','Товар 641','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10656','Товар 642','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10657','Товар 643','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10658','Товар 644','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10659','Товар 645','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10660','Товар 646','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10661','Товар 647','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10662','Товар 648','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10663','Товар 649','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10664','Товар 650','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10665','Товар 651','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10666','Товар 652','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10667','Товар 653','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10668','Товар 654','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10669','Товар 655','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10670','Товар 656','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10671','Товар 657','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10672','Товар 658','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10673','Товар 659','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10674','Товар 660','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10675','Товар 661','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10676','Товар 662','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10677','Товар 663','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10678','Товар 664','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10679','Товар 665','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10680','Товар 666','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10681','Товар 667','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10682','Товар 668','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10683','Товар 669','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10684','Товар 670','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10685','Товар 671','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10686','Товар 672','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10687','Товар 673','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10688','Товар 674','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10689','Товар 675','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10690','Товар 676','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10691','Товар 677','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10692','Товар 678','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10693','Товар 679','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10694','Товар 680','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10695','Товар 681','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10696','Товар 682','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10697','Товар 683','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10698','Товар 684','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10699','Товар 685','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10700','Товар 686','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10701','Товар 687','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10702','Товар 688','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10703','Товар 689','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10704','Товар 690','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10705','Товар 691','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10706','Товар 692','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10707','Товар 693','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10708','Товар 694','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10709','Товар 695','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10710','Товар 696','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10711','Товар 697','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10712','Товар 698','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10713','Товар 699','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10714','Товар 700','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10715','Товар 701','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10716','Товар 702','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10717','Товар 703','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10718','Товар 704','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10719','Товар 705','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10720','Товар 706','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10721','Товар 707','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10722','Товар 708','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10723','Товар 709','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10724','Товар 710','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10725','Товар 711','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10726','Товар 712','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10727','Товар 713','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10728','Товар 714','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10729','Товар 715','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10730','Товар 716','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10731','Товар 717','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10732','Товар 718','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10733','Товар 719','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10734','Товар 720','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10735','Товар 721','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10736','Товар 722','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10737','Товар 723','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10738','Товар 724','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10739','Товар 725','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10740','Товар 726','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10741','Товар 727','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10742','Товар 728','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10743','Товар 729','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10744','Товар 730','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10745','Товар 731','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10746','Товар 732','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10747','Товар 733','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10748','Товар 734','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10749','Товар 735','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10750','Товар 736','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10751','Товар 737','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10752','Товар 738','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10753','Товар 739','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10754','Товар 740','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10755','Товар 741','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10756','Товар 742','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10757','Товар 743','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10758','Товар 744','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10759','Товар 745','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10760','Товар 746','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10761','Товар 747','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10762','Товар 748','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10763','Товар 749','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10764','Товар 750','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10765','Товар 751','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10766','Товар 752','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10767','Товар 753','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10768','Товар 754','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10769','Товар 755','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10770','Товар 756','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10771','Товар 757','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10772','Товар 758','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10773','Товар 759','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10774','Товар 760','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10775','Товар 761','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10776','Товар 762','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10777','Товар 763','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10778','Товар 764','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10779','Товар 765','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10780','Товар 766','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10781','Товар 767','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10782','Товар 768','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10783','Товар 769','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10784','Товар 770','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10785','Товар 771','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10786','Товар 772','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10787','Товар 773','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10788','Товар 774','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10789','Товар 775','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10790','Товар 776','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10791','Товар 777','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10792','Товар 778','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10793','Товар 779','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10794','Товар 780','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10795','Товар 781','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10796','Товар 782','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10797','Товар 783','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10798','Товар 784','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10799','Товар 785','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10800','Товар 786','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10801','Товар 787','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10802','Товар 788','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10803','Товар 789','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10804','Товар 790','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10805','Товар 791','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10806','Товар 792','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10807','Товар 793','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10808','Товар 794','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10809','Товар 795','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10810','Товар 796','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10811','Товар 797','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10812','Товар 798','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10813','Товар 799','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10814','Товар 800','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10815','Товар 801','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10816','Товар 802','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10817','Товар 803','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10818','Товар 804','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10819','Товар 805','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10820','Товар 806','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10821','Товар 807','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10822','Товар 808','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10823','Товар 809','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10824','Товар 810','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10825','Товар 811','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10826','Товар 812','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10827','Товар 813','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10828','Товар 814','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10829','Товар 815','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10830','Товар 816','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10831','Товар 817','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10832','Товар 818','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10833','Товар 819','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10834','Товар 820','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10835','Товар 821','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10836','Товар 822','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10837','Товар 823','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10838','Товар 824','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10839','Товар 825','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10840','Товар 826','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10841','Товар 827','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10842','Товар 828','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10843','Товар 829','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10844','Товар 830','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10845','Товар 831','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10846','Товар 832','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10847','Товар 833','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10848','Товар 834','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10849','Товар 835','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10850','Товар 836','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10851','Товар 837','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10852','Товар 838','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10853','Товар 839','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10854','Товар 840','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10855','Товар 841','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10856','Товар 842','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10857','Товар 843','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10858','Товар 844','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10859','Товар 845','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10860','Товар 846','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10861','Товар 847','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10862','Товар 848','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10863','Товар 849','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10864','Товар 850','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10865','Товар 851','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10866','Товар 852','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10867','Товар 853','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10868','Товар 854','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10869','Товар 855','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10870','Товар 856','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10871','Товар 857','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10872','Товар 858','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10873','Товар 859','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10874','Товар 860','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10875','Товар 861','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10876','Товар 862','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10877','Товар 863','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10878','Товар 864','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10879','Товар 865','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10880','Товар 866','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10881','Товар 867','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10882','Товар 868','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10883','Товар 869','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10884','Товар 870','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10885','Товар 871','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10886','Товар 872','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10887','Товар 873','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10888','Товар 874','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10889','Товар 875','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10890','Товар 876','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10891','Товар 877','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10892','Товар 878','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10893','Товар 879','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10894','Товар 880','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10895','Товар 881','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10896','Товар 882','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10897','Товар 883','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10898','Товар 884','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10899','Товар 885','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10900','Товар 886','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10901','Товар 887','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10902','Товар 888','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10903','Товар 889','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10904','Товар 890','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10905','Товар 891','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10906','Товар 892','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10907','Товар 893','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10908','Товар 894','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10909','Товар 895','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10910','Товар 896','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10911','Товар 897','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10912','Товар 898','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10913','Товар 899','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10914','Товар 900','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10915','Товар 901','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10916','Товар 902','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10917','Товар 903','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10918','Товар 904','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10919','Товар 905','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10920','Товар 906','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10921','Товар 907','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10922','Товар 908','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10923','Товар 909','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10924','Товар 910','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10925','Товар 911','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10926','Товар 912','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10927','Товар 913','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10928','Товар 914','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10929','Товар 915','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10930','Товар 916','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10931','Товар 917','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10932','Товар 918','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10933','Товар 919','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10934','Товар 920','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10935','Товар 921','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10936','Товар 922','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10937','Товар 923','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10938','Товар 924','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10939','Товар 925','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10940','Товар 926','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10941','Товар 927','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10942','Товар 928','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10943','Товар 929','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10944','Товар 930','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10945','Товар 931','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10946','Товар 932','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10947','Товар 933','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10948','Товар 934','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10949','Товар 935','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10950','Товар 936','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10951','Товар 937','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10952','Товар 938','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10953','Товар 939','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10954','Товар 940','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10955','Товар 941','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10956','Товар 942','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10957','Товар 943','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10958','Товар 944','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10959','Товар 945','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10960','Товар 946','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10961','Товар 947','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10962','Товар 948','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10963','Товар 949','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10964','Товар 950','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10965','Товар 951','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10966','Товар 952','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10967','Товар 953','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10968','Товар 954','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10969','Товар 955','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10970','Товар 956','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10971','Товар 957','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10972','Товар 958','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10973','Товар 959','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10974','Товар 960','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10975','Товар 961','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10976','Товар 962','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10977','Товар 963','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10978','Товар 964','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10979','Товар 965','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10980','Товар 966','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10981','Товар 967','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10982','Товар 968','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10983','Товар 969','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10984','Товар 970','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10985','Товар 971','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10986','Товар 972','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10987','Товар 973','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10988','Товар 974','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10989','Товар 975','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10990','Товар 976','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10991','Товар 977','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10992','Товар 978','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10993','Товар 979','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10994','Товар 980','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10995','Товар 981','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10996','Товар 982','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10997','Товар 983','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10998','Товар 984','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('10999','Товар 985','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11000','Товар 986','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11001','Товар 987','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11002','Товар 988','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11003','Товар 989','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11004','Товар 990','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11005','Товар 991','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11006','Товар 992','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11007','Товар 993','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11008','Товар 994','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11009','Товар 995','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11010','Товар 996','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11011','Товар 997','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11012','Товар 998','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11013','Товар 999','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11014','Товар 1000','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11015','Товар 1001','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11016','Товар 1002','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11017','Товар 1003','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11018','Товар 1004','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11019','Товар 1005','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11020','Товар 1006','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11021','Товар 1007','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11022','Товар 1008','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11023','Товар 1009','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11024','Товар 1010','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11025','Товар 1011','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11026','Товар 1012','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11027','Товар 1013','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11028','Товар 1014','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11029','Товар 1015','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11030','Товар 1016','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11031','Товар 1017','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11032','Товар 1018','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11033','Товар 1019','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11034','Товар 1020','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11035','Товар 1021','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11036','Товар 1022','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11037','Товар 1023','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11038','Товар 1024','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11039','Товар 1025','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11040','Товар 1026','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11041','Товар 1027','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11042','Товар 1028','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11043','Товар 1029','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11044','Товар 1030','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11045','Товар 1031','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11046','Товар 1032','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11047','Товар 1033','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11048','Товар 1034','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11049','Товар 1035','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11050','Товар 1036','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11051','Товар 1037','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11052','Товар 1038','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11053','Товар 1039','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11054','Товар 1040','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11055','Товар 1041','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11056','Товар 1042','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11057','Товар 1043','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11058','Товар 1044','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11059','Товар 1045','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11060','Товар 1046','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11061','Товар 1047','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11062','Товар 1048','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11063','Товар 1049','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11064','Товар 1050','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11065','Товар 1051','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11066','Товар 1052','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11067','Товар 1053','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11068','Товар 1054','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11069','Товар 1055','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11070','Товар 1056','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11071','Товар 1057','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11072','Товар 1058','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11073','Товар 1059','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11074','Товар 1060','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11075','Товар 1061','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11076','Товар 1062','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11077','Товар 1063','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11078','Товар 1064','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11079','Товар 1065','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11080','Товар 1066','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11081','Товар 1067','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11082','Товар 1068','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11083','Товар 1069','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11084','Товар 1070','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11085','Товар 1071','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11086','Товар 1072','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11087','Товар 1073','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11088','Товар 1074','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11089','Товар 1075','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11090','Товар 1076','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11091','Товар 1077','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11092','Товар 1078','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11093','Товар 1079','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11094','Товар 1080','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11095','Товар 1081','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11096','Товар 1082','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11097','Товар 1083','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11098','Товар 1084','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11099','Товар 1085','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11100','Товар 1086','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11101','Товар 1087','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11102','Товар 1088','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11103','Товар 1089','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11104','Товар 1090','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11105','Товар 1091','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11106','Товар 1092','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11107','Товар 1093','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11108','Товар 1094','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11109','Товар 1095','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11110','Товар 1096','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11111','Товар 1097','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11112','Товар 1098','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11113','Товар 1099','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11114','Товар 1100','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11115','Товар 1101','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11116','Товар 1102','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11117','Товар 1103','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11118','Товар 1104','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11119','Товар 1105','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11120','Товар 1106','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11121','Товар 1107','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11122','Товар 1108','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11123','Товар 1109','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11124','Товар 1110','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11125','Товар 1111','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11126','Товар 1112','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11127','Товар 1113','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11128','Товар 1114','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11129','Товар 1115','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11130','Товар 1116','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11131','Товар 1117','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11132','Товар 1118','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11133','Товар 1119','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11134','Товар 1120','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11135','Товар 1121','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11136','Товар 1122','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11137','Товар 1123','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11138','Товар 1124','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11139','Товар 1125','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11140','Товар 1126','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11141','Товар 1127','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11142','Товар 1128','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11143','Товар 1129','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11144','Товар 1130','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11145','Товар 1131','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11146','Товар 1132','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11147','Товар 1133','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11148','Товар 1134','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11149','Товар 1135','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11150','Товар 1136','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11151','Товар 1137','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11152','Товар 1138','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11153','Товар 1139','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11154','Товар 1140','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11155','Товар 1141','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11156','Товар 1142','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11157','Товар 1143','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11158','Товар 1144','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11159','Товар 1145','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11160','Товар 1146','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11161','Товар 1147','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11162','Товар 1148','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11163','Товар 1149','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11164','Товар 1150','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11165','Товар 1151','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11166','Товар 1152','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11167','Товар 1153','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11168','Товар 1154','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11169','Товар 1155','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11170','Товар 1156','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11171','Товар 1157','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11172','Товар 1158','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11173','Товар 1159','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11174','Товар 1160','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11175','Товар 1161','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11176','Товар 1162','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11177','Товар 1163','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11178','Товар 1164','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11179','Товар 1165','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11180','Товар 1166','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11181','Товар 1167','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11182','Товар 1168','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11183','Товар 1169','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11184','Товар 1170','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11185','Товар 1171','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11186','Товар 1172','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11187','Товар 1173','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11188','Товар 1174','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11189','Товар 1175','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11190','Товар 1176','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11191','Товар 1177','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11192','Товар 1178','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11193','Товар 1179','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11194','Товар 1180','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11195','Товар 1181','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11196','Товар 1182','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11197','Товар 1183','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11198','Товар 1184','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11199','Товар 1185','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11200','Товар 1186','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11201','Товар 1187','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11202','Товар 1188','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11203','Товар 1189','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11204','Товар 1190','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11205','Товар 1191','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11206','Товар 1192','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11207','Товар 1193','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11208','Товар 1194','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11209','Товар 1195','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11210','Товар 1196','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11211','Товар 1197','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11212','Товар 1198','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11213','Товар 1199','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11214','Товар 1200','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11215','Товар 1201','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11216','Товар 1202','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11217','Товар 1203','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11218','Товар 1204','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11219','Товар 1205','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11220','Товар 1206','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11221','Товар 1207','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11222','Товар 1208','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11223','Товар 1209','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11224','Товар 1210','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11225','Товар 1211','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11226','Товар 1212','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11227','Товар 1213','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11228','Товар 1214','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11229','Товар 1215','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11230','Товар 1216','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11231','Товар 1217','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11232','Товар 1218','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11233','Товар 1219','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11234','Товар 1220','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11235','Товар 1221','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11236','Товар 1222','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11237','Товар 1223','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11238','Товар 1224','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11239','Товар 1225','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11240','Товар 1226','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11241','Товар 1227','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11242','Товар 1228','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11243','Товар 1229','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11244','Товар 1230','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11245','Товар 1231','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11246','Товар 1232','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11247','Товар 1233','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11248','Товар 1234','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11249','Товар 1235','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11250','Товар 1236','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11251','Товар 1237','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11252','Товар 1238','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11253','Товар 1239','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11254','Товар 1240','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11255','Товар 1241','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11256','Товар 1242','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11257','Товар 1243','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11258','Товар 1244','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11259','Товар 1245','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11260','Товар 1246','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11261','Товар 1247','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11262','Товар 1248','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11263','Товар 1249','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11264','Товар 1250','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11265','Товар 1251','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11266','Товар 1252','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11267','Товар 1253','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11268','Товар 1254','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11269','Товар 1255','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11270','Товар 1256','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11271','Товар 1257','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11272','Товар 1258','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11273','Товар 1259','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11274','Товар 1260','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11275','Товар 1261','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11276','Товар 1262','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11277','Товар 1263','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11278','Товар 1264','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11279','Товар 1265','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11280','Товар 1266','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11281','Товар 1267','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11282','Товар 1268','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11283','Товар 1269','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11284','Товар 1270','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11285','Товар 1271','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11286','Товар 1272','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11287','Товар 1273','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11288','Товар 1274','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11289','Товар 1275','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11290','Товар 1276','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11291','Товар 1277','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11292','Товар 1278','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11293','Товар 1279','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11294','Товар 1280','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11295','Товар 1281','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11296','Товар 1282','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11297','Товар 1283','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11298','Товар 1284','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11299','Товар 1285','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11300','Товар 1286','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11301','Товар 1287','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11302','Товар 1288','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11303','Товар 1289','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11304','Товар 1290','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11305','Товар 1291','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11306','Товар 1292','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11307','Товар 1293','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11308','Товар 1294','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11309','Товар 1295','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11310','Товар 1296','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11311','Товар 1297','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11312','Товар 1298','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11313','Товар 1299','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11314','Товар 1300','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11315','Товар 1301','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11316','Товар 1302','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11317','Товар 1303','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11318','Товар 1304','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11319','Товар 1305','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11320','Товар 1306','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11321','Товар 1307','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11322','Товар 1308','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11323','Товар 1309','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11324','Товар 1310','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11325','Товар 1311','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11326','Товар 1312','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11327','Товар 1313','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11328','Товар 1314','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11329','Товар 1315','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11330','Товар 1316','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11331','Товар 1317','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11332','Товар 1318','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11333','Товар 1319','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11334','Товар 1320','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11335','Товар 1321','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11336','Товар 1322','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11337','Товар 1323','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11338','Товар 1324','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11339','Товар 1325','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11340','Товар 1326','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11341','Товар 1327','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11342','Товар 1328','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11343','Товар 1329','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11344','Товар 1330','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11345','Товар 1331','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11346','Товар 1332','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11347','Товар 1333','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11348','Товар 1334','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11349','Товар 1335','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11350','Товар 1336','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11351','Товар 1337','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11352','Товар 1338','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11353','Товар 1339','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11354','Товар 1340','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11355','Товар 1341','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11356','Товар 1342','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11357','Товар 1343','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11358','Товар 1344','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11359','Товар 1345','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11360','Товар 1346','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11361','Товар 1347','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11362','Товар 1348','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11363','Товар 1349','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11364','Товар 1350','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11365','Товар 1351','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11366','Товар 1352','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11367','Товар 1353','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11368','Товар 1354','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11369','Товар 1355','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11370','Товар 1356','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11371','Товар 1357','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11372','Товар 1358','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11373','Товар 1359','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11374','Товар 1360','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11375','Товар 1361','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11376','Товар 1362','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11377','Товар 1363','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11378','Товар 1364','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11379','Товар 1365','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11380','Товар 1366','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11381','Товар 1367','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11382','Товар 1368','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11383','Товар 1369','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11384','Товар 1370','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11385','Товар 1371','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11386','Товар 1372','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11387','Товар 1373','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11388','Товар 1374','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11389','Товар 1375','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11390','Товар 1376','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11391','Товар 1377','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11392','Товар 1378','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11393','Товар 1379','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11394','Товар 1380','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11395','Товар 1381','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11396','Товар 1382','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11397','Товар 1383','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11398','Товар 1384','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11399','Товар 1385','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11400','Товар 1386','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11401','Товар 1387','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11402','Товар 1388','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11403','Товар 1389','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11404','Товар 1390','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11405','Товар 1391','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11406','Товар 1392','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11407','Товар 1393','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11408','Товар 1394','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11409','Товар 1395','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11410','Товар 1396','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11411','Товар 1397','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11412','Товар 1398','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11413','Товар 1399','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11414','Товар 1400','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11415','Товар 1401','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11416','Товар 1402','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11417','Товар 1403','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11418','Товар 1404','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11419','Товар 1405','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11420','Товар 1406','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11421','Товар 1407','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11422','Товар 1408','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11423','Товар 1409','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11424','Товар 1410','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11425','Товар 1411','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11426','Товар 1412','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11427','Товар 1413','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11428','Товар 1414','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11429','Товар 1415','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11430','Товар 1416','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11431','Товар 1417','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11432','Товар 1418','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11433','Товар 1419','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11434','Товар 1420','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11435','Товар 1421','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11436','Товар 1422','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11437','Товар 1423','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11438','Товар 1424','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11439','Товар 1425','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11440','Товар 1426','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11441','Товар 1427','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11442','Товар 1428','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11443','Товар 1429','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11444','Товар 1430','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11445','Товар 1431','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11446','Товар 1432','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11447','Товар 1433','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11448','Товар 1434','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11449','Товар 1435','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11450','Товар 1436','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11451','Товар 1437','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11452','Товар 1438','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11453','Товар 1439','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11454','Товар 1440','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11455','Товар 1441','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11456','Товар 1442','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11457','Товар 1443','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11458','Товар 1444','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11459','Товар 1445','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11460','Товар 1446','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11461','Товар 1447','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11462','Товар 1448','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11463','Товар 1449','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11464','Товар 1450','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11465','Товар 1451','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11466','Товар 1452','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11467','Товар 1453','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11468','Товар 1454','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11469','Товар 1455','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11470','Товар 1456','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11471','Товар 1457','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11472','Товар 1458','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11473','Товар 1459','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11474','Товар 1460','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11475','Товар 1461','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11476','Товар 1462','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11477','Товар 1463','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11478','Товар 1464','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11479','Товар 1465','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11480','Товар 1466','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11481','Товар 1467','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11482','Товар 1468','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11483','Товар 1469','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11484','Товар 1470','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11485','Товар 1471','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11486','Товар 1472','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11487','Товар 1473','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11488','Товар 1474','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11489','Товар 1475','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11490','Товар 1476','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11491','Товар 1477','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11492','Товар 1478','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11493','Товар 1479','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11494','Товар 1480','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11495','Товар 1481','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11496','Товар 1482','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11497','Товар 1483','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11498','Товар 1484','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11499','Товар 1485','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11500','Товар 1486','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11501','Товар 1487','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11502','Товар 1488','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11503','Товар 1489','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11504','Товар 1490','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11505','Товар 1491','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11506','Товар 1492','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11507','Товар 1493','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11508','Товар 1494','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11509','Товар 1495','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11510','Товар 1496','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11511','Товар 1497','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11512','Товар 1498','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11513','Товар 1499','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11514','Товар 1500','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11515','Товар 1501','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11516','Товар 1502','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11517','Товар 1503','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11518','Товар 1504','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11519','Товар 1505','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11520','Товар 1506','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11521','Товар 1507','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11522','Товар 1508','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11523','Товар 1509','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11524','Товар 1510','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11525','Товар 1511','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11526','Товар 1512','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11527','Товар 1513','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11528','Товар 1514','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11529','Товар 1515','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11530','Товар 1516','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11531','Товар 1517','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11532','Товар 1518','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11533','Товар 1519','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11534','Товар 1520','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11535','Товар 1521','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11536','Товар 1522','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11537','Товар 1523','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11538','Товар 1524','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11539','Товар 1525','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11540','Товар 1526','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11541','Товар 1527','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11542','Товар 1528','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11543','Товар 1529','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11544','Товар 1530','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11545','Товар 1531','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11546','Товар 1532','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11547','Товар 1533','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11548','Товар 1534','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11549','Товар 1535','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11550','Товар 1536','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11551','Товар 1537','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11552','Товар 1538','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11553','Товар 1539','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11554','Товар 1540','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11555','Товар 1541','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11556','Товар 1542','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11557','Товар 1543','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11558','Товар 1544','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11559','Товар 1545','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11560','Товар 1546','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11561','Товар 1547','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11562','Товар 1548','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11563','Товар 1549','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11564','Товар 1550','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11565','Товар 1551','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11566','Товар 1552','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11567','Товар 1553','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11568','Товар 1554','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11569','Товар 1555','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11570','Товар 1556','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11571','Товар 1557','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11572','Товар 1558','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11573','Товар 1559','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11574','Товар 1560','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11575','Товар 1561','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11576','Товар 1562','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11577','Товар 1563','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11578','Товар 1564','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11579','Товар 1565','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11580','Товар 1566','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11581','Товар 1567','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11582','Товар 1568','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11583','Товар 1569','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11584','Товар 1570','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11585','Товар 1571','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11586','Товар 1572','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11587','Товар 1573','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11588','Товар 1574','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11589','Товар 1575','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11590','Товар 1576','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11591','Товар 1577','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11592','Товар 1578','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11593','Товар 1579','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11594','Товар 1580','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11595','Товар 1581','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11596','Товар 1582','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11597','Товар 1583','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11598','Товар 1584','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11599','Товар 1585','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11600','Товар 1586','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11601','Товар 1587','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11602','Товар 1588','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11603','Товар 1589','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11604','Товар 1590','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11605','Товар 1591','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11606','Товар 1592','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11607','Товар 1593','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11608','Товар 1594','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11609','Товар 1595','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11610','Товар 1596','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11611','Товар 1597','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11612','Товар 1598','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11613','Товар 1599','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11614','Товар 1600','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11615','Товар 1601','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11616','Товар 1602','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11617','Товар 1603','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11618','Товар 1604','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11619','Товар 1605','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11620','Товар 1606','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11621','Товар 1607','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11622','Товар 1608','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11623','Товар 1609','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11624','Товар 1610','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11625','Товар 1611','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11626','Товар 1612','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11627','Товар 1613','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11628','Товар 1614','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11629','Товар 1615','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11630','Товар 1616','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11631','Товар 1617','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11632','Товар 1618','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11633','Товар 1619','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11634','Товар 1620','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11635','Товар 1621','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11636','Товар 1622','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11637','Товар 1623','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11638','Товар 1624','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11639','Товар 1625','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11640','Товар 1626','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11641','Товар 1627','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11642','Товар 1628','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11643','Товар 1629','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11644','Товар 1630','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11645','Товар 1631','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11646','Товар 1632','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11647','Товар 1633','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11648','Товар 1634','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11649','Товар 1635','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11650','Товар 1636','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11651','Товар 1637','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11652','Товар 1638','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11653','Товар 1639','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11654','Товар 1640','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11655','Товар 1641','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11656','Товар 1642','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11657','Товар 1643','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11658','Товар 1644','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11659','Товар 1645','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11660','Товар 1646','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11661','Товар 1647','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11662','Товар 1648','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11663','Товар 1649','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11664','Товар 1650','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11665','Товар 1651','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11666','Товар 1652','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11667','Товар 1653','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11668','Товар 1654','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11669','Товар 1655','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11670','Товар 1656','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11671','Товар 1657','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11672','Товар 1658','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11673','Товар 1659','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11674','Товар 1660','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11675','Товар 1661','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11676','Товар 1662','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11677','Товар 1663','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11678','Товар 1664','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11679','Товар 1665','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11680','Товар 1666','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11681','Товар 1667','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11682','Товар 1668','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11683','Товар 1669','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11684','Товар 1670','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11685','Товар 1671','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11686','Товар 1672','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11687','Товар 1673','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11688','Товар 1674','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11689','Товар 1675','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11690','Товар 1676','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11691','Товар 1677','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11692','Товар 1678','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11693','Товар 1679','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11694','Товар 1680','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11695','Товар 1681','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11696','Товар 1682','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11697','Товар 1683','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11698','Товар 1684','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11699','Товар 1685','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11700','Товар 1686','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11701','Товар 1687','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11702','Товар 1688','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11703','Товар 1689','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11704','Товар 1690','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11705','Товар 1691','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11706','Товар 1692','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11707','Товар 1693','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11708','Товар 1694','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11709','Товар 1695','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11710','Товар 1696','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11711','Товар 1697','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11712','Товар 1698','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11713','Товар 1699','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11714','Товар 1700','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11715','Товар 1701','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11716','Товар 1702','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11717','Товар 1703','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11718','Товар 1704','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11719','Товар 1705','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11720','Товар 1706','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11721','Товар 1707','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11722','Товар 1708','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11723','Товар 1709','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11724','Товар 1710','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11725','Товар 1711','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11726','Товар 1712','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11727','Товар 1713','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11728','Товар 1714','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11729','Товар 1715','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11730','Товар 1716','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11731','Товар 1717','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11732','Товар 1718','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11733','Товар 1719','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11734','Товар 1720','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11735','Товар 1721','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11736','Товар 1722','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11737','Товар 1723','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11738','Товар 1724','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11739','Товар 1725','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11740','Товар 1726','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11741','Товар 1727','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11742','Товар 1728','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11743','Товар 1729','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11744','Товар 1730','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11745','Товар 1731','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11746','Товар 1732','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11747','Товар 1733','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11748','Товар 1734','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11749','Товар 1735','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11750','Товар 1736','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11751','Товар 1737','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11752','Товар 1738','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11753','Товар 1739','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11754','Товар 1740','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11755','Товар 1741','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11756','Товар 1742','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11757','Товар 1743','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11758','Товар 1744','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11759','Товар 1745','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11760','Товар 1746','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11761','Товар 1747','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11762','Товар 1748','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11763','Товар 1749','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11764','Товар 1750','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11765','Товар 1751','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11766','Товар 1752','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11767','Товар 1753','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11768','Товар 1754','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11769','Товар 1755','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11770','Товар 1756','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11771','Товар 1757','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11772','Товар 1758','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11773','Товар 1759','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11774','Товар 1760','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11775','Товар 1761','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11776','Товар 1762','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11777','Товар 1763','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11778','Товар 1764','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11779','Товар 1765','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11780','Товар 1766','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11781','Товар 1767','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11782','Товар 1768','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11783','Товар 1769','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11784','Товар 1770','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11785','Товар 1771','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11786','Товар 1772','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11787','Товар 1773','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11788','Товар 1774','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11789','Товар 1775','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11790','Товар 1776','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11791','Товар 1777','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11792','Товар 1778','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11793','Товар 1779','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11794','Товар 1780','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11795','Товар 1781','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11796','Товар 1782','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11797','Товар 1783','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11798','Товар 1784','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11799','Товар 1785','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11800','Товар 1786','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11801','Товар 1787','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11802','Товар 1788','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11803','Товар 1789','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11804','Товар 1790','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11805','Товар 1791','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11806','Товар 1792','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11807','Товар 1793','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11808','Товар 1794','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11809','Товар 1795','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11810','Товар 1796','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11811','Товар 1797','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11812','Товар 1798','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11813','Товар 1799','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11814','Товар 1800','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11815','Товар 1801','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11816','Товар 1802','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11817','Товар 1803','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11818','Товар 1804','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11819','Товар 1805','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11820','Товар 1806','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11821','Товар 1807','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11822','Товар 1808','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11823','Товар 1809','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11824','Товар 1810','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11825','Товар 1811','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11826','Товар 1812','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11827','Товар 1813','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11828','Товар 1814','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11829','Товар 1815','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11830','Товар 1816','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11831','Товар 1817','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11832','Товар 1818','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11833','Товар 1819','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11834','Товар 1820','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11835','Товар 1821','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11836','Товар 1822','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11837','Товар 1823','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11838','Товар 1824','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11839','Товар 1825','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11840','Товар 1826','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11841','Товар 1827','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11842','Товар 1828','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11843','Товар 1829','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11844','Товар 1830','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11845','Товар 1831','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11846','Товар 1832','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11847','Товар 1833','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11848','Товар 1834','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11849','Товар 1835','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11850','Товар 1836','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11851','Товар 1837','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11852','Товар 1838','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11853','Товар 1839','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11854','Товар 1840','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11855','Товар 1841','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11856','Товар 1842','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11857','Товар 1843','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11858','Товар 1844','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11859','Товар 1845','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11860','Товар 1846','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11861','Товар 1847','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11862','Товар 1848','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11863','Товар 1849','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11864','Товар 1850','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11865','Товар 1851','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11866','Товар 1852','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11867','Товар 1853','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11868','Товар 1854','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11869','Товар 1855','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11870','Товар 1856','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11871','Товар 1857','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11872','Товар 1858','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11873','Товар 1859','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11874','Товар 1860','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11875','Товар 1861','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11876','Товар 1862','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11877','Товар 1863','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11878','Товар 1864','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11879','Товар 1865','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11880','Товар 1866','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11881','Товар 1867','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11882','Товар 1868','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11883','Товар 1869','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11884','Товар 1870','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11885','Товар 1871','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11886','Товар 1872','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11887','Товар 1873','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11888','Товар 1874','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11889','Товар 1875','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11890','Товар 1876','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11891','Товар 1877','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11892','Товар 1878','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11893','Товар 1879','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11894','Товар 1880','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11895','Товар 1881','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11896','Товар 1882','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11897','Товар 1883','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11898','Товар 1884','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11899','Товар 1885','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11900','Товар 1886','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11901','Товар 1887','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11902','Товар 1888','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11903','Товар 1889','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11904','Товар 1890','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11905','Товар 1891','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11906','Товар 1892','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11907','Товар 1893','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11908','Товар 1894','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11909','Товар 1895','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11910','Товар 1896','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11911','Товар 1897','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11912','Товар 1898','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11913','Товар 1899','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11914','Товар 1900','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11915','Товар 1901','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11916','Товар 1902','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11917','Товар 1903','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11918','Товар 1904','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11919','Товар 1905','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11920','Товар 1906','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11921','Товар 1907','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11922','Товар 1908','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11923','Товар 1909','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11924','Товар 1910','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11925','Товар 1911','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11926','Товар 1912','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11927','Товар 1913','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11928','Товар 1914','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11929','Товар 1915','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11930','Товар 1916','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11931','Товар 1917','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11932','Товар 1918','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11933','Товар 1919','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11934','Товар 1920','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11935','Товар 1921','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11936','Товар 1922','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11937','Товар 1923','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11938','Товар 1924','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11939','Товар 1925','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11940','Товар 1926','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11941','Товар 1927','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11942','Товар 1928','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11943','Товар 1929','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11944','Товар 1930','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11945','Товар 1931','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11946','Товар 1932','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11947','Товар 1933','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11948','Товар 1934','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11949','Товар 1935','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11950','Товар 1936','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11951','Товар 1937','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11952','Товар 1938','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11953','Товар 1939','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11954','Товар 1940','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11955','Товар 1941','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11956','Товар 1942','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11957','Товар 1943','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11958','Товар 1944','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11959','Товар 1945','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11960','Товар 1946','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11961','Товар 1947','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11962','Товар 1948','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11963','Товар 1949','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11964','Товар 1950','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11965','Товар 1951','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11966','Товар 1952','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11967','Товар 1953','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11968','Товар 1954','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11969','Товар 1955','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11970','Товар 1956','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11971','Товар 1957','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11972','Товар 1958','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11973','Товар 1959','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11974','Товар 1960','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11975','Товар 1961','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11976','Товар 1962','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11977','Товар 1963','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11978','Товар 1964','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11979','Товар 1965','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11980','Товар 1966','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11981','Товар 1967','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11982','Товар 1968','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11983','Товар 1969','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11984','Товар 1970','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11985','Товар 1971','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11986','Товар 1972','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11987','Товар 1973','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11988','Товар 1974','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11989','Товар 1975','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11990','Товар 1976','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11991','Товар 1977','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11992','Товар 1978','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11993','Товар 1979','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11994','Товар 1980','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11995','Товар 1981','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11996','Товар 1982','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11997','Товар 1983','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11998','Товар 1984','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('11999','Товар 1985','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12000','Товар 1986','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12001','Товар 1987','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12002','Товар 1988','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12003','Товар 1989','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12004','Товар 1990','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12005','Товар 1991','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12006','Товар 1992','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12007','Товар 1993','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12008','Товар 1994','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12009','Товар 1995','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12010','Товар 1996','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12011','Товар 1997','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12012','Товар 1998','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12013','Товар 1999','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12014','Товар 2000','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12015','Товар 2001','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12016','Товар 2002','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12017','Товар 2003','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12018','Товар 2004','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12019','Товар 2005','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12020','Товар 2006','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12021','Товар 2007','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12022','Товар 2008','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12023','Товар 2009','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12024','Товар 2010','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12025','Товар 2011','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12026','Товар 2012','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12027','Товар 2013','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12028','Товар 2014','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12029','Товар 2015','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12030','Товар 2016','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12031','Товар 2017','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12032','Товар 2018','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12033','Товар 2019','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12034','Товар 2020','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12035','Товар 2021','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12036','Товар 2022','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12037','Товар 2023','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12038','Товар 2024','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12039','Товар 2025','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12040','Товар 2026','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12041','Товар 2027','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12042','Товар 2028','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12043','Товар 2029','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12044','Товар 2030','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12045','Товар 2031','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12046','Товар 2032','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12047','Товар 2033','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12048','Товар 2034','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12049','Товар 2035','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12050','Товар 2036','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12051','Товар 2037','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12052','Товар 2038','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12053','Товар 2039','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12054','Товар 2040','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12055','Товар 2041','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12056','Товар 2042','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12057','Товар 2043','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12058','Товар 2044','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12059','Товар 2045','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12060','Товар 2046','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12061','Товар 2047','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12062','Товар 2048','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12063','Товар 2049','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12064','Товар 2050','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12065','Товар 2051','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12066','Товар 2052','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12067','Товар 2053','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12068','Товар 2054','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12069','Товар 2055','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12070','Товар 2056','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12071','Товар 2057','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12072','Товар 2058','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12073','Товар 2059','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12074','Товар 2060','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12075','Товар 2061','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12076','Товар 2062','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12077','Товар 2063','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12078','Товар 2064','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12079','Товар 2065','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12080','Товар 2066','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12081','Товар 2067','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12082','Товар 2068','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12083','Товар 2069','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12084','Товар 2070','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12085','Товар 2071','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12086','Товар 2072','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12087','Товар 2073','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12088','Товар 2074','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12089','Товар 2075','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12090','Товар 2076','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12091','Товар 2077','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12092','Товар 2078','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12093','Товар 2079','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12094','Товар 2080','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12095','Товар 2081','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12096','Товар 2082','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12097','Товар 2083','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12098','Товар 2084','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12099','Товар 2085','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12100','Товар 2086','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12101','Товар 2087','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12102','Товар 2088','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12103','Товар 2089','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12104','Товар 2090','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12105','Товар 2091','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12106','Товар 2092','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12107','Товар 2093','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12108','Товар 2094','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12109','Товар 2095','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12110','Товар 2096','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12111','Товар 2097','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12112','Товар 2098','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12113','Товар 2099','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12114','Товар 2100','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12115','Товар 2101','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12116','Товар 2102','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12117','Товар 2103','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12118','Товар 2104','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12119','Товар 2105','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12120','Товар 2106','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12121','Товар 2107','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12122','Товар 2108','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12123','Товар 2109','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12124','Товар 2110','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12125','Товар 2111','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12126','Товар 2112','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12127','Товар 2113','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12128','Товар 2114','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12129','Товар 2115','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12130','Товар 2116','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12131','Товар 2117','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12132','Товар 2118','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12133','Товар 2119','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12134','Товар 2120','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12135','Товар 2121','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12136','Товар 2122','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12137','Товар 2123','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12138','Товар 2124','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12139','Товар 2125','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12140','Товар 2126','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12141','Товар 2127','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12142','Товар 2128','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12143','Товар 2129','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12144','Товар 2130','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12145','Товар 2131','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12146','Товар 2132','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12147','Товар 2133','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12148','Товар 2134','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12149','Товар 2135','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12150','Товар 2136','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12151','Товар 2137','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12152','Товар 2138','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12153','Товар 2139','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12154','Товар 2140','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12155','Товар 2141','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12156','Товар 2142','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12157','Товар 2143','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12158','Товар 2144','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12159','Товар 2145','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12160','Товар 2146','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12161','Товар 2147','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12162','Товар 2148','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12163','Товар 2149','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12164','Товар 2150','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12165','Товар 2151','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12166','Товар 2152','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12167','Товар 2153','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12168','Товар 2154','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12169','Товар 2155','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12170','Товар 2156','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12171','Товар 2157','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12172','Товар 2158','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12173','Товар 2159','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12174','Товар 2160','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12175','Товар 2161','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12176','Товар 2162','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12177','Товар 2163','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12178','Товар 2164','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12179','Товар 2165','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12180','Товар 2166','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12181','Товар 2167','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12182','Товар 2168','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12183','Товар 2169','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12184','Товар 2170','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12185','Товар 2171','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12186','Товар 2172','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12187','Товар 2173','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12188','Товар 2174','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12189','Товар 2175','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12190','Товар 2176','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12191','Товар 2177','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12192','Товар 2178','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12193','Товар 2179','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12194','Товар 2180','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12195','Товар 2181','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12196','Товар 2182','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12197','Товар 2183','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12198','Товар 2184','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12199','Товар 2185','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12200','Товар 2186','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12201','Товар 2187','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12202','Товар 2188','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12203','Товар 2189','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12204','Товар 2190','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12205','Товар 2191','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12206','Товар 2192','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12207','Товар 2193','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12208','Товар 2194','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12209','Товар 2195','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12210','Товар 2196','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12211','Товар 2197','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12212','Товар 2198','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12213','Товар 2199','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12214','Товар 2200','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12215','Товар 2201','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12216','Товар 2202','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12217','Товар 2203','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12218','Товар 2204','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12219','Товар 2205','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12220','Товар 2206','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12221','Товар 2207','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12222','Товар 2208','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12223','Товар 2209','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12224','Товар 2210','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12225','Товар 2211','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12226','Товар 2212','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12227','Товар 2213','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12228','Товар 2214','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12229','Товар 2215','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12230','Товар 2216','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12231','Товар 2217','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12232','Товар 2218','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12233','Товар 2219','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12234','Товар 2220','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12235','Товар 2221','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12236','Товар 2222','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12237','Товар 2223','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12238','Товар 2224','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12239','Товар 2225','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12240','Товар 2226','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12241','Товар 2227','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12242','Товар 2228','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12243','Товар 2229','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12244','Товар 2230','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12245','Товар 2231','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12246','Товар 2232','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12247','Товар 2233','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12248','Товар 2234','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12249','Товар 2235','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12250','Товар 2236','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12251','Товар 2237','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12252','Товар 2238','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12253','Товар 2239','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12254','Товар 2240','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12255','Товар 2241','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12256','Товар 2242','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12257','Товар 2243','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12258','Товар 2244','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12259','Товар 2245','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12260','Товар 2246','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12261','Товар 2247','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12262','Товар 2248','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12263','Товар 2249','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12264','Товар 2250','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12265','Товар 2251','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12266','Товар 2252','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12267','Товар 2253','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12268','Товар 2254','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12269','Товар 2255','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12270','Товар 2256','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12271','Товар 2257','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12272','Товар 2258','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12273','Товар 2259','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12274','Товар 2260','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12275','Товар 2261','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12276','Товар 2262','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12277','Товар 2263','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12278','Товар 2264','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12279','Товар 2265','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12280','Товар 2266','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12281','Товар 2267','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12282','Товар 2268','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12283','Товар 2269','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12284','Товар 2270','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12285','Товар 2271','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12286','Товар 2272','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12287','Товар 2273','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12288','Товар 2274','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12289','Товар 2275','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12290','Товар 2276','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12291','Товар 2277','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12292','Товар 2278','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12293','Товар 2279','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12294','Товар 2280','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12295','Товар 2281','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12296','Товар 2282','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12297','Товар 2283','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12298','Товар 2284','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12299','Товар 2285','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12300','Товар 2286','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12301','Товар 2287','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12302','Товар 2288','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12303','Товар 2289','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12304','Товар 2290','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12305','Товар 2291','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12306','Товар 2292','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12307','Товар 2293','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12308','Товар 2294','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12309','Товар 2295','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12310','Товар 2296','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12311','Товар 2297','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12312','Товар 2298','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12313','Товар 2299','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12314','Товар 2300','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12315','Товар 2301','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12316','Товар 2302','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12317','Товар 2303','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12318','Товар 2304','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12319','Товар 2305','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12320','Товар 2306','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12321','Товар 2307','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12322','Товар 2308','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12323','Товар 2309','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12324','Товар 2310','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12325','Товар 2311','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12326','Товар 2312','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12327','Товар 2313','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12328','Товар 2314','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12329','Товар 2315','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12330','Товар 2316','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12331','Товар 2317','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12332','Товар 2318','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12333','Товар 2319','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12334','Товар 2320','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12335','Товар 2321','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12336','Товар 2322','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12337','Товар 2323','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12338','Товар 2324','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12339','Товар 2325','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12340','Товар 2326','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12341','Товар 2327','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12342','Товар 2328','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12343','Товар 2329','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12344','Товар 2330','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12345','Товар 2331','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12346','Товар 2332','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12347','Товар 2333','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12348','Товар 2334','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12349','Товар 2335','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12350','Товар 2336','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12351','Товар 2337','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12352','Товар 2338','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12353','Товар 2339','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12354','Товар 2340','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12355','Товар 2341','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12356','Товар 2342','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12357','Товар 2343','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12358','Товар 2344','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12359','Товар 2345','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12360','Товар 2346','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12361','Товар 2347','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12362','Товар 2348','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12363','Товар 2349','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12364','Товар 2350','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12365','Товар 2351','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12366','Товар 2352','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12367','Товар 2353','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12368','Товар 2354','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12369','Товар 2355','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12370','Товар 2356','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12371','Товар 2357','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12372','Товар 2358','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12373','Товар 2359','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12374','Товар 2360','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12375','Товар 2361','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12376','Товар 2362','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12377','Товар 2363','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12378','Товар 2364','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12379','Товар 2365','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12380','Товар 2366','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12381','Товар 2367','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12382','Товар 2368','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12383','Товар 2369','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12384','Товар 2370','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12385','Товар 2371','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12386','Товар 2372','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12387','Товар 2373','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12388','Товар 2374','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12389','Товар 2375','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12390','Товар 2376','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12391','Товар 2377','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12392','Товар 2378','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12393','Товар 2379','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12394','Товар 2380','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12395','Товар 2381','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12396','Товар 2382','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12397','Товар 2383','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12398','Товар 2384','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12399','Товар 2385','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12400','Товар 2386','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12401','Товар 2387','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12402','Товар 2388','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12403','Товар 2389','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12404','Товар 2390','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12405','Товар 2391','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12406','Товар 2392','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12407','Товар 2393','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12408','Товар 2394','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12409','Товар 2395','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12410','Товар 2396','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12411','Товар 2397','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12412','Товар 2398','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12413','Товар 2399','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12414','Товар 2400','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12415','Товар 2401','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12416','Товар 2402','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12417','Товар 2403','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12418','Товар 2404','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12419','Товар 2405','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12420','Товар 2406','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12421','Товар 2407','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12422','Товар 2408','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12423','Товар 2409','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12424','Товар 2410','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12425','Товар 2411','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12426','Товар 2412','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12427','Товар 2413','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12428','Товар 2414','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12429','Товар 2415','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12430','Товар 2416','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12431','Товар 2417','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12432','Товар 2418','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12433','Товар 2419','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12434','Товар 2420','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12435','Товар 2421','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12436','Товар 2422','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12437','Товар 2423','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12438','Товар 2424','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12439','Товар 2425','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12440','Товар 2426','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12441','Товар 2427','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12442','Товар 2428','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12443','Товар 2429','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12444','Товар 2430','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12445','Товар 2431','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12446','Товар 2432','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12447','Товар 2433','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12448','Товар 2434','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12449','Товар 2435','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12450','Товар 2436','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12451','Товар 2437','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12452','Товар 2438','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12453','Товар 2439','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12454','Товар 2440','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12455','Товар 2441','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12456','Товар 2442','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12457','Товар 2443','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12458','Товар 2444','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12459','Товар 2445','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12460','Товар 2446','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12461','Товар 2447','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12462','Товар 2448','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12463','Товар 2449','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12464','Товар 2450','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12465','Товар 2451','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12466','Товар 2452','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12467','Товар 2453','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12468','Товар 2454','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12469','Товар 2455','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12470','Товар 2456','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12471','Товар 2457','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12472','Товар 2458','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12473','Товар 2459','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12474','Товар 2460','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12475','Товар 2461','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12476','Товар 2462','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12477','Товар 2463','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12478','Товар 2464','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12479','Товар 2465','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12480','Товар 2466','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12481','Товар 2467','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12482','Товар 2468','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12483','Товар 2469','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12484','Товар 2470','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12485','Товар 2471','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12486','Товар 2472','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12487','Товар 2473','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12488','Товар 2474','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12489','Товар 2475','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12490','Товар 2476','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12491','Товар 2477','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12492','Товар 2478','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12493','Товар 2479','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12494','Товар 2480','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12495','Товар 2481','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12496','Товар 2482','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12497','Товар 2483','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12498','Товар 2484','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12499','Товар 2485','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12500','Товар 2486','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12501','Товар 2487','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12502','Товар 2488','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12503','Товар 2489','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12504','Товар 2490','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12505','Товар 2491','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12506','Товар 2492','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12507','Товар 2493','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12508','Товар 2494','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12509','Товар 2495','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12510','Товар 2496','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12511','Товар 2497','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12512','Товар 2498','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12513','Товар 2499','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12514','Товар 2500','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12515','Товар 2501','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12516','Товар 2502','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12517','Товар 2503','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12518','Товар 2504','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12519','Товар 2505','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12520','Товар 2506','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12521','Товар 2507','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12522','Товар 2508','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12523','Товар 2509','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12524','Товар 2510','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12525','Товар 2511','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12526','Товар 2512','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12527','Товар 2513','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12528','Товар 2514','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12529','Товар 2515','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12530','Товар 2516','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12531','Товар 2517','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12532','Товар 2518','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12533','Товар 2519','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12534','Товар 2520','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12535','Товар 2521','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12536','Товар 2522','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12537','Товар 2523','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12538','Товар 2524','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12539','Товар 2525','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12540','Товар 2526','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12541','Товар 2527','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12542','Товар 2528','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12543','Товар 2529','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12544','Товар 2530','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12545','Товар 2531','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12546','Товар 2532','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12547','Товар 2533','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12548','Товар 2534','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12549','Товар 2535','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12550','Товар 2536','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12551','Товар 2537','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12552','Товар 2538','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12553','Товар 2539','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12554','Товар 2540','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12555','Товар 2541','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12556','Товар 2542','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12557','Товар 2543','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12558','Товар 2544','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12559','Товар 2545','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12560','Товар 2546','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12561','Товар 2547','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12562','Товар 2548','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12563','Товар 2549','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12564','Товар 2550','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12565','Товар 2551','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12566','Товар 2552','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12567','Товар 2553','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12568','Товар 2554','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12569','Товар 2555','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12570','Товар 2556','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12571','Товар 2557','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12572','Товар 2558','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12573','Товар 2559','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12574','Товар 2560','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12575','Товар 2561','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12576','Товар 2562','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12577','Товар 2563','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12578','Товар 2564','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12579','Товар 2565','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12580','Товар 2566','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12581','Товар 2567','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12582','Товар 2568','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12583','Товар 2569','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12584','Товар 2570','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12585','Товар 2571','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12586','Товар 2572','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12587','Товар 2573','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12588','Товар 2574','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12589','Товар 2575','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12590','Товар 2576','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12591','Товар 2577','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12592','Товар 2578','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12593','Товар 2579','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12594','Товар 2580','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12595','Товар 2581','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12596','Товар 2582','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12597','Товар 2583','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12598','Товар 2584','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12599','Товар 2585','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12600','Товар 2586','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12601','Товар 2587','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12602','Товар 2588','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12603','Товар 2589','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12604','Товар 2590','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12605','Товар 2591','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12606','Товар 2592','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12607','Товар 2593','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12608','Товар 2594','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12609','Товар 2595','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12610','Товар 2596','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12611','Товар 2597','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12612','Товар 2598','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12613','Товар 2599','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12614','Товар 2600','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12615','Товар 2601','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12616','Товар 2602','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12617','Товар 2603','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12618','Товар 2604','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12619','Товар 2605','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12620','Товар 2606','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12621','Товар 2607','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12622','Товар 2608','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12623','Товар 2609','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12624','Товар 2610','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12625','Товар 2611','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12626','Товар 2612','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12627','Товар 2613','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12628','Товар 2614','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12629','Товар 2615','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12630','Товар 2616','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12631','Товар 2617','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12632','Товар 2618','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12633','Товар 2619','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12634','Товар 2620','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12635','Товар 2621','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12636','Товар 2622','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12637','Товар 2623','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12638','Товар 2624','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12639','Товар 2625','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12640','Товар 2626','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12641','Товар 2627','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12642','Товар 2628','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12643','Товар 2629','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12644','Товар 2630','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12645','Товар 2631','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12646','Товар 2632','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12647','Товар 2633','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12648','Товар 2634','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12649','Товар 2635','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12650','Товар 2636','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12651','Товар 2637','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12652','Товар 2638','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12653','Товар 2639','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12654','Товар 2640','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12655','Товар 2641','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12656','Товар 2642','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12657','Товар 2643','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12658','Товар 2644','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12659','Товар 2645','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12660','Товар 2646','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12661','Товар 2647','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12662','Товар 2648','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12663','Товар 2649','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12664','Товар 2650','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12665','Товар 2651','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12666','Товар 2652','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12667','Товар 2653','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12668','Товар 2654','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12669','Товар 2655','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12670','Товар 2656','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12671','Товар 2657','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12672','Товар 2658','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12673','Товар 2659','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12674','Товар 2660','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12675','Товар 2661','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12676','Товар 2662','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12677','Товар 2663','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12678','Товар 2664','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12679','Товар 2665','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12680','Товар 2666','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12681','Товар 2667','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12682','Товар 2668','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12683','Товар 2669','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12684','Товар 2670','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12685','Товар 2671','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12686','Товар 2672','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12687','Товар 2673','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12688','Товар 2674','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12689','Товар 2675','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12690','Товар 2676','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12691','Товар 2677','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12692','Товар 2678','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12693','Товар 2679','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12694','Товар 2680','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12695','Товар 2681','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12696','Товар 2682','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12697','Товар 2683','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12698','Товар 2684','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12699','Товар 2685','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12700','Товар 2686','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12701','Товар 2687','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12702','Товар 2688','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12703','Товар 2689','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12704','Товар 2690','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12705','Товар 2691','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12706','Товар 2692','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12707','Товар 2693','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12708','Товар 2694','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12709','Товар 2695','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12710','Товар 2696','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12711','Товар 2697','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12712','Товар 2698','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12713','Товар 2699','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12714','Товар 2700','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12715','Товар 2701','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12716','Товар 2702','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12717','Товар 2703','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12718','Товар 2704','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12719','Товар 2705','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12720','Товар 2706','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12721','Товар 2707','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12722','Товар 2708','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12723','Товар 2709','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12724','Товар 2710','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12725','Товар 2711','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12726','Товар 2712','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12727','Товар 2713','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12728','Товар 2714','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12729','Товар 2715','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12730','Товар 2716','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12731','Товар 2717','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12732','Товар 2718','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12733','Товар 2719','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12734','Товар 2720','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12735','Товар 2721','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12736','Товар 2722','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12737','Товар 2723','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12738','Товар 2724','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12739','Товар 2725','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12740','Товар 2726','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12741','Товар 2727','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12742','Товар 2728','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12743','Товар 2729','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12744','Товар 2730','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12745','Товар 2731','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12746','Товар 2732','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12747','Товар 2733','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12748','Товар 2734','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12749','Товар 2735','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12750','Товар 2736','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12751','Товар 2737','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12752','Товар 2738','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12753','Товар 2739','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12754','Товар 2740','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12755','Товар 2741','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12756','Товар 2742','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12757','Товар 2743','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12758','Товар 2744','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12759','Товар 2745','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12760','Товар 2746','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12761','Товар 2747','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12762','Товар 2748','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12763','Товар 2749','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12764','Товар 2750','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12765','Товар 2751','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12766','Товар 2752','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12767','Товар 2753','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12768','Товар 2754','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12769','Товар 2755','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12770','Товар 2756','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12771','Товар 2757','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12772','Товар 2758','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12773','Товар 2759','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12774','Товар 2760','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12775','Товар 2761','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12776','Товар 2762','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12777','Товар 2763','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12778','Товар 2764','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12779','Товар 2765','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12780','Товар 2766','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12781','Товар 2767','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12782','Товар 2768','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12783','Товар 2769','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12784','Товар 2770','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12785','Товар 2771','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12786','Товар 2772','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12787','Товар 2773','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12788','Товар 2774','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12789','Товар 2775','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12790','Товар 2776','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12791','Товар 2777','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12792','Товар 2778','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12793','Товар 2779','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12794','Товар 2780','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12795','Товар 2781','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12796','Товар 2782','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12797','Товар 2783','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12798','Товар 2784','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12799','Товар 2785','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12800','Товар 2786','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12801','Товар 2787','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12802','Товар 2788','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12803','Товар 2789','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12804','Товар 2790','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12805','Товар 2791','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12806','Товар 2792','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12807','Товар 2793','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12808','Товар 2794','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12809','Товар 2795','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12810','Товар 2796','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12811','Товар 2797','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12812','Товар 2798','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12813','Товар 2799','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12814','Товар 2800','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12815','Товар 2801','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12816','Товар 2802','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12817','Товар 2803','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12818','Товар 2804','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12819','Товар 2805','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12820','Товар 2806','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12821','Товар 2807','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12822','Товар 2808','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12823','Товар 2809','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12824','Товар 2810','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12825','Товар 2811','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12826','Товар 2812','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12827','Товар 2813','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12828','Товар 2814','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12829','Товар 2815','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12830','Товар 2816','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12831','Товар 2817','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12832','Товар 2818','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12833','Товар 2819','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12834','Товар 2820','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12835','Товар 2821','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12836','Товар 2822','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12837','Товар 2823','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12838','Товар 2824','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12839','Товар 2825','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12840','Товар 2826','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12841','Товар 2827','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12842','Товар 2828','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12843','Товар 2829','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12844','Товар 2830','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12845','Товар 2831','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12846','Товар 2832','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12847','Товар 2833','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12848','Товар 2834','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12849','Товар 2835','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12850','Товар 2836','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12851','Товар 2837','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12852','Товар 2838','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12853','Товар 2839','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12854','Товар 2840','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12855','Товар 2841','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12856','Товар 2842','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12857','Товар 2843','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12858','Товар 2844','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12859','Товар 2845','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12860','Товар 2846','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12861','Товар 2847','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12862','Товар 2848','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12863','Товар 2849','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12864','Товар 2850','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12865','Товар 2851','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12866','Товар 2852','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12867','Товар 2853','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12868','Товар 2854','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12869','Товар 2855','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12870','Товар 2856','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12871','Товар 2857','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12872','Товар 2858','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12873','Товар 2859','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12874','Товар 2860','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12875','Товар 2861','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12876','Товар 2862','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12877','Товар 2863','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12878','Товар 2864','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12879','Товар 2865','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12880','Товар 2866','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12881','Товар 2867','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12882','Товар 2868','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12883','Товар 2869','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12884','Товар 2870','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12885','Товар 2871','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12886','Товар 2872','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12887','Товар 2873','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12888','Товар 2874','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12889','Товар 2875','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12890','Товар 2876','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12891','Товар 2877','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12892','Товар 2878','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12893','Товар 2879','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12894','Товар 2880','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12895','Товар 2881','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12896','Товар 2882','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12897','Товар 2883','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12898','Товар 2884','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12899','Товар 2885','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12900','Товар 2886','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12901','Товар 2887','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12902','Товар 2888','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12903','Товар 2889','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12904','Товар 2890','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12905','Товар 2891','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12906','Товар 2892','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12907','Товар 2893','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12908','Товар 2894','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12909','Товар 2895','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12910','Товар 2896','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12911','Товар 2897','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12912','Товар 2898','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12913','Товар 2899','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12914','Товар 2900','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12915','Товар 2901','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12916','Товар 2902','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12917','Товар 2903','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12918','Товар 2904','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12919','Товар 2905','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12920','Товар 2906','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12921','Товар 2907','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12922','Товар 2908','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12923','Товар 2909','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12924','Товар 2910','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12925','Товар 2911','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12926','Товар 2912','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12927','Товар 2913','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12928','Товар 2914','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12929','Товар 2915','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12930','Товар 2916','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12931','Товар 2917','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12932','Товар 2918','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12933','Товар 2919','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12934','Товар 2920','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12935','Товар 2921','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12936','Товар 2922','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12937','Товар 2923','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12938','Товар 2924','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12939','Товар 2925','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12940','Товар 2926','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12941','Товар 2927','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12942','Товар 2928','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12943','Товар 2929','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12944','Товар 2930','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12945','Товар 2931','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12946','Товар 2932','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12947','Товар 2933','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12948','Товар 2934','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12949','Товар 2935','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12950','Товар 2936','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12951','Товар 2937','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12952','Товар 2938','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12953','Товар 2939','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12954','Товар 2940','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12955','Товар 2941','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12956','Товар 2942','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12957','Товар 2943','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12958','Товар 2944','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12959','Товар 2945','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12960','Товар 2946','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12961','Товар 2947','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12962','Товар 2948','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12963','Товар 2949','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12964','Товар 2950','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12965','Товар 2951','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12966','Товар 2952','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12967','Товар 2953','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12968','Товар 2954','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12969','Товар 2955','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12970','Товар 2956','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12971','Товар 2957','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12972','Товар 2958','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12973','Товар 2959','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12974','Товар 2960','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12975','Товар 2961','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12976','Товар 2962','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12977','Товар 2963','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12978','Товар 2964','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12979','Товар 2965','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12980','Товар 2966','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12981','Товар 2967','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12982','Товар 2968','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12983','Товар 2969','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12984','Товар 2970','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12985','Товар 2971','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12986','Товар 2972','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12987','Товар 2973','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12988','Товар 2974','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12989','Товар 2975','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12990','Товар 2976','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12991','Товар 2977','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12992','Товар 2978','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12993','Товар 2979','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12994','Товар 2980','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12995','Товар 2981','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12996','Товар 2982','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12997','Товар 2983','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12998','Товар 2984','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('12999','Товар 2985','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13000','Товар 2986','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13001','Товар 2987','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13002','Товар 2988','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13003','Товар 2989','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13004','Товар 2990','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13005','Товар 2991','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13006','Товар 2992','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13007','Товар 2993','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13008','Товар 2994','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13009','Товар 2995','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13010','Товар 2996','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13011','Товар 2997','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13012','Товар 2998','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13013','Товар 2999','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13014','Товар 3000','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13015','Товар 3001','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13016','Товар 3002','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13017','Товар 3003','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13018','Товар 3004','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13019','Товар 3005','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13020','Товар 3006','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13021','Товар 3007','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13022','Товар 3008','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13023','Товар 3009','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13024','Товар 3010','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13025','Товар 3011','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13026','Товар 3012','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13027','Товар 3013','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13028','Товар 3014','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13029','Товар 3015','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13030','Товар 3016','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13031','Товар 3017','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13032','Товар 3018','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13033','Товар 3019','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13034','Товар 3020','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13035','Товар 3021','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13036','Товар 3022','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13037','Товар 3023','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13038','Товар 3024','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13039','Товар 3025','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13040','Товар 3026','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13041','Товар 3027','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13042','Товар 3028','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13043','Товар 3029','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13044','Товар 3030','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13045','Товар 3031','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13046','Товар 3032','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13047','Товар 3033','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13048','Товар 3034','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13049','Товар 3035','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13050','Товар 3036','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13051','Товар 3037','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13052','Товар 3038','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13053','Товар 3039','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13054','Товар 3040','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13055','Товар 3041','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13056','Товар 3042','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13057','Товар 3043','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13058','Товар 3044','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13059','Товар 3045','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13060','Товар 3046','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13061','Товар 3047','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13062','Товар 3048','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13063','Товар 3049','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13064','Товар 3050','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13065','Товар 3051','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13066','Товар 3052','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13067','Товар 3053','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13068','Товар 3054','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13069','Товар 3055','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13070','Товар 3056','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13071','Товар 3057','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13072','Товар 3058','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13073','Товар 3059','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13074','Товар 3060','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13075','Товар 3061','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13076','Товар 3062','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13077','Товар 3063','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13078','Товар 3064','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13079','Товар 3065','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13080','Товар 3066','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13081','Товар 3067','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13082','Товар 3068','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13083','Товар 3069','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13084','Товар 3070','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13085','Товар 3071','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13086','Товар 3072','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13087','Товар 3073','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13088','Товар 3074','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13089','Товар 3075','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13090','Товар 3076','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13091','Товар 3077','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13092','Товар 3078','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13093','Товар 3079','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13094','Товар 3080','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13095','Товар 3081','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13096','Товар 3082','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13097','Товар 3083','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13098','Товар 3084','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13099','Товар 3085','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13100','Товар 3086','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13101','Товар 3087','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13102','Товар 3088','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13103','Товар 3089','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13104','Товар 3090','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13105','Товар 3091','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13106','Товар 3092','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13107','Товар 3093','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13108','Товар 3094','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13109','Товар 3095','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13110','Товар 3096','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13111','Товар 3097','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13112','Товар 3098','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13113','Товар 3099','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13114','Товар 3100','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13115','Товар 3101','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13116','Товар 3102','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13117','Товар 3103','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13118','Товар 3104','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13119','Товар 3105','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13120','Товар 3106','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13121','Товар 3107','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13122','Товар 3108','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13123','Товар 3109','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13124','Товар 3110','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13125','Товар 3111','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13126','Товар 3112','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13127','Товар 3113','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13128','Товар 3114','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13129','Товар 3115','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13130','Товар 3116','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13131','Товар 3117','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13132','Товар 3118','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13133','Товар 3119','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13134','Товар 3120','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13135','Товар 3121','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13136','Товар 3122','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13137','Товар 3123','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13138','Товар 3124','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13139','Товар 3125','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13140','Товар 3126','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13141','Товар 3127','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13142','Товар 3128','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13143','Товар 3129','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13144','Товар 3130','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13145','Товар 3131','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13146','Товар 3132','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13147','Товар 3133','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13148','Товар 3134','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13149','Товар 3135','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13150','Товар 3136','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13151','Товар 3137','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13152','Товар 3138','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13153','Товар 3139','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13154','Товар 3140','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13155','Товар 3141','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13156','Товар 3142','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13157','Товар 3143','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13158','Товар 3144','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13159','Товар 3145','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13160','Товар 3146','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13161','Товар 3147','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13162','Товар 3148','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13163','Товар 3149','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13164','Товар 3150','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13165','Товар 3151','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13166','Товар 3152','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13167','Товар 3153','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13168','Товар 3154','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13169','Товар 3155','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13170','Товар 3156','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13171','Товар 3157','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13172','Товар 3158','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13173','Товар 3159','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13174','Товар 3160','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13175','Товар 3161','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13176','Товар 3162','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13177','Товар 3163','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13178','Товар 3164','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13179','Товар 3165','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13180','Товар 3166','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13181','Товар 3167','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13182','Товар 3168','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13183','Товар 3169','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13184','Товар 3170','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13185','Товар 3171','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13186','Товар 3172','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13187','Товар 3173','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13188','Товар 3174','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13189','Товар 3175','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13190','Товар 3176','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13191','Товар 3177','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13192','Товар 3178','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13193','Товар 3179','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13194','Товар 3180','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13195','Товар 3181','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13196','Товар 3182','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13197','Товар 3183','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13198','Товар 3184','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13199','Товар 3185','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13200','Товар 3186','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13201','Товар 3187','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13202','Товар 3188','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13203','Товар 3189','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13204','Товар 3190','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13205','Товар 3191','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13206','Товар 3192','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13207','Товар 3193','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13208','Товар 3194','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13209','Товар 3195','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13210','Товар 3196','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13211','Товар 3197','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13212','Товар 3198','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13213','Товар 3199','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13214','Товар 3200','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13215','Товар 3201','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13216','Товар 3202','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13217','Товар 3203','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13218','Товар 3204','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13219','Товар 3205','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13220','Товар 3206','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13221','Товар 3207','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13222','Товар 3208','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13223','Товар 3209','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13224','Товар 3210','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13225','Товар 3211','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13226','Товар 3212','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13227','Товар 3213','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13228','Товар 3214','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13229','Товар 3215','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13230','Товар 3216','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13231','Товар 3217','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13232','Товар 3218','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13233','Товар 3219','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13234','Товар 3220','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13235','Товар 3221','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13236','Товар 3222','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13237','Товар 3223','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13238','Товар 3224','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13239','Товар 3225','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13240','Товар 3226','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13241','Товар 3227','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13242','Товар 3228','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13243','Товар 3229','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13244','Товар 3230','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13245','Товар 3231','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13246','Товар 3232','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13247','Товар 3233','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13248','Товар 3234','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13249','Товар 3235','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13250','Товар 3236','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13251','Товар 3237','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13252','Товар 3238','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13253','Товар 3239','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13254','Товар 3240','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13255','Товар 3241','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13256','Товар 3242','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13257','Товар 3243','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13258','Товар 3244','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13259','Товар 3245','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13260','Товар 3246','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13261','Товар 3247','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13262','Товар 3248','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13263','Товар 3249','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13264','Товар 3250','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13265','Товар 3251','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13266','Товар 3252','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13267','Товар 3253','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13268','Товар 3254','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13269','Товар 3255','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13270','Товар 3256','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13271','Товар 3257','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13272','Товар 3258','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13273','Товар 3259','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13274','Товар 3260','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13275','Товар 3261','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13276','Товар 3262','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13277','Товар 3263','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13278','Товар 3264','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13279','Товар 3265','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13280','Товар 3266','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13281','Товар 3267','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13282','Товар 3268','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13283','Товар 3269','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13284','Товар 3270','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13285','Товар 3271','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13286','Товар 3272','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13287','Товар 3273','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13288','Товар 3274','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13289','Товар 3275','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13290','Товар 3276','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13291','Товар 3277','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13292','Товар 3278','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13293','Товар 3279','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13294','Товар 3280','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13295','Товар 3281','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13296','Товар 3282','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13297','Товар 3283','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13298','Товар 3284','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13299','Товар 3285','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13300','Товар 3286','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13301','Товар 3287','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13302','Товар 3288','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13303','Товар 3289','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13304','Товар 3290','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13305','Товар 3291','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13306','Товар 3292','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13307','Товар 3293','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13308','Товар 3294','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13309','Товар 3295','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13310','Товар 3296','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13311','Товар 3297','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13312','Товар 3298','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13313','Товар 3299','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13314','Товар 3300','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13315','Товар 3301','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13316','Товар 3302','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13317','Товар 3303','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13318','Товар 3304','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13319','Товар 3305','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13320','Товар 3306','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13321','Товар 3307','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13322','Товар 3308','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13323','Товар 3309','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13324','Товар 3310','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13325','Товар 3311','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13326','Товар 3312','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13327','Товар 3313','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13328','Товар 3314','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13329','Товар 3315','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13330','Товар 3316','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13331','Товар 3317','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13332','Товар 3318','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13333','Товар 3319','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13334','Товар 3320','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13335','Товар 3321','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13336','Товар 3322','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13337','Товар 3323','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13338','Товар 3324','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13339','Товар 3325','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13340','Товар 3326','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13341','Товар 3327','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13342','Товар 3328','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13343','Товар 3329','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13344','Товар 3330','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13345','Товар 3331','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13346','Товар 3332','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13347','Товар 3333','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13348','Товар 3334','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13349','Товар 3335','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13350','Товар 3336','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13351','Товар 3337','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13352','Товар 3338','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13353','Товар 3339','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13354','Товар 3340','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13355','Товар 3341','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13356','Товар 3342','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13357','Товар 3343','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13358','Товар 3344','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13359','Товар 3345','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13360','Товар 3346','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13361','Товар 3347','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13362','Товар 3348','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13363','Товар 3349','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13364','Товар 3350','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13365','Товар 3351','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13366','Товар 3352','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13367','Товар 3353','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13368','Товар 3354','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13369','Товар 3355','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13370','Товар 3356','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13371','Товар 3357','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13372','Товар 3358','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13373','Товар 3359','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13374','Товар 3360','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13375','Товар 3361','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13376','Товар 3362','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13377','Товар 3363','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13378','Товар 3364','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13379','Товар 3365','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13380','Товар 3366','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13381','Товар 3367','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13382','Товар 3368','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13383','Товар 3369','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13384','Товар 3370','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13385','Товар 3371','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13386','Товар 3372','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13387','Товар 3373','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13388','Товар 3374','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13389','Товар 3375','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13390','Товар 3376','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13391','Товар 3377','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13392','Товар 3378','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13393','Товар 3379','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13394','Товар 3380','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13395','Товар 3381','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13396','Товар 3382','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13397','Товар 3383','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13398','Товар 3384','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13399','Товар 3385','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13400','Товар 3386','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13401','Товар 3387','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13402','Товар 3388','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13403','Товар 3389','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13404','Товар 3390','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13405','Товар 3391','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13406','Товар 3392','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13407','Товар 3393','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13408','Товар 3394','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13409','Товар 3395','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13410','Товар 3396','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13411','Товар 3397','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13412','Товар 3398','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13413','Товар 3399','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13414','Товар 3400','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13415','Товар 3401','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13416','Товар 3402','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13417','Товар 3403','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13418','Товар 3404','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13419','Товар 3405','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13420','Товар 3406','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13421','Товар 3407','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13422','Товар 3408','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13423','Товар 3409','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13424','Товар 3410','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13425','Товар 3411','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13426','Товар 3412','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13427','Товар 3413','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13428','Товар 3414','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13429','Товар 3415','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13430','Товар 3416','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13431','Товар 3417','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13432','Товар 3418','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13433','Товар 3419','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13434','Товар 3420','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13435','Товар 3421','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13436','Товар 3422','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13437','Товар 3423','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13438','Товар 3424','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13439','Товар 3425','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13440','Товар 3426','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13441','Товар 3427','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13442','Товар 3428','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13443','Товар 3429','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13444','Товар 3430','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13445','Товар 3431','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13446','Товар 3432','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13447','Товар 3433','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13448','Товар 3434','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13449','Товар 3435','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13450','Товар 3436','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13451','Товар 3437','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13452','Товар 3438','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13453','Товар 3439','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13454','Товар 3440','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13455','Товар 3441','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13456','Товар 3442','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13457','Товар 3443','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13458','Товар 3444','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13459','Товар 3445','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13460','Товар 3446','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13461','Товар 3447','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13462','Товар 3448','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13463','Товар 3449','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13464','Товар 3450','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13465','Товар 3451','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13466','Товар 3452','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13467','Товар 3453','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13468','Товар 3454','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13469','Товар 3455','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13470','Товар 3456','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13471','Товар 3457','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13472','Товар 3458','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13473','Товар 3459','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13474','Товар 3460','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13475','Товар 3461','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13476','Товар 3462','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13477','Товар 3463','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13478','Товар 3464','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13479','Товар 3465','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13480','Товар 3466','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13481','Товар 3467','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13482','Товар 3468','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13483','Товар 3469','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13484','Товар 3470','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13485','Товар 3471','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13486','Товар 3472','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13487','Товар 3473','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13488','Товар 3474','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13489','Товар 3475','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13490','Товар 3476','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13491','Товар 3477','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13492','Товар 3478','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13493','Товар 3479','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13494','Товар 3480','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13495','Товар 3481','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13496','Товар 3482','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13497','Товар 3483','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13498','Товар 3484','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13499','Товар 3485','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13500','Товар 3486','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13501','Товар 3487','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13502','Товар 3488','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13503','Товар 3489','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13504','Товар 3490','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13505','Товар 3491','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13506','Товар 3492','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13507','Товар 3493','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13508','Товар 3494','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13509','Товар 3495','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13510','Товар 3496','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13511','Товар 3497','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13512','Товар 3498','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13513','Товар 3499','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13514','Товар 3500','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13515','Товар 3501','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13516','Товар 3502','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13517','Товар 3503','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13518','Товар 3504','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13519','Товар 3505','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13520','Товар 3506','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13521','Товар 3507','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13522','Товар 3508','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13523','Товар 3509','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13524','Товар 3510','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13525','Товар 3511','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13526','Товар 3512','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13527','Товар 3513','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13528','Товар 3514','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13529','Товар 3515','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13530','Товар 3516','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13531','Товар 3517','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13532','Товар 3518','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13533','Товар 3519','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13534','Товар 3520','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13535','Товар 3521','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13536','Товар 3522','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13537','Товар 3523','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13538','Товар 3524','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13539','Товар 3525','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13540','Товар 3526','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13541','Товар 3527','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13542','Товар 3528','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13543','Товар 3529','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13544','Товар 3530','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13545','Товар 3531','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13546','Товар 3532','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13547','Товар 3533','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13548','Товар 3534','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13549','Товар 3535','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13550','Товар 3536','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13551','Товар 3537','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13552','Товар 3538','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13553','Товар 3539','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13554','Товар 3540','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13555','Товар 3541','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13556','Товар 3542','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13557','Товар 3543','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13558','Товар 3544','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13559','Товар 3545','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13560','Товар 3546','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13561','Товар 3547','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13562','Товар 3548','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13563','Товар 3549','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13564','Товар 3550','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13565','Товар 3551','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13566','Товар 3552','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13567','Товар 3553','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13568','Товар 3554','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13569','Товар 3555','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13570','Товар 3556','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13571','Товар 3557','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13572','Товар 3558','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13573','Товар 3559','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13574','Товар 3560','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13575','Товар 3561','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13576','Товар 3562','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13577','Товар 3563','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13578','Товар 3564','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13579','Товар 3565','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13580','Товар 3566','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13581','Товар 3567','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13582','Товар 3568','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13583','Товар 3569','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13584','Товар 3570','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13585','Товар 3571','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13586','Товар 3572','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13587','Товар 3573','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13588','Товар 3574','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13589','Товар 3575','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13590','Товар 3576','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13591','Товар 3577','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13592','Товар 3578','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13593','Товар 3579','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13594','Товар 3580','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13595','Товар 3581','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13596','Товар 3582','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13597','Товар 3583','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13598','Товар 3584','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13599','Товар 3585','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13600','Товар 3586','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13601','Товар 3587','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13602','Товар 3588','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13603','Товар 3589','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13604','Товар 3590','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13605','Товар 3591','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13606','Товар 3592','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13607','Товар 3593','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13608','Товар 3594','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13609','Товар 3595','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13610','Товар 3596','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13611','Товар 3597','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13612','Товар 3598','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13613','Товар 3599','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13614','Товар 3600','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13615','Товар 3601','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13616','Товар 3602','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13617','Товар 3603','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13618','Товар 3604','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13619','Товар 3605','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13620','Товар 3606','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13621','Товар 3607','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13622','Товар 3608','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13623','Товар 3609','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13624','Товар 3610','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13625','Товар 3611','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13626','Товар 3612','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13627','Товар 3613','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13628','Товар 3614','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13629','Товар 3615','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13630','Товар 3616','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13631','Товар 3617','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13632','Товар 3618','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13633','Товар 3619','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13634','Товар 3620','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13635','Товар 3621','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13636','Товар 3622','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13637','Товар 3623','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13638','Товар 3624','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13639','Товар 3625','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13640','Товар 3626','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13641','Товар 3627','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13642','Товар 3628','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13643','Товар 3629','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13644','Товар 3630','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13645','Товар 3631','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13646','Товар 3632','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13647','Товар 3633','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13648','Товар 3634','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13649','Товар 3635','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13650','Товар 3636','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13651','Товар 3637','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13652','Товар 3638','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13653','Товар 3639','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13654','Товар 3640','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13655','Товар 3641','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13656','Товар 3642','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13657','Товар 3643','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13658','Товар 3644','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13659','Товар 3645','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13660','Товар 3646','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13661','Товар 3647','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13662','Товар 3648','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13663','Товар 3649','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13664','Товар 3650','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13665','Товар 3651','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13666','Товар 3652','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13667','Товар 3653','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13668','Товар 3654','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13669','Товар 3655','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13670','Товар 3656','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13671','Товар 3657','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13672','Товар 3658','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13673','Товар 3659','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13674','Товар 3660','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13675','Товар 3661','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13676','Товар 3662','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13677','Товар 3663','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13678','Товар 3664','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13679','Товар 3665','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13680','Товар 3666','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13681','Товар 3667','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13682','Товар 3668','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13683','Товар 3669','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13684','Товар 3670','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13685','Товар 3671','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13686','Товар 3672','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13687','Товар 3673','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13688','Товар 3674','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13689','Товар 3675','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13690','Товар 3676','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13691','Товар 3677','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13692','Товар 3678','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13693','Товар 3679','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13694','Товар 3680','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13695','Товар 3681','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13696','Товар 3682','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13697','Товар 3683','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13698','Товар 3684','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13699','Товар 3685','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13700','Товар 3686','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13701','Товар 3687','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13702','Товар 3688','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13703','Товар 3689','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13704','Товар 3690','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13705','Товар 3691','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13706','Товар 3692','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13707','Товар 3693','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13708','Товар 3694','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13709','Товар 3695','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13710','Товар 3696','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13711','Товар 3697','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13712','Товар 3698','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13713','Товар 3699','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13714','Товар 3700','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13715','Товар 3701','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13716','Товар 3702','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13717','Товар 3703','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13718','Товар 3704','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13719','Товар 3705','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13720','Товар 3706','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13721','Товар 3707','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13722','Товар 3708','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13723','Товар 3709','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13724','Товар 3710','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13725','Товар 3711','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13726','Товар 3712','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13727','Товар 3713','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13728','Товар 3714','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13729','Товар 3715','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13730','Товар 3716','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13731','Товар 3717','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13732','Товар 3718','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13733','Товар 3719','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13734','Товар 3720','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13735','Товар 3721','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13736','Товар 3722','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13737','Товар 3723','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13738','Товар 3724','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13739','Товар 3725','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13740','Товар 3726','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13741','Товар 3727','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13742','Товар 3728','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13743','Товар 3729','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13744','Товар 3730','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13745','Товар 3731','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13746','Товар 3732','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13747','Товар 3733','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13748','Товар 3734','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13749','Товар 3735','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13750','Товар 3736','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13751','Товар 3737','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13752','Товар 3738','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13753','Товар 3739','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13754','Товар 3740','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13755','Товар 3741','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13756','Товар 3742','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13757','Товар 3743','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13758','Товар 3744','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13759','Товар 3745','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13760','Товар 3746','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13761','Товар 3747','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13762','Товар 3748','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13763','Товар 3749','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13764','Товар 3750','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13765','Товар 3751','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13766','Товар 3752','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13767','Товар 3753','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13768','Товар 3754','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13769','Товар 3755','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13770','Товар 3756','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13771','Товар 3757','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13772','Товар 3758','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13773','Товар 3759','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13774','Товар 3760','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13775','Товар 3761','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13776','Товар 3762','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13777','Товар 3763','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13778','Товар 3764','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13779','Товар 3765','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13780','Товар 3766','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13781','Товар 3767','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13782','Товар 3768','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13783','Товар 3769','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13784','Товар 3770','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13785','Товар 3771','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13786','Товар 3772','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13787','Товар 3773','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13788','Товар 3774','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13789','Товар 3775','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13790','Товар 3776','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13791','Товар 3777','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13792','Товар 3778','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13793','Товар 3779','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13794','Товар 3780','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13795','Товар 3781','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13796','Товар 3782','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13797','Товар 3783','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13798','Товар 3784','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13799','Товар 3785','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13800','Товар 3786','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13801','Товар 3787','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13802','Товар 3788','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13803','Товар 3789','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13804','Товар 3790','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13805','Товар 3791','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13806','Товар 3792','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13807','Товар 3793','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13808','Товар 3794','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13809','Товар 3795','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13810','Товар 3796','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13811','Товар 3797','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13812','Товар 3798','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13813','Товар 3799','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13814','Товар 3800','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13815','Товар 3801','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13816','Товар 3802','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13817','Товар 3803','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13818','Товар 3804','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13819','Товар 3805','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13820','Товар 3806','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13821','Товар 3807','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13822','Товар 3808','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13823','Товар 3809','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13824','Товар 3810','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13825','Товар 3811','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13826','Товар 3812','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13827','Товар 3813','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13828','Товар 3814','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13829','Товар 3815','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13830','Товар 3816','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13831','Товар 3817','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13832','Товар 3818','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13833','Товар 3819','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13834','Товар 3820','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13835','Товар 3821','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13836','Товар 3822','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13837','Товар 3823','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13838','Товар 3824','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13839','Товар 3825','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13840','Товар 3826','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13841','Товар 3827','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13842','Товар 3828','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13843','Товар 3829','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13844','Товар 3830','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13845','Товар 3831','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13846','Товар 3832','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13847','Товар 3833','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13848','Товар 3834','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13849','Товар 3835','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13850','Товар 3836','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13851','Товар 3837','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13852','Товар 3838','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13853','Товар 3839','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13854','Товар 3840','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13855','Товар 3841','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13856','Товар 3842','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13857','Товар 3843','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13858','Товар 3844','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13859','Товар 3845','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13860','Товар 3846','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13861','Товар 3847','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13862','Товар 3848','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13863','Товар 3849','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13864','Товар 3850','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13865','Товар 3851','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13866','Товар 3852','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13867','Товар 3853','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13868','Товар 3854','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13869','Товар 3855','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13870','Товар 3856','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13871','Товар 3857','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13872','Товар 3858','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13873','Товар 3859','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13874','Товар 3860','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13875','Товар 3861','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13876','Товар 3862','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13877','Товар 3863','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13878','Товар 3864','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13879','Товар 3865','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13880','Товар 3866','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13881','Товар 3867','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13882','Товар 3868','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13883','Товар 3869','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13884','Товар 3870','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13885','Товар 3871','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13886','Товар 3872','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13887','Товар 3873','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13888','Товар 3874','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13889','Товар 3875','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13890','Товар 3876','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13891','Товар 3877','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13892','Товар 3878','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13893','Товар 3879','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13894','Товар 3880','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13895','Товар 3881','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13896','Товар 3882','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13897','Товар 3883','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13898','Товар 3884','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13899','Товар 3885','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13900','Товар 3886','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13901','Товар 3887','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13902','Товар 3888','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13903','Товар 3889','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13904','Товар 3890','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13905','Товар 3891','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13906','Товар 3892','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13907','Товар 3893','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13908','Товар 3894','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13909','Товар 3895','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13910','Товар 3896','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13911','Товар 3897','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13912','Товар 3898','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13913','Товар 3899','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13914','Товар 3900','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13915','Товар 3901','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13916','Товар 3902','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13917','Товар 3903','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13918','Товар 3904','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13919','Товар 3905','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13920','Товар 3906','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13921','Товар 3907','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13922','Товар 3908','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13923','Товар 3909','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13924','Товар 3910','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13925','Товар 3911','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13926','Товар 3912','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13927','Товар 3913','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13928','Товар 3914','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13929','Товар 3915','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13930','Товар 3916','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13931','Товар 3917','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13932','Товар 3918','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13933','Товар 3919','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13934','Товар 3920','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13935','Товар 3921','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13936','Товар 3922','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13937','Товар 3923','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13938','Товар 3924','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13939','Товар 3925','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13940','Товар 3926','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13941','Товар 3927','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13942','Товар 3928','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13943','Товар 3929','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13944','Товар 3930','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13945','Товар 3931','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13946','Товар 3932','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13947','Товар 3933','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13948','Товар 3934','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13949','Товар 3935','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13950','Товар 3936','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13951','Товар 3937','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13952','Товар 3938','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13953','Товар 3939','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13954','Товар 3940','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13955','Товар 3941','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13956','Товар 3942','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13957','Товар 3943','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13958','Товар 3944','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13959','Товар 3945','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13960','Товар 3946','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13961','Товар 3947','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13962','Товар 3948','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13963','Товар 3949','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13964','Товар 3950','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13965','Товар 3951','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13966','Товар 3952','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13967','Товар 3953','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13968','Товар 3954','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13969','Товар 3955','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13970','Товар 3956','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13971','Товар 3957','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13972','Товар 3958','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13973','Товар 3959','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13974','Товар 3960','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13975','Товар 3961','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13976','Товар 3962','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13977','Товар 3963','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13978','Товар 3964','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13979','Товар 3965','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13980','Товар 3966','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13981','Товар 3967','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13982','Товар 3968','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13983','Товар 3969','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13984','Товар 3970','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13985','Товар 3971','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13986','Товар 3972','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13987','Товар 3973','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13988','Товар 3974','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13989','Товар 3975','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13990','Товар 3976','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13991','Товар 3977','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13992','Товар 3978','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13993','Товар 3979','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13994','Товар 3980','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13995','Товар 3981','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13996','Товар 3982','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13997','Товар 3983','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13998','Товар 3984','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('13999','Товар 3985','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14000','Товар 3986','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14001','Товар 3987','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14002','Товар 3988','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14003','Товар 3989','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14004','Товар 3990','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14005','Товар 3991','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14006','Товар 3992','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14007','Товар 3993','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14008','Товар 3994','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14009','Товар 3995','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14010','Товар 3996','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14011','Товар 3997','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14012','Товар 3998','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14013','Товар 3999','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14014','Товар 4000','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14015','Товар 4001','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14016','Товар 4002','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14017','Товар 4003','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14018','Товар 4004','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14019','Товар 4005','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14020','Товар 4006','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14021','Товар 4007','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14022','Товар 4008','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14023','Товар 4009','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14024','Товар 4010','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14025','Товар 4011','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14026','Товар 4012','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14027','Товар 4013','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14028','Товар 4014','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14029','Товар 4015','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14030','Товар 4016','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14031','Товар 4017','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14032','Товар 4018','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14033','Товар 4019','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14034','Товар 4020','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14035','Товар 4021','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14036','Товар 4022','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14037','Товар 4023','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14038','Товар 4024','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14039','Товар 4025','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14040','Товар 4026','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14041','Товар 4027','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14042','Товар 4028','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14043','Товар 4029','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14044','Товар 4030','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14045','Товар 4031','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14046','Товар 4032','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14047','Товар 4033','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14048','Товар 4034','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14049','Товар 4035','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14050','Товар 4036','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14051','Товар 4037','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14052','Товар 4038','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14053','Товар 4039','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14054','Товар 4040','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14055','Товар 4041','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14056','Товар 4042','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14057','Товар 4043','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14058','Товар 4044','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14059','Товар 4045','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14060','Товар 4046','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14061','Товар 4047','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14062','Товар 4048','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14063','Товар 4049','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14064','Товар 4050','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14065','Товар 4051','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14066','Товар 4052','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14067','Товар 4053','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14068','Товар 4054','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14069','Товар 4055','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14070','Товар 4056','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14071','Товар 4057','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14072','Товар 4058','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14073','Товар 4059','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14074','Товар 4060','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14075','Товар 4061','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14076','Товар 4062','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14077','Товар 4063','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14078','Товар 4064','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14079','Товар 4065','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14080','Товар 4066','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14081','Товар 4067','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14082','Товар 4068','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14083','Товар 4069','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14084','Товар 4070','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14085','Товар 4071','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14086','Товар 4072','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14087','Товар 4073','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14088','Товар 4074','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14089','Товар 4075','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14090','Товар 4076','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14091','Товар 4077','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14092','Товар 4078','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14093','Товар 4079','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14094','Товар 4080','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14095','Товар 4081','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14096','Товар 4082','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14097','Товар 4083','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14098','Товар 4084','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14099','Товар 4085','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14100','Товар 4086','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14101','Товар 4087','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14102','Товар 4088','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14103','Товар 4089','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14104','Товар 4090','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14105','Товар 4091','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14106','Товар 4092','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14107','Товар 4093','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14108','Товар 4094','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14109','Товар 4095','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14110','Товар 4096','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14111','Товар 4097','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14112','Товар 4098','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14113','Товар 4099','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14114','Товар 4100','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14115','Товар 4101','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14116','Товар 4102','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14117','Товар 4103','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14118','Товар 4104','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14119','Товар 4105','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14120','Товар 4106','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14121','Товар 4107','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14122','Товар 4108','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14123','Товар 4109','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14124','Товар 4110','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14125','Товар 4111','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14126','Товар 4112','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14127','Товар 4113','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14128','Товар 4114','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14129','Товар 4115','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14130','Товар 4116','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14131','Товар 4117','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14132','Товар 4118','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14133','Товар 4119','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14134','Товар 4120','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14135','Товар 4121','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14136','Товар 4122','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14137','Товар 4123','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14138','Товар 4124','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14139','Товар 4125','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14140','Товар 4126','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14141','Товар 4127','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14142','Товар 4128','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14143','Товар 4129','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14144','Товар 4130','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14145','Товар 4131','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14146','Товар 4132','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14147','Товар 4133','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14148','Товар 4134','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14149','Товар 4135','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14150','Товар 4136','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14151','Товар 4137','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14152','Товар 4138','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14153','Товар 4139','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14154','Товар 4140','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14155','Товар 4141','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14156','Товар 4142','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14157','Товар 4143','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14158','Товар 4144','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14159','Товар 4145','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14160','Товар 4146','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14161','Товар 4147','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14162','Товар 4148','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14163','Товар 4149','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14164','Товар 4150','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14165','Товар 4151','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14166','Товар 4152','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14167','Товар 4153','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14168','Товар 4154','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14169','Товар 4155','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14170','Товар 4156','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14171','Товар 4157','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14172','Товар 4158','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14173','Товар 4159','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14174','Товар 4160','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14175','Товар 4161','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14176','Товар 4162','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14177','Товар 4163','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14178','Товар 4164','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14179','Товар 4165','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14180','Товар 4166','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14181','Товар 4167','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14182','Товар 4168','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14183','Товар 4169','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14184','Товар 4170','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14185','Товар 4171','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14186','Товар 4172','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14187','Товар 4173','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14188','Товар 4174','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14189','Товар 4175','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14190','Товар 4176','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14191','Товар 4177','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14192','Товар 4178','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14193','Товар 4179','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14194','Товар 4180','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14195','Товар 4181','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14196','Товар 4182','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14197','Товар 4183','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14198','Товар 4184','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14199','Товар 4185','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14200','Товар 4186','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14201','Товар 4187','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14202','Товар 4188','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14203','Товар 4189','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14204','Товар 4190','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14205','Товар 4191','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14206','Товар 4192','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14207','Товар 4193','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14208','Товар 4194','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14209','Товар 4195','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14210','Товар 4196','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14211','Товар 4197','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14212','Товар 4198','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14213','Товар 4199','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14214','Товар 4200','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14215','Товар 4201','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14216','Товар 4202','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14217','Товар 4203','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14218','Товар 4204','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14219','Товар 4205','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14220','Товар 4206','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14221','Товар 4207','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14222','Товар 4208','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14223','Товар 4209','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14224','Товар 4210','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14225','Товар 4211','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14226','Товар 4212','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14227','Товар 4213','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14228','Товар 4214','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14229','Товар 4215','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14230','Товар 4216','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14231','Товар 4217','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14232','Товар 4218','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14233','Товар 4219','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14234','Товар 4220','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14235','Товар 4221','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14236','Товар 4222','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14237','Товар 4223','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14238','Товар 4224','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14239','Товар 4225','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14240','Товар 4226','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14241','Товар 4227','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14242','Товар 4228','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14243','Товар 4229','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14244','Товар 4230','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14245','Товар 4231','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14246','Товар 4232','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14247','Товар 4233','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14248','Товар 4234','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14249','Товар 4235','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14250','Товар 4236','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14251','Товар 4237','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14252','Товар 4238','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14253','Товар 4239','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14254','Товар 4240','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14255','Товар 4241','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14256','Товар 4242','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14257','Товар 4243','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14258','Товар 4244','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14259','Товар 4245','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14260','Товар 4246','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14261','Товар 4247','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14262','Товар 4248','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14263','Товар 4249','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14264','Товар 4250','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14265','Товар 4251','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14266','Товар 4252','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14267','Товар 4253','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14268','Товар 4254','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14269','Товар 4255','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14270','Товар 4256','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14271','Товар 4257','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14272','Товар 4258','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14273','Товар 4259','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14274','Товар 4260','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14275','Товар 4261','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14276','Товар 4262','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14277','Товар 4263','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14278','Товар 4264','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14279','Товар 4265','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14280','Товар 4266','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14281','Товар 4267','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14282','Товар 4268','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14283','Товар 4269','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14284','Товар 4270','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14285','Товар 4271','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14286','Товар 4272','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14287','Товар 4273','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14288','Товар 4274','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14289','Товар 4275','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14290','Товар 4276','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14291','Товар 4277','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14292','Товар 4278','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14293','Товар 4279','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14294','Товар 4280','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14295','Товар 4281','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14296','Товар 4282','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14297','Товар 4283','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14298','Товар 4284','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14299','Товар 4285','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14300','Товар 4286','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14301','Товар 4287','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14302','Товар 4288','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14303','Товар 4289','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14304','Товар 4290','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14305','Товар 4291','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14306','Товар 4292','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14307','Товар 4293','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14308','Товар 4294','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14309','Товар 4295','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14310','Товар 4296','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14311','Товар 4297','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14312','Товар 4298','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14313','Товар 4299','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14314','Товар 4300','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14315','Товар 4301','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14316','Товар 4302','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14317','Товар 4303','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14318','Товар 4304','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14319','Товар 4305','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14320','Товар 4306','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14321','Товар 4307','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14322','Товар 4308','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14323','Товар 4309','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14324','Товар 4310','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14325','Товар 4311','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14326','Товар 4312','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14327','Товар 4313','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14328','Товар 4314','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14329','Товар 4315','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14330','Товар 4316','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14331','Товар 4317','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14332','Товар 4318','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14333','Товар 4319','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14334','Товар 4320','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14335','Товар 4321','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14336','Товар 4322','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14337','Товар 4323','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14338','Товар 4324','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14339','Товар 4325','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14340','Товар 4326','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14341','Товар 4327','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14342','Товар 4328','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14343','Товар 4329','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14344','Товар 4330','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14345','Товар 4331','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14346','Товар 4332','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14347','Товар 4333','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14348','Товар 4334','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14349','Товар 4335','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14350','Товар 4336','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14351','Товар 4337','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14352','Товар 4338','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14353','Товар 4339','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14354','Товар 4340','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14355','Товар 4341','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14356','Товар 4342','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14357','Товар 4343','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14358','Товар 4344','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14359','Товар 4345','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14360','Товар 4346','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14361','Товар 4347','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14362','Товар 4348','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14363','Товар 4349','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14364','Товар 4350','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14365','Товар 4351','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14366','Товар 4352','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14367','Товар 4353','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14368','Товар 4354','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14369','Товар 4355','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14370','Товар 4356','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14371','Товар 4357','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14372','Товар 4358','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14373','Товар 4359','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14374','Товар 4360','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14375','Товар 4361','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14376','Товар 4362','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14377','Товар 4363','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14378','Товар 4364','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14379','Товар 4365','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14380','Товар 4366','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14381','Товар 4367','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14382','Товар 4368','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14383','Товар 4369','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14384','Товар 4370','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14385','Товар 4371','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14386','Товар 4372','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14387','Товар 4373','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14388','Товар 4374','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14389','Товар 4375','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14390','Товар 4376','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14391','Товар 4377','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14392','Товар 4378','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14393','Товар 4379','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14394','Товар 4380','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14395','Товар 4381','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14396','Товар 4382','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14397','Товар 4383','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14398','Товар 4384','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14399','Товар 4385','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14400','Товар 4386','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14401','Товар 4387','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14402','Товар 4388','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14403','Товар 4389','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14404','Товар 4390','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14405','Товар 4391','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14406','Товар 4392','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14407','Товар 4393','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14408','Товар 4394','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14409','Товар 4395','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14410','Товар 4396','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14411','Товар 4397','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14412','Товар 4398','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14413','Товар 4399','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14414','Товар 4400','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14415','Товар 4401','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14416','Товар 4402','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14417','Товар 4403','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14418','Товар 4404','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14419','Товар 4405','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14420','Товар 4406','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14421','Товар 4407','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14422','Товар 4408','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14423','Товар 4409','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14424','Товар 4410','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14425','Товар 4411','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14426','Товар 4412','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14427','Товар 4413','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14428','Товар 4414','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14429','Товар 4415','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14430','Товар 4416','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14431','Товар 4417','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14432','Товар 4418','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14433','Товар 4419','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14434','Товар 4420','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14435','Товар 4421','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14436','Товар 4422','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14437','Товар 4423','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14438','Товар 4424','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14439','Товар 4425','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14440','Товар 4426','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14441','Товар 4427','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14442','Товар 4428','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14443','Товар 4429','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14444','Товар 4430','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14445','Товар 4431','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14446','Товар 4432','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14447','Товар 4433','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14448','Товар 4434','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14449','Товар 4435','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14450','Товар 4436','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14451','Товар 4437','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14452','Товар 4438','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14453','Товар 4439','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14454','Товар 4440','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14455','Товар 4441','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14456','Товар 4442','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14457','Товар 4443','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14458','Товар 4444','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14459','Товар 4445','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14460','Товар 4446','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14461','Товар 4447','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14462','Товар 4448','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14463','Товар 4449','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14464','Товар 4450','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14465','Товар 4451','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14466','Товар 4452','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14467','Товар 4453','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14468','Товар 4454','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14469','Товар 4455','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14470','Товар 4456','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14471','Товар 4457','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14472','Товар 4458','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14473','Товар 4459','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14474','Товар 4460','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14475','Товар 4461','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14476','Товар 4462','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14477','Товар 4463','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14478','Товар 4464','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14479','Товар 4465','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14480','Товар 4466','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14481','Товар 4467','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14482','Товар 4468','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14483','Товар 4469','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14484','Товар 4470','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14485','Товар 4471','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14486','Товар 4472','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14487','Товар 4473','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14488','Товар 4474','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14489','Товар 4475','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14490','Товар 4476','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14491','Товар 4477','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14492','Товар 4478','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14493','Товар 4479','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14494','Товар 4480','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14495','Товар 4481','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14496','Товар 4482','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14497','Товар 4483','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14498','Товар 4484','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14499','Товар 4485','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14500','Товар 4486','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14501','Товар 4487','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14502','Товар 4488','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14503','Товар 4489','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14504','Товар 4490','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14505','Товар 4491','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14506','Товар 4492','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14507','Товар 4493','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14508','Товар 4494','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14509','Товар 4495','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14510','Товар 4496','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14511','Товар 4497','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14512','Товар 4498','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14513','Товар 4499','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14514','Товар 4500','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14515','Товар 4501','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14516','Товар 4502','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14517','Товар 4503','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14518','Товар 4504','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14519','Товар 4505','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14520','Товар 4506','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14521','Товар 4507','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14522','Товар 4508','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14523','Товар 4509','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14524','Товар 4510','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14525','Товар 4511','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14526','Товар 4512','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14527','Товар 4513','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14528','Товар 4514','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14529','Товар 4515','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14530','Товар 4516','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14531','Товар 4517','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14532','Товар 4518','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14533','Товар 4519','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14534','Товар 4520','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14535','Товар 4521','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14536','Товар 4522','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14537','Товар 4523','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14538','Товар 4524','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14539','Товар 4525','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14540','Товар 4526','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14541','Товар 4527','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14542','Товар 4528','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14543','Товар 4529','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14544','Товар 4530','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14545','Товар 4531','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14546','Товар 4532','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14547','Товар 4533','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14548','Товар 4534','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14549','Товар 4535','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14550','Товар 4536','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14551','Товар 4537','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14552','Товар 4538','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14553','Товар 4539','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14554','Товар 4540','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14555','Товар 4541','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14556','Товар 4542','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14557','Товар 4543','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14558','Товар 4544','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14559','Товар 4545','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14560','Товар 4546','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14561','Товар 4547','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14562','Товар 4548','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14563','Товар 4549','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14564','Товар 4550','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14565','Товар 4551','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14566','Товар 4552','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14567','Товар 4553','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14568','Товар 4554','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14569','Товар 4555','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14570','Товар 4556','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14571','Товар 4557','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14572','Товар 4558','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14573','Товар 4559','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14574','Товар 4560','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14575','Товар 4561','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14576','Товар 4562','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14577','Товар 4563','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14578','Товар 4564','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14579','Товар 4565','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14580','Товар 4566','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14581','Товар 4567','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14582','Товар 4568','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14583','Товар 4569','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14584','Товар 4570','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14585','Товар 4571','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14586','Товар 4572','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14587','Товар 4573','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14588','Товар 4574','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14589','Товар 4575','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14590','Товар 4576','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14591','Товар 4577','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14592','Товар 4578','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14593','Товар 4579','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14594','Товар 4580','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14595','Товар 4581','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14596','Товар 4582','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14597','Товар 4583','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14598','Товар 4584','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14599','Товар 4585','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14600','Товар 4586','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14601','Товар 4587','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14602','Товар 4588','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14603','Товар 4589','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14604','Товар 4590','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14605','Товар 4591','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14606','Товар 4592','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14607','Товар 4593','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14608','Товар 4594','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14609','Товар 4595','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14610','Товар 4596','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14611','Товар 4597','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14612','Товар 4598','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14613','Товар 4599','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14614','Товар 4600','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14615','Товар 4601','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14616','Товар 4602','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14617','Товар 4603','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14618','Товар 4604','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14619','Товар 4605','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14620','Товар 4606','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14621','Товар 4607','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14622','Товар 4608','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14623','Товар 4609','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14624','Товар 4610','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14625','Товар 4611','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14626','Товар 4612','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14627','Товар 4613','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14628','Товар 4614','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14629','Товар 4615','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14630','Товар 4616','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14631','Товар 4617','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14632','Товар 4618','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14633','Товар 4619','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14634','Товар 4620','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14635','Товар 4621','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14636','Товар 4622','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14637','Товар 4623','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14638','Товар 4624','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14639','Товар 4625','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14640','Товар 4626','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14641','Товар 4627','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14642','Товар 4628','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14643','Товар 4629','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14644','Товар 4630','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14645','Товар 4631','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14646','Товар 4632','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14647','Товар 4633','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14648','Товар 4634','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14649','Товар 4635','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14650','Товар 4636','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14651','Товар 4637','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14652','Товар 4638','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14653','Товар 4639','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14654','Товар 4640','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14655','Товар 4641','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14656','Товар 4642','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14657','Товар 4643','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14658','Товар 4644','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14659','Товар 4645','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14660','Товар 4646','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14661','Товар 4647','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14662','Товар 4648','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14663','Товар 4649','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14664','Товар 4650','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14665','Товар 4651','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14666','Товар 4652','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14667','Товар 4653','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14668','Товар 4654','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14669','Товар 4655','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14670','Товар 4656','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14671','Товар 4657','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14672','Товар 4658','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14673','Товар 4659','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14674','Товар 4660','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14675','Товар 4661','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14676','Товар 4662','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14677','Товар 4663','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14678','Товар 4664','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14679','Товар 4665','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14680','Товар 4666','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14681','Товар 4667','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14682','Товар 4668','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14683','Товар 4669','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14684','Товар 4670','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14685','Товар 4671','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14686','Товар 4672','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14687','Товар 4673','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14688','Товар 4674','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14689','Товар 4675','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14690','Товар 4676','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14691','Товар 4677','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14692','Товар 4678','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14693','Товар 4679','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14694','Товар 4680','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14695','Товар 4681','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14696','Товар 4682','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14697','Товар 4683','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14698','Товар 4684','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14699','Товар 4685','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14700','Товар 4686','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14701','Товар 4687','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14702','Товар 4688','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14703','Товар 4689','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14704','Товар 4690','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14705','Товар 4691','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14706','Товар 4692','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14707','Товар 4693','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14708','Товар 4694','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14709','Товар 4695','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14710','Товар 4696','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14711','Товар 4697','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14712','Товар 4698','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14713','Товар 4699','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14714','Товар 4700','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14715','Товар 4701','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14716','Товар 4702','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14717','Товар 4703','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14718','Товар 4704','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14719','Товар 4705','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14720','Товар 4706','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14721','Товар 4707','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14722','Товар 4708','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14723','Товар 4709','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14724','Товар 4710','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14725','Товар 4711','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14726','Товар 4712','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14727','Товар 4713','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14728','Товар 4714','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14729','Товар 4715','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14730','Товар 4716','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14731','Товар 4717','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14732','Товар 4718','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14733','Товар 4719','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14734','Товар 4720','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14735','Товар 4721','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14736','Товар 4722','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14737','Товар 4723','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14738','Товар 4724','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14739','Товар 4725','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14740','Товар 4726','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14741','Товар 4727','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14742','Товар 4728','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14743','Товар 4729','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14744','Товар 4730','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14745','Товар 4731','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14746','Товар 4732','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14747','Товар 4733','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14748','Товар 4734','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14749','Товар 4735','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14750','Товар 4736','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14751','Товар 4737','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14752','Товар 4738','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14753','Товар 4739','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14754','Товар 4740','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14755','Товар 4741','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14756','Товар 4742','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14757','Товар 4743','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14758','Товар 4744','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14759','Товар 4745','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14760','Товар 4746','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14761','Товар 4747','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14762','Товар 4748','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14763','Товар 4749','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14764','Товар 4750','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14765','Товар 4751','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14766','Товар 4752','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14767','Товар 4753','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14768','Товар 4754','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14769','Товар 4755','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14770','Товар 4756','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14771','Товар 4757','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14772','Товар 4758','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14773','Товар 4759','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14774','Товар 4760','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14775','Товар 4761','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14776','Товар 4762','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14777','Товар 4763','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14778','Товар 4764','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14779','Товар 4765','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14780','Товар 4766','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14781','Товар 4767','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14782','Товар 4768','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14783','Товар 4769','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14784','Товар 4770','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14785','Товар 4771','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14786','Товар 4772','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14787','Товар 4773','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14788','Товар 4774','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14789','Товар 4775','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14790','Товар 4776','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14791','Товар 4777','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14792','Товар 4778','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14793','Товар 4779','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14794','Товар 4780','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14795','Товар 4781','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14796','Товар 4782','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14797','Товар 4783','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14798','Товар 4784','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14799','Товар 4785','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14800','Товар 4786','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14801','Товар 4787','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14802','Товар 4788','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14803','Товар 4789','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14804','Товар 4790','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14805','Товар 4791','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14806','Товар 4792','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14807','Товар 4793','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14808','Товар 4794','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14809','Товар 4795','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14810','Товар 4796','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14811','Товар 4797','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14812','Товар 4798','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14813','Товар 4799','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14814','Товар 4800','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14815','Товар 4801','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14816','Товар 4802','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14817','Товар 4803','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14818','Товар 4804','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14819','Товар 4805','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14820','Товар 4806','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14821','Товар 4807','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14822','Товар 4808','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14823','Товар 4809','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14824','Товар 4810','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14825','Товар 4811','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14826','Товар 4812','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14827','Товар 4813','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14828','Товар 4814','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14829','Товар 4815','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14830','Товар 4816','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14831','Товар 4817','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14832','Товар 4818','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14833','Товар 4819','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14834','Товар 4820','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14835','Товар 4821','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14836','Товар 4822','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14837','Товар 4823','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14838','Товар 4824','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14839','Товар 4825','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14840','Товар 4826','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14841','Товар 4827','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14842','Товар 4828','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14843','Товар 4829','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14844','Товар 4830','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14845','Товар 4831','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14846','Товар 4832','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14847','Товар 4833','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14848','Товар 4834','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14849','Товар 4835','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14850','Товар 4836','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14851','Товар 4837','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14852','Товар 4838','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14853','Товар 4839','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14854','Товар 4840','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14855','Товар 4841','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14856','Товар 4842','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14857','Товар 4843','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14858','Товар 4844','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14859','Товар 4845','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14860','Товар 4846','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14861','Товар 4847','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14862','Товар 4848','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14863','Товар 4849','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14864','Товар 4850','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14865','Товар 4851','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14866','Товар 4852','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14867','Товар 4853','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14868','Товар 4854','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14869','Товар 4855','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14870','Товар 4856','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14871','Товар 4857','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14872','Товар 4858','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14873','Товар 4859','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14874','Товар 4860','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14875','Товар 4861','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14876','Товар 4862','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14877','Товар 4863','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14878','Товар 4864','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14879','Товар 4865','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14880','Товар 4866','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14881','Товар 4867','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14882','Товар 4868','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14883','Товар 4869','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14884','Товар 4870','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14885','Товар 4871','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14886','Товар 4872','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14887','Товар 4873','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14888','Товар 4874','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14889','Товар 4875','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14890','Товар 4876','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14891','Товар 4877','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14892','Товар 4878','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14893','Товар 4879','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14894','Товар 4880','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14895','Товар 4881','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14896','Товар 4882','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14897','Товар 4883','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14898','Товар 4884','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14899','Товар 4885','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14900','Товар 4886','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14901','Товар 4887','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14902','Товар 4888','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14903','Товар 4889','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14904','Товар 4890','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14905','Товар 4891','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14906','Товар 4892','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14907','Товар 4893','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14908','Товар 4894','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14909','Товар 4895','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14910','Товар 4896','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14911','Товар 4897','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14912','Товар 4898','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14913','Товар 4899','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14914','Товар 4900','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14915','Товар 4901','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14916','Товар 4902','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14917','Товар 4903','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14918','Товар 4904','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14919','Товар 4905','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14920','Товар 4906','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14921','Товар 4907','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14922','Товар 4908','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14923','Товар 4909','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14924','Товар 4910','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14925','Товар 4911','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14926','Товар 4912','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14927','Товар 4913','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14928','Товар 4914','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14929','Товар 4915','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14930','Товар 4916','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14931','Товар 4917','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14932','Товар 4918','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14933','Товар 4919','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14934','Товар 4920','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14935','Товар 4921','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14936','Товар 4922','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14937','Товар 4923','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14938','Товар 4924','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14939','Товар 4925','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14940','Товар 4926','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14941','Товар 4927','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14942','Товар 4928','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14943','Товар 4929','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14944','Товар 4930','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14945','Товар 4931','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14946','Товар 4932','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14947','Товар 4933','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14948','Товар 4934','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14949','Товар 4935','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14950','Товар 4936','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14951','Товар 4937','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14952','Товар 4938','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14953','Товар 4939','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14954','Товар 4940','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14955','Товар 4941','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14956','Товар 4942','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14957','Товар 4943','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14958','Товар 4944','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14959','Товар 4945','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14960','Товар 4946','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14961','Товар 4947','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14962','Товар 4948','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14963','Товар 4949','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14964','Товар 4950','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14965','Товар 4951','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14966','Товар 4952','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14967','Товар 4953','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14968','Товар 4954','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14969','Товар 4955','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14970','Товар 4956','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14971','Товар 4957','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14972','Товар 4958','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14973','Товар 4959','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14974','Товар 4960','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14975','Товар 4961','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14976','Товар 4962','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14977','Товар 4963','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14978','Товар 4964','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14979','Товар 4965','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14980','Товар 4966','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14981','Товар 4967','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14982','Товар 4968','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14983','Товар 4969','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14984','Товар 4970','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14985','Товар 4971','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14986','Товар 4972','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14987','Товар 4973','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14988','Товар 4974','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14989','Товар 4975','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14990','Товар 4976','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14991','Товар 4977','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14992','Товар 4978','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14993','Товар 4979','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14994','Товар 4980','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14995','Товар 4981','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14996','Товар 4982','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14997','Товар 4983','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14998','Товар 4984','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('14999','Товар 4985','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15000','Товар 4986','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15001','Товар 4987','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15002','Товар 4988','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15003','Товар 4989','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15004','Товар 4990','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15005','Товар 4991','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15006','Товар 4992','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15007','Товар 4993','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15008','Товар 4994','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15009','Товар 4995','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15010','Товар 4996','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15011','Товар 4997','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15012','Товар 4998','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15013','Товар 4999','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15014','Товар 5000','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15015','Товар 5001','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15016','Товар 5002','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15017','Товар 5003','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15018','Товар 5004','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15019','Товар 5005','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15020','Товар 5006','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15021','Товар 5007','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15022','Товар 5008','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15023','Товар 5009','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15024','Товар 5010','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15025','Товар 5011','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15026','Товар 5012','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15027','Товар 5013','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15028','Товар 5014','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15029','Товар 5015','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15030','Товар 5016','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15031','Товар 5017','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15032','Товар 5018','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15033','Товар 5019','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15034','Товар 5020','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15035','Товар 5021','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15036','Товар 5022','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15037','Товар 5023','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15038','Товар 5024','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15039','Товар 5025','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15040','Товар 5026','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15041','Товар 5027','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15042','Товар 5028','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15043','Товар 5029','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15044','Товар 5030','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15045','Товар 5031','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15046','Товар 5032','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15047','Товар 5033','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15048','Товар 5034','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15049','Товар 5035','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15050','Товар 5036','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15051','Товар 5037','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15052','Товар 5038','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15053','Товар 5039','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15054','Товар 5040','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15055','Товар 5041','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15056','Товар 5042','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15057','Товар 5043','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15058','Товар 5044','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15059','Товар 5045','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15060','Товар 5046','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15061','Товар 5047','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15062','Товар 5048','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15063','Товар 5049','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15064','Товар 5050','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15065','Товар 5051','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15066','Товар 5052','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15067','Товар 5053','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15068','Товар 5054','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15069','Товар 5055','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15070','Товар 5056','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15071','Товар 5057','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15072','Товар 5058','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15073','Товар 5059','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15074','Товар 5060','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15075','Товар 5061','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15076','Товар 5062','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15077','Товар 5063','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15078','Товар 5064','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15079','Товар 5065','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15080','Товар 5066','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15081','Товар 5067','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15082','Товар 5068','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15083','Товар 5069','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15084','Товар 5070','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15085','Товар 5071','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15086','Товар 5072','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15087','Товар 5073','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15088','Товар 5074','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15089','Товар 5075','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15090','Товар 5076','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15091','Товар 5077','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15092','Товар 5078','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15093','Товар 5079','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15094','Товар 5080','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15095','Товар 5081','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15096','Товар 5082','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15097','Товар 5083','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15098','Товар 5084','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15099','Товар 5085','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15100','Товар 5086','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15101','Товар 5087','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15102','Товар 5088','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15103','Товар 5089','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15104','Товар 5090','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15105','Товар 5091','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15106','Товар 5092','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15107','Товар 5093','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15108','Товар 5094','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15109','Товар 5095','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15110','Товар 5096','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15111','Товар 5097','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15112','Товар 5098','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15113','Товар 5099','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15114','Товар 5100','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15115','Товар 5101','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15116','Товар 5102','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15117','Товар 5103','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15118','Товар 5104','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15119','Товар 5105','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15120','Товар 5106','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15121','Товар 5107','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15122','Товар 5108','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15123','Товар 5109','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15124','Товар 5110','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15125','Товар 5111','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15126','Товар 5112','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15127','Товар 5113','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15128','Товар 5114','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15129','Товар 5115','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15130','Товар 5116','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15131','Товар 5117','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15132','Товар 5118','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15133','Товар 5119','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15134','Товар 5120','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15135','Товар 5121','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15136','Товар 5122','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15137','Товар 5123','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15138','Товар 5124','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15139','Товар 5125','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15140','Товар 5126','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15141','Товар 5127','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15142','Товар 5128','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15143','Товар 5129','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15144','Товар 5130','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15145','Товар 5131','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15146','Товар 5132','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15147','Товар 5133','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15148','Товар 5134','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15149','Товар 5135','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15150','Товар 5136','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15151','Товар 5137','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15152','Товар 5138','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15153','Товар 5139','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15154','Товар 5140','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15155','Товар 5141','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15156','Товар 5142','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15157','Товар 5143','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15158','Товар 5144','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15159','Товар 5145','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15160','Товар 5146','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15161','Товар 5147','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15162','Товар 5148','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15163','Товар 5149','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15164','Товар 5150','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15165','Товар 5151','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15166','Товар 5152','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15167','Товар 5153','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15168','Товар 5154','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15169','Товар 5155','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15170','Товар 5156','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15171','Товар 5157','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15172','Товар 5158','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15173','Товар 5159','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15174','Товар 5160','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15175','Товар 5161','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15176','Товар 5162','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15177','Товар 5163','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15178','Товар 5164','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15179','Товар 5165','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15180','Товар 5166','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15181','Товар 5167','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15182','Товар 5168','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15183','Товар 5169','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15184','Товар 5170','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15185','Товар 5171','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15186','Товар 5172','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15187','Товар 5173','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15188','Товар 5174','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15189','Товар 5175','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15190','Товар 5176','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15191','Товар 5177','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15192','Товар 5178','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15193','Товар 5179','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15194','Товар 5180','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15195','Товар 5181','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15196','Товар 5182','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15197','Товар 5183','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15198','Товар 5184','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15199','Товар 5185','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15200','Товар 5186','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15201','Товар 5187','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15202','Товар 5188','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15203','Товар 5189','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15204','Товар 5190','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15205','Товар 5191','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15206','Товар 5192','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15207','Товар 5193','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15208','Товар 5194','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15209','Товар 5195','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15210','Товар 5196','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15211','Товар 5197','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15212','Товар 5198','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15213','Товар 5199','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15214','Товар 5200','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15215','Товар 5201','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15216','Товар 5202','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15217','Товар 5203','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15218','Товар 5204','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15219','Товар 5205','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15220','Товар 5206','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15221','Товар 5207','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15222','Товар 5208','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15223','Товар 5209','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15224','Товар 5210','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15225','Товар 5211','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15226','Товар 5212','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15227','Товар 5213','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15228','Товар 5214','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15229','Товар 5215','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15230','Товар 5216','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15231','Товар 5217','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15232','Товар 5218','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15233','Товар 5219','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15234','Товар 5220','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15235','Товар 5221','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15236','Товар 5222','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15237','Товар 5223','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15238','Товар 5224','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15239','Товар 5225','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15240','Товар 5226','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15241','Товар 5227','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15242','Товар 5228','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15243','Товар 5229','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15244','Товар 5230','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15245','Товар 5231','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15246','Товар 5232','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15247','Товар 5233','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15248','Товар 5234','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15249','Товар 5235','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15250','Товар 5236','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15251','Товар 5237','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15252','Товар 5238','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15253','Товар 5239','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15254','Товар 5240','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15255','Товар 5241','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15256','Товар 5242','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15257','Товар 5243','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15258','Товар 5244','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15259','Товар 5245','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15260','Товар 5246','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15261','Товар 5247','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15262','Товар 5248','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15263','Товар 5249','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15264','Товар 5250','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15265','Товар 5251','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15266','Товар 5252','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15267','Товар 5253','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15268','Товар 5254','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15269','Товар 5255','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15270','Товар 5256','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15271','Товар 5257','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15272','Товар 5258','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15273','Товар 5259','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15274','Товар 5260','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15275','Товар 5261','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15276','Товар 5262','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15277','Товар 5263','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15278','Товар 5264','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15279','Товар 5265','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15280','Товар 5266','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15281','Товар 5267','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15282','Товар 5268','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15283','Товар 5269','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15284','Товар 5270','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15285','Товар 5271','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15286','Товар 5272','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15287','Товар 5273','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15288','Товар 5274','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15289','Товар 5275','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15290','Товар 5276','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15291','Товар 5277','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15292','Товар 5278','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15293','Товар 5279','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15294','Товар 5280','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15295','Товар 5281','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15296','Товар 5282','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15297','Товар 5283','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15298','Товар 5284','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15299','Товар 5285','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15300','Товар 5286','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15301','Товар 5287','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15302','Товар 5288','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15303','Товар 5289','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15304','Товар 5290','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15305','Товар 5291','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15306','Товар 5292','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15307','Товар 5293','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15308','Товар 5294','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15309','Товар 5295','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15310','Товар 5296','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15311','Товар 5297','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15312','Товар 5298','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15313','Товар 5299','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15314','Товар 5300','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15315','Товар 5301','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15316','Товар 5302','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15317','Товар 5303','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15318','Товар 5304','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15319','Товар 5305','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15320','Товар 5306','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15321','Товар 5307','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15322','Товар 5308','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15323','Товар 5309','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15324','Товар 5310','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15325','Товар 5311','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15326','Товар 5312','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15327','Товар 5313','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15328','Товар 5314','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15329','Товар 5315','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15330','Товар 5316','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15331','Товар 5317','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15332','Товар 5318','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15333','Товар 5319','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15334','Товар 5320','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15335','Товар 5321','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15336','Товар 5322','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15337','Товар 5323','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15338','Товар 5324','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15339','Товар 5325','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15340','Товар 5326','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15341','Товар 5327','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15342','Товар 5328','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15343','Товар 5329','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15344','Товар 5330','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15345','Товар 5331','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15346','Товар 5332','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15347','Товар 5333','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15348','Товар 5334','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15349','Товар 5335','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15350','Товар 5336','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15351','Товар 5337','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15352','Товар 5338','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15353','Товар 5339','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15354','Товар 5340','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15355','Товар 5341','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15356','Товар 5342','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15357','Товар 5343','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15358','Товар 5344','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15359','Товар 5345','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15360','Товар 5346','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15361','Товар 5347','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15362','Товар 5348','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15363','Товар 5349','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15364','Товар 5350','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15365','Товар 5351','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15366','Товар 5352','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15367','Товар 5353','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15368','Товар 5354','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15369','Товар 5355','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15370','Товар 5356','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15371','Товар 5357','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15372','Товар 5358','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15373','Товар 5359','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15374','Товар 5360','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15375','Товар 5361','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15376','Товар 5362','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15377','Товар 5363','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15378','Товар 5364','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15379','Товар 5365','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15380','Товар 5366','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15381','Товар 5367','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15382','Товар 5368','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15383','Товар 5369','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15384','Товар 5370','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15385','Товар 5371','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15386','Товар 5372','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15387','Товар 5373','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15388','Товар 5374','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15389','Товар 5375','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15390','Товар 5376','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15391','Товар 5377','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15392','Товар 5378','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15393','Товар 5379','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15394','Товар 5380','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15395','Товар 5381','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15396','Товар 5382','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15397','Товар 5383','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15398','Товар 5384','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15399','Товар 5385','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15400','Товар 5386','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15401','Товар 5387','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15402','Товар 5388','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15403','Товар 5389','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15404','Товар 5390','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15405','Товар 5391','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15406','Товар 5392','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15407','Товар 5393','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15408','Товар 5394','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15409','Товар 5395','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15410','Товар 5396','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15411','Товар 5397','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15412','Товар 5398','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15413','Товар 5399','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15414','Товар 5400','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15415','Товар 5401','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15416','Товар 5402','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15417','Товар 5403','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15418','Товар 5404','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15419','Товар 5405','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15420','Товар 5406','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15421','Товар 5407','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15422','Товар 5408','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15423','Товар 5409','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15424','Товар 5410','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15425','Товар 5411','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15426','Товар 5412','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15427','Товар 5413','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15428','Товар 5414','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15429','Товар 5415','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15430','Товар 5416','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15431','Товар 5417','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15432','Товар 5418','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15433','Товар 5419','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15434','Товар 5420','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15435','Товар 5421','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15436','Товар 5422','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15437','Товар 5423','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15438','Товар 5424','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15439','Товар 5425','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15440','Товар 5426','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15441','Товар 5427','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15442','Товар 5428','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15443','Товар 5429','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15444','Товар 5430','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15445','Товар 5431','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15446','Товар 5432','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15447','Товар 5433','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15448','Товар 5434','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15449','Товар 5435','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15450','Товар 5436','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15451','Товар 5437','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15452','Товар 5438','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15453','Товар 5439','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15454','Товар 5440','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15455','Товар 5441','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15456','Товар 5442','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15457','Товар 5443','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15458','Товар 5444','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15459','Товар 5445','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15460','Товар 5446','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15461','Товар 5447','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15462','Товар 5448','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15463','Товар 5449','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15464','Товар 5450','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15465','Товар 5451','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15466','Товар 5452','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15467','Товар 5453','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15468','Товар 5454','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15469','Товар 5455','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15470','Товар 5456','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15471','Товар 5457','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15472','Товар 5458','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15473','Товар 5459','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15474','Товар 5460','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15475','Товар 5461','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15476','Товар 5462','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15477','Товар 5463','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15478','Товар 5464','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15479','Товар 5465','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15480','Товар 5466','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15481','Товар 5467','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15482','Товар 5468','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15483','Товар 5469','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15484','Товар 5470','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15485','Товар 5471','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15486','Товар 5472','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15487','Товар 5473','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15488','Товар 5474','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15489','Товар 5475','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15490','Товар 5476','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15491','Товар 5477','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15492','Товар 5478','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15493','Товар 5479','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15494','Товар 5480','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15495','Товар 5481','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15496','Товар 5482','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15497','Товар 5483','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15498','Товар 5484','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15499','Товар 5485','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15500','Товар 5486','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15501','Товар 5487','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15502','Товар 5488','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15503','Товар 5489','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15504','Товар 5490','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15505','Товар 5491','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15506','Товар 5492','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15507','Товар 5493','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15508','Товар 5494','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15509','Товар 5495','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15510','Товар 5496','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15511','Товар 5497','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15512','Товар 5498','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15513','Товар 5499','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15514','Товар 5500','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15515','Товар 5501','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15516','Товар 5502','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15517','Товар 5503','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15518','Товар 5504','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15519','Товар 5505','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15520','Товар 5506','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15521','Товар 5507','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15522','Товар 5508','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15523','Товар 5509','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15524','Товар 5510','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15525','Товар 5511','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15526','Товар 5512','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15527','Товар 5513','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15528','Товар 5514','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15529','Товар 5515','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15530','Товар 5516','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15531','Товар 5517','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15532','Товар 5518','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15533','Товар 5519','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15534','Товар 5520','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15535','Товар 5521','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15536','Товар 5522','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15537','Товар 5523','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15538','Товар 5524','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15539','Товар 5525','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15540','Товар 5526','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15541','Товар 5527','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15542','Товар 5528','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15543','Товар 5529','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15544','Товар 5530','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15545','Товар 5531','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15546','Товар 5532','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15547','Товар 5533','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15548','Товар 5534','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15549','Товар 5535','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15550','Товар 5536','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15551','Товар 5537','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15552','Товар 5538','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15553','Товар 5539','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15554','Товар 5540','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15555','Товар 5541','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15556','Товар 5542','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15557','Товар 5543','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15558','Товар 5544','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15559','Товар 5545','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15560','Товар 5546','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15561','Товар 5547','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15562','Товар 5548','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15563','Товар 5549','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15564','Товар 5550','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15565','Товар 5551','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15566','Товар 5552','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15567','Товар 5553','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15568','Товар 5554','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15569','Товар 5555','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15570','Товар 5556','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15571','Товар 5557','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15572','Товар 5558','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15573','Товар 5559','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15574','Товар 5560','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15575','Товар 5561','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15576','Товар 5562','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15577','Товар 5563','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15578','Товар 5564','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15579','Товар 5565','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15580','Товар 5566','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15581','Товар 5567','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15582','Товар 5568','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15583','Товар 5569','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15584','Товар 5570','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15585','Товар 5571','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15586','Товар 5572','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15587','Товар 5573','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15588','Товар 5574','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15589','Товар 5575','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15590','Товар 5576','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15591','Товар 5577','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15592','Товар 5578','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15593','Товар 5579','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15594','Товар 5580','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15595','Товар 5581','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15596','Товар 5582','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15597','Товар 5583','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15598','Товар 5584','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15599','Товар 5585','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15600','Товар 5586','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15601','Товар 5587','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15602','Товар 5588','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15603','Товар 5589','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15604','Товар 5590','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15605','Товар 5591','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15606','Товар 5592','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15607','Товар 5593','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15608','Товар 5594','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15609','Товар 5595','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15610','Товар 5596','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15611','Товар 5597','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15612','Товар 5598','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15613','Товар 5599','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15614','Товар 5600','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15615','Товар 5601','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15616','Товар 5602','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15617','Товар 5603','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15618','Товар 5604','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15619','Товар 5605','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15620','Товар 5606','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15621','Товар 5607','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15622','Товар 5608','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15623','Товар 5609','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15624','Товар 5610','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15625','Товар 5611','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15626','Товар 5612','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15627','Товар 5613','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15628','Товар 5614','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15629','Товар 5615','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15630','Товар 5616','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15631','Товар 5617','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15632','Товар 5618','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15633','Товар 5619','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15634','Товар 5620','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15635','Товар 5621','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15636','Товар 5622','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15637','Товар 5623','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15638','Товар 5624','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15639','Товар 5625','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15640','Товар 5626','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15641','Товар 5627','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15642','Товар 5628','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15643','Товар 5629','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15644','Товар 5630','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15645','Товар 5631','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15646','Товар 5632','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15647','Товар 5633','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15648','Товар 5634','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15649','Товар 5635','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15650','Товар 5636','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15651','Товар 5637','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15652','Товар 5638','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15653','Товар 5639','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15654','Товар 5640','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15655','Товар 5641','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15656','Товар 5642','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15657','Товар 5643','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15658','Товар 5644','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15659','Товар 5645','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15660','Товар 5646','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15661','Товар 5647','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15662','Товар 5648','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15663','Товар 5649','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15664','Товар 5650','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15665','Товар 5651','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15666','Товар 5652','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15667','Товар 5653','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15668','Товар 5654','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15669','Товар 5655','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15670','Товар 5656','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15671','Товар 5657','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15672','Товар 5658','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15673','Товар 5659','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15674','Товар 5660','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15675','Товар 5661','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15676','Товар 5662','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15677','Товар 5663','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15678','Товар 5664','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15679','Товар 5665','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15680','Товар 5666','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15681','Товар 5667','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15682','Товар 5668','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15683','Товар 5669','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15684','Товар 5670','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15685','Товар 5671','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15686','Товар 5672','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15687','Товар 5673','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15688','Товар 5674','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15689','Товар 5675','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15690','Товар 5676','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15691','Товар 5677','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15692','Товар 5678','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15693','Товар 5679','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15694','Товар 5680','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15695','Товар 5681','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15696','Товар 5682','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15697','Товар 5683','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15698','Товар 5684','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15699','Товар 5685','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15700','Товар 5686','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15701','Товар 5687','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15702','Товар 5688','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15703','Товар 5689','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15704','Товар 5690','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15705','Товар 5691','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15706','Товар 5692','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15707','Товар 5693','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15708','Товар 5694','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15709','Товар 5695','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15710','Товар 5696','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15711','Товар 5697','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15712','Товар 5698','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15713','Товар 5699','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15714','Товар 5700','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15715','Товар 5701','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15716','Товар 5702','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15717','Товар 5703','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15718','Товар 5704','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15719','Товар 5705','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15720','Товар 5706','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15721','Товар 5707','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15722','Товар 5708','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15723','Товар 5709','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15724','Товар 5710','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15725','Товар 5711','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15726','Товар 5712','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15727','Товар 5713','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15728','Товар 5714','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15729','Товар 5715','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15730','Товар 5716','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15731','Товар 5717','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15732','Товар 5718','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15733','Товар 5719','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15734','Товар 5720','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15735','Товар 5721','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15736','Товар 5722','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15737','Товар 5723','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15738','Товар 5724','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15739','Товар 5725','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15740','Товар 5726','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15741','Товар 5727','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15742','Товар 5728','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15743','Товар 5729','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15744','Товар 5730','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15745','Товар 5731','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15746','Товар 5732','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15747','Товар 5733','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15748','Товар 5734','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15749','Товар 5735','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15750','Товар 5736','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15751','Товар 5737','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15752','Товар 5738','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15753','Товар 5739','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15754','Товар 5740','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15755','Товар 5741','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15756','Товар 5742','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15757','Товар 5743','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15758','Товар 5744','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15759','Товар 5745','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15760','Товар 5746','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15761','Товар 5747','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15762','Товар 5748','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15763','Товар 5749','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15764','Товар 5750','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15765','Товар 5751','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15766','Товар 5752','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15767','Товар 5753','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15768','Товар 5754','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15769','Товар 5755','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15770','Товар 5756','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15771','Товар 5757','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15772','Товар 5758','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15773','Товар 5759','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15774','Товар 5760','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15775','Товар 5761','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15776','Товар 5762','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15777','Товар 5763','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15778','Товар 5764','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15779','Товар 5765','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15780','Товар 5766','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15781','Товар 5767','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15782','Товар 5768','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15783','Товар 5769','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15784','Товар 5770','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15785','Товар 5771','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15786','Товар 5772','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15787','Товар 5773','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15788','Товар 5774','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15789','Товар 5775','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15790','Товар 5776','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15791','Товар 5777','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15792','Товар 5778','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15793','Товар 5779','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15794','Товар 5780','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15795','Товар 5781','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15796','Товар 5782','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15797','Товар 5783','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15798','Товар 5784','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15799','Товар 5785','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15800','Товар 5786','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15801','Товар 5787','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15802','Товар 5788','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15803','Товар 5789','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15804','Товар 5790','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15805','Товар 5791','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15806','Товар 5792','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15807','Товар 5793','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15808','Товар 5794','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15809','Товар 5795','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15810','Товар 5796','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15811','Товар 5797','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15812','Товар 5798','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15813','Товар 5799','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15814','Товар 5800','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15815','Товар 5801','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15816','Товар 5802','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15817','Товар 5803','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15818','Товар 5804','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15819','Товар 5805','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15820','Товар 5806','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15821','Товар 5807','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15822','Товар 5808','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15823','Товар 5809','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15824','Товар 5810','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15825','Товар 5811','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15826','Товар 5812','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15827','Товар 5813','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15828','Товар 5814','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15829','Товар 5815','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15830','Товар 5816','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15831','Товар 5817','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15832','Товар 5818','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15833','Товар 5819','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15834','Товар 5820','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15835','Товар 5821','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15836','Товар 5822','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15837','Товар 5823','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15838','Товар 5824','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15839','Товар 5825','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15840','Товар 5826','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15841','Товар 5827','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15842','Товар 5828','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15843','Товар 5829','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15844','Товар 5830','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15845','Товар 5831','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15846','Товар 5832','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15847','Товар 5833','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15848','Товар 5834','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15849','Товар 5835','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15850','Товар 5836','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15851','Товар 5837','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15852','Товар 5838','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15853','Товар 5839','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15854','Товар 5840','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15855','Товар 5841','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15856','Товар 5842','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15857','Товар 5843','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15858','Товар 5844','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15859','Товар 5845','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15860','Товар 5846','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15861','Товар 5847','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15862','Товар 5848','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15863','Товар 5849','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15864','Товар 5850','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15865','Товар 5851','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15866','Товар 5852','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15867','Товар 5853','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15868','Товар 5854','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15869','Товар 5855','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15870','Товар 5856','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15871','Товар 5857','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15872','Товар 5858','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15873','Товар 5859','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15874','Товар 5860','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15875','Товар 5861','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15876','Товар 5862','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15877','Товар 5863','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15878','Товар 5864','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15879','Товар 5865','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15880','Товар 5866','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15881','Товар 5867','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15882','Товар 5868','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15883','Товар 5869','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15884','Товар 5870','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15885','Товар 5871','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15886','Товар 5872','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15887','Товар 5873','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15888','Товар 5874','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15889','Товар 5875','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15890','Товар 5876','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15891','Товар 5877','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15892','Товар 5878','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15893','Товар 5879','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15894','Товар 5880','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15895','Товар 5881','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15896','Товар 5882','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15897','Товар 5883','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15898','Товар 5884','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15899','Товар 5885','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15900','Товар 5886','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15901','Товар 5887','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15902','Товар 5888','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15903','Товар 5889','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15904','Товар 5890','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15905','Товар 5891','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15906','Товар 5892','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15907','Товар 5893','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15908','Товар 5894','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15909','Товар 5895','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15910','Товар 5896','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15911','Товар 5897','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15912','Товар 5898','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15913','Товар 5899','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15914','Товар 5900','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15915','Товар 5901','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15916','Товар 5902','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15917','Товар 5903','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15918','Товар 5904','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15919','Товар 5905','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15920','Товар 5906','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15921','Товар 5907','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15922','Товар 5908','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15923','Товар 5909','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15924','Товар 5910','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15925','Товар 5911','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15926','Товар 5912','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15927','Товар 5913','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15928','Товар 5914','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15929','Товар 5915','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15930','Товар 5916','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15931','Товар 5917','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15932','Товар 5918','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15933','Товар 5919','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15934','Товар 5920','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15935','Товар 5921','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15936','Товар 5922','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15937','Товар 5923','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15938','Товар 5924','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15939','Товар 5925','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15940','Товар 5926','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15941','Товар 5927','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15942','Товар 5928','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15943','Товар 5929','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15944','Товар 5930','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15945','Товар 5931','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15946','Товар 5932','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15947','Товар 5933','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15948','Товар 5934','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15949','Товар 5935','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15950','Товар 5936','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15951','Товар 5937','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15952','Товар 5938','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15953','Товар 5939','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15954','Товар 5940','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15955','Товар 5941','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15956','Товар 5942','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15957','Товар 5943','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15958','Товар 5944','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15959','Товар 5945','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15960','Товар 5946','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15961','Товар 5947','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15962','Товар 5948','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15963','Товар 5949','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15964','Товар 5950','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15965','Товар 5951','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15966','Товар 5952','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15967','Товар 5953','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15968','Товар 5954','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15969','Товар 5955','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15970','Товар 5956','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15971','Товар 5957','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15972','Товар 5958','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15973','Товар 5959','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15974','Товар 5960','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15975','Товар 5961','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15976','Товар 5962','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15977','Товар 5963','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15978','Товар 5964','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15979','Товар 5965','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15980','Товар 5966','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15981','Товар 5967','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15982','Товар 5968','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15983','Товар 5969','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15984','Товар 5970','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15985','Товар 5971','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15986','Товар 5972','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15987','Товар 5973','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15988','Товар 5974','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15989','Товар 5975','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15990','Товар 5976','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15991','Товар 5977','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15992','Товар 5978','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15993','Товар 5979','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15994','Товар 5980','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15995','Товар 5981','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15996','Товар 5982','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15997','Товар 5983','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15998','Товар 5984','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('15999','Товар 5985','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16000','Товар 5986','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16001','Товар 5987','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16002','Товар 5988','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16003','Товар 5989','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16004','Товар 5990','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16005','Товар 5991','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16006','Товар 5992','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16007','Товар 5993','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16008','Товар 5994','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16009','Товар 5995','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16010','Товар 5996','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16011','Товар 5997','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16012','Товар 5998','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16013','Товар 5999','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16014','Товар 6000','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16015','Товар 6001','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16016','Товар 6002','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16017','Товар 6003','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16018','Товар 6004','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16019','Товар 6005','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16020','Товар 6006','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16021','Товар 6007','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16022','Товар 6008','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16023','Товар 6009','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16024','Товар 6010','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16025','Товар 6011','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16026','Товар 6012','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16027','Товар 6013','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16028','Товар 6014','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16029','Товар 6015','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16030','Товар 6016','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16031','Товар 6017','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16032','Товар 6018','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16033','Товар 6019','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16034','Товар 6020','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16035','Товар 6021','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16036','Товар 6022','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16037','Товар 6023','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16038','Товар 6024','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16039','Товар 6025','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16040','Товар 6026','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16041','Товар 6027','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16042','Товар 6028','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16043','Товар 6029','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16044','Товар 6030','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16045','Товар 6031','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16046','Товар 6032','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16047','Товар 6033','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16048','Товар 6034','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16049','Товар 6035','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16050','Товар 6036','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16051','Товар 6037','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16052','Товар 6038','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16053','Товар 6039','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16054','Товар 6040','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16055','Товар 6041','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16056','Товар 6042','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16057','Товар 6043','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16058','Товар 6044','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16059','Товар 6045','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16060','Товар 6046','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16061','Товар 6047','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16062','Товар 6048','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16063','Товар 6049','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16064','Товар 6050','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16065','Товар 6051','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16066','Товар 6052','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16067','Товар 6053','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16068','Товар 6054','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16069','Товар 6055','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16070','Товар 6056','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16071','Товар 6057','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16072','Товар 6058','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16073','Товар 6059','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16074','Товар 6060','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16075','Товар 6061','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16076','Товар 6062','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16077','Товар 6063','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16078','Товар 6064','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16079','Товар 6065','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16080','Товар 6066','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16081','Товар 6067','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16082','Товар 6068','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16083','Товар 6069','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16084','Товар 6070','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16085','Товар 6071','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16086','Товар 6072','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16087','Товар 6073','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16088','Товар 6074','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16089','Товар 6075','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16090','Товар 6076','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16091','Товар 6077','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16092','Товар 6078','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16093','Товар 6079','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16094','Товар 6080','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16095','Товар 6081','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16096','Товар 6082','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16097','Товар 6083','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16098','Товар 6084','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16099','Товар 6085','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16100','Товар 6086','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16101','Товар 6087','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16102','Товар 6088','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16103','Товар 6089','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16104','Товар 6090','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16105','Товар 6091','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16106','Товар 6092','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16107','Товар 6093','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16108','Товар 6094','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16109','Товар 6095','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16110','Товар 6096','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16111','Товар 6097','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16112','Товар 6098','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16113','Товар 6099','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16114','Товар 6100','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16115','Товар 6101','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16116','Товар 6102','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16117','Товар 6103','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16118','Товар 6104','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16119','Товар 6105','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16120','Товар 6106','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16121','Товар 6107','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16122','Товар 6108','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16123','Товар 6109','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16124','Товар 6110','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16125','Товар 6111','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16126','Товар 6112','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16127','Товар 6113','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16128','Товар 6114','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16129','Товар 6115','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16130','Товар 6116','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16131','Товар 6117','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16132','Товар 6118','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16133','Товар 6119','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16134','Товар 6120','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16135','Товар 6121','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16136','Товар 6122','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16137','Товар 6123','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16138','Товар 6124','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16139','Товар 6125','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16140','Товар 6126','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16141','Товар 6127','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16142','Товар 6128','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16143','Товар 6129','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16144','Товар 6130','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16145','Товар 6131','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16146','Товар 6132','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16147','Товар 6133','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16148','Товар 6134','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16149','Товар 6135','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16150','Товар 6136','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16151','Товар 6137','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16152','Товар 6138','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16153','Товар 6139','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16154','Товар 6140','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16155','Товар 6141','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16156','Товар 6142','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16157','Товар 6143','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16158','Товар 6144','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16159','Товар 6145','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16160','Товар 6146','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16161','Товар 6147','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16162','Товар 6148','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16163','Товар 6149','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16164','Товар 6150','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16165','Товар 6151','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16166','Товар 6152','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16167','Товар 6153','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16168','Товар 6154','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16169','Товар 6155','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16170','Товар 6156','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16171','Товар 6157','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16172','Товар 6158','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16173','Товар 6159','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16174','Товар 6160','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16175','Товар 6161','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16176','Товар 6162','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16177','Товар 6163','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16178','Товар 6164','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16179','Товар 6165','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16180','Товар 6166','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16181','Товар 6167','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16182','Товар 6168','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16183','Товар 6169','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16184','Товар 6170','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16185','Товар 6171','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16186','Товар 6172','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16187','Товар 6173','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16188','Товар 6174','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16189','Товар 6175','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16190','Товар 6176','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16191','Товар 6177','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16192','Товар 6178','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16193','Товар 6179','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16194','Товар 6180','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16195','Товар 6181','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16196','Товар 6182','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16197','Товар 6183','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16198','Товар 6184','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16199','Товар 6185','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16200','Товар 6186','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16201','Товар 6187','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16202','Товар 6188','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16203','Товар 6189','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16204','Товар 6190','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16205','Товар 6191','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16206','Товар 6192','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16207','Товар 6193','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16208','Товар 6194','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16209','Товар 6195','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16210','Товар 6196','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16211','Товар 6197','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16212','Товар 6198','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16213','Товар 6199','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16214','Товар 6200','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16215','Товар 6201','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16216','Товар 6202','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16217','Товар 6203','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16218','Товар 6204','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16219','Товар 6205','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16220','Товар 6206','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16221','Товар 6207','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16222','Товар 6208','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16223','Товар 6209','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16224','Товар 6210','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16225','Товар 6211','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16226','Товар 6212','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16227','Товар 6213','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16228','Товар 6214','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16229','Товар 6215','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16230','Товар 6216','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16231','Товар 6217','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16232','Товар 6218','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16233','Товар 6219','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16234','Товар 6220','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16235','Товар 6221','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16236','Товар 6222','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16237','Товар 6223','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16238','Товар 6224','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16239','Товар 6225','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16240','Товар 6226','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16241','Товар 6227','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16242','Товар 6228','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16243','Товар 6229','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16244','Товар 6230','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16245','Товар 6231','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16246','Товар 6232','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16247','Товар 6233','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16248','Товар 6234','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16249','Товар 6235','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16250','Товар 6236','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16251','Товар 6237','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16252','Товар 6238','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16253','Товар 6239','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16254','Товар 6240','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16255','Товар 6241','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16256','Товар 6242','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16257','Товар 6243','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16258','Товар 6244','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16259','Товар 6245','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16260','Товар 6246','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16261','Товар 6247','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16262','Товар 6248','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16263','Товар 6249','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16264','Товар 6250','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16265','Товар 6251','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16266','Товар 6252','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16267','Товар 6253','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16268','Товар 6254','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16269','Товар 6255','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16270','Товар 6256','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16271','Товар 6257','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16272','Товар 6258','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16273','Товар 6259','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16274','Товар 6260','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16275','Товар 6261','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16276','Товар 6262','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16277','Товар 6263','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16278','Товар 6264','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16279','Товар 6265','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16280','Товар 6266','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16281','Товар 6267','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16282','Товар 6268','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16283','Товар 6269','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16284','Товар 6270','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16285','Товар 6271','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16286','Товар 6272','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16287','Товар 6273','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16288','Товар 6274','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16289','Товар 6275','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16290','Товар 6276','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16291','Товар 6277','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16292','Товар 6278','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16293','Товар 6279','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16294','Товар 6280','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16295','Товар 6281','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16296','Товар 6282','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16297','Товар 6283','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16298','Товар 6284','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16299','Товар 6285','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16300','Товар 6286','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16301','Товар 6287','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16302','Товар 6288','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16303','Товар 6289','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16304','Товар 6290','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16305','Товар 6291','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16306','Товар 6292','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16307','Товар 6293','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16308','Товар 6294','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16309','Товар 6295','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16310','Товар 6296','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16311','Товар 6297','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16312','Товар 6298','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16313','Товар 6299','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16314','Товар 6300','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16315','Товар 6301','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16316','Товар 6302','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16317','Товар 6303','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16318','Товар 6304','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16319','Товар 6305','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16320','Товар 6306','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16321','Товар 6307','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16322','Товар 6308','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16323','Товар 6309','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16324','Товар 6310','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16325','Товар 6311','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16326','Товар 6312','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16327','Товар 6313','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16328','Товар 6314','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16329','Товар 6315','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16330','Товар 6316','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16331','Товар 6317','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16332','Товар 6318','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16333','Товар 6319','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16334','Товар 6320','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16335','Товар 6321','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16336','Товар 6322','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16337','Товар 6323','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16338','Товар 6324','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16339','Товар 6325','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16340','Товар 6326','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16341','Товар 6327','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16342','Товар 6328','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16343','Товар 6329','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16344','Товар 6330','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16345','Товар 6331','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16346','Товар 6332','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16347','Товар 6333','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16348','Товар 6334','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16349','Товар 6335','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16350','Товар 6336','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16351','Товар 6337','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16352','Товар 6338','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16353','Товар 6339','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16354','Товар 6340','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16355','Товар 6341','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16356','Товар 6342','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16357','Товар 6343','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16358','Товар 6344','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16359','Товар 6345','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16360','Товар 6346','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16361','Товар 6347','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16362','Товар 6348','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16363','Товар 6349','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16364','Товар 6350','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16365','Товар 6351','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16366','Товар 6352','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16367','Товар 6353','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16368','Товар 6354','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16369','Товар 6355','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16370','Товар 6356','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16371','Товар 6357','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16372','Товар 6358','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16373','Товар 6359','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16374','Товар 6360','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16375','Товар 6361','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16376','Товар 6362','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16377','Товар 6363','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16378','Товар 6364','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16379','Товар 6365','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16380','Товар 6366','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16381','Товар 6367','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16382','Товар 6368','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16383','Товар 6369','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16384','Товар 6370','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16385','Товар 6371','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16386','Товар 6372','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16387','Товар 6373','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16388','Товар 6374','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16389','Товар 6375','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16390','Товар 6376','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16391','Товар 6377','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16392','Товар 6378','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16393','Товар 6379','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16394','Товар 6380','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16395','Товар 6381','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16396','Товар 6382','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16397','Товар 6383','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16398','Товар 6384','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16399','Товар 6385','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16400','Товар 6386','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16401','Товар 6387','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16402','Товар 6388','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16403','Товар 6389','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16404','Товар 6390','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16405','Товар 6391','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16406','Товар 6392','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16407','Товар 6393','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16408','Товар 6394','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16409','Товар 6395','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16410','Товар 6396','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16411','Товар 6397','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16412','Товар 6398','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16413','Товар 6399','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16414','Товар 6400','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16415','Товар 6401','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16416','Товар 6402','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16417','Товар 6403','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16418','Товар 6404','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16419','Товар 6405','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16420','Товар 6406','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16421','Товар 6407','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16422','Товар 6408','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16423','Товар 6409','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16424','Товар 6410','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16425','Товар 6411','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16426','Товар 6412','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16427','Товар 6413','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16428','Товар 6414','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16429','Товар 6415','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16430','Товар 6416','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16431','Товар 6417','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16432','Товар 6418','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16433','Товар 6419','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16434','Товар 6420','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16435','Товар 6421','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16436','Товар 6422','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16437','Товар 6423','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16438','Товар 6424','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16439','Товар 6425','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16440','Товар 6426','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16441','Товар 6427','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16442','Товар 6428','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16443','Товар 6429','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16444','Товар 6430','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16445','Товар 6431','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16446','Товар 6432','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16447','Товар 6433','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16448','Товар 6434','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16449','Товар 6435','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16450','Товар 6436','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16451','Товар 6437','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16452','Товар 6438','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16453','Товар 6439','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16454','Товар 6440','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16455','Товар 6441','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16456','Товар 6442','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16457','Товар 6443','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16458','Товар 6444','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16459','Товар 6445','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16460','Товар 6446','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16461','Товар 6447','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16462','Товар 6448','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16463','Товар 6449','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16464','Товар 6450','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16465','Товар 6451','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16466','Товар 6452','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16467','Товар 6453','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16468','Товар 6454','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16469','Товар 6455','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16470','Товар 6456','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16471','Товар 6457','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16472','Товар 6458','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16473','Товар 6459','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16474','Товар 6460','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16475','Товар 6461','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16476','Товар 6462','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16477','Товар 6463','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16478','Товар 6464','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16479','Товар 6465','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16480','Товар 6466','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16481','Товар 6467','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16482','Товар 6468','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16483','Товар 6469','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16484','Товар 6470','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16485','Товар 6471','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16486','Товар 6472','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16487','Товар 6473','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16488','Товар 6474','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16489','Товар 6475','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16490','Товар 6476','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16491','Товар 6477','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16492','Товар 6478','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16493','Товар 6479','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16494','Товар 6480','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16495','Товар 6481','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16496','Товар 6482','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16497','Товар 6483','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16498','Товар 6484','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16499','Товар 6485','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16500','Товар 6486','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16501','Товар 6487','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16502','Товар 6488','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16503','Товар 6489','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16504','Товар 6490','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16505','Товар 6491','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16506','Товар 6492','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16507','Товар 6493','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16508','Товар 6494','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16509','Товар 6495','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16510','Товар 6496','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16511','Товар 6497','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16512','Товар 6498','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16513','Товар 6499','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16514','Товар 6500','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16515','Товар 6501','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16516','Товар 6502','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16517','Товар 6503','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16518','Товар 6504','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16519','Товар 6505','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16520','Товар 6506','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16521','Товар 6507','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16522','Товар 6508','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16523','Товар 6509','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16524','Товар 6510','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16525','Товар 6511','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16526','Товар 6512','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16527','Товар 6513','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16528','Товар 6514','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16529','Товар 6515','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16530','Товар 6516','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16531','Товар 6517','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16532','Товар 6518','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16533','Товар 6519','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16534','Товар 6520','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16535','Товар 6521','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16536','Товар 6522','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16537','Товар 6523','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16538','Товар 6524','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16539','Товар 6525','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16540','Товар 6526','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16541','Товар 6527','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16542','Товар 6528','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16543','Товар 6529','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16544','Товар 6530','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16545','Товар 6531','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16546','Товар 6532','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16547','Товар 6533','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16548','Товар 6534','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16549','Товар 6535','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16550','Товар 6536','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16551','Товар 6537','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16552','Товар 6538','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16553','Товар 6539','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16554','Товар 6540','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16555','Товар 6541','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16556','Товар 6542','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16557','Товар 6543','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16558','Товар 6544','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16559','Товар 6545','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16560','Товар 6546','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16561','Товар 6547','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16562','Товар 6548','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16563','Товар 6549','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16564','Товар 6550','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16565','Товар 6551','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16566','Товар 6552','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16567','Товар 6553','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16568','Товар 6554','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16569','Товар 6555','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16570','Товар 6556','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16571','Товар 6557','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16572','Товар 6558','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16573','Товар 6559','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16574','Товар 6560','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16575','Товар 6561','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16576','Товар 6562','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16577','Товар 6563','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16578','Товар 6564','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16579','Товар 6565','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16580','Товар 6566','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16581','Товар 6567','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16582','Товар 6568','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16583','Товар 6569','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16584','Товар 6570','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16585','Товар 6571','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16586','Товар 6572','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16587','Товар 6573','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16588','Товар 6574','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16589','Товар 6575','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16590','Товар 6576','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16591','Товар 6577','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16592','Товар 6578','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16593','Товар 6579','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16594','Товар 6580','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16595','Товар 6581','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16596','Товар 6582','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16597','Товар 6583','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16598','Товар 6584','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16599','Товар 6585','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16600','Товар 6586','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16601','Товар 6587','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16602','Товар 6588','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16603','Товар 6589','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16604','Товар 6590','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16605','Товар 6591','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16606','Товар 6592','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16607','Товар 6593','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16608','Товар 6594','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16609','Товар 6595','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16610','Товар 6596','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16611','Товар 6597','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16612','Товар 6598','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16613','Товар 6599','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16614','Товар 6600','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16615','Товар 6601','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16616','Товар 6602','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16617','Товар 6603','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16618','Товар 6604','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16619','Товар 6605','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16620','Товар 6606','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16621','Товар 6607','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16622','Товар 6608','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16623','Товар 6609','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16624','Товар 6610','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16625','Товар 6611','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16626','Товар 6612','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16627','Товар 6613','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16628','Товар 6614','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16629','Товар 6615','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16630','Товар 6616','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16631','Товар 6617','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16632','Товар 6618','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16633','Товар 6619','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16634','Товар 6620','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16635','Товар 6621','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16636','Товар 6622','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16637','Товар 6623','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16638','Товар 6624','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16639','Товар 6625','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16640','Товар 6626','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16641','Товар 6627','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16642','Товар 6628','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16643','Товар 6629','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16644','Товар 6630','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16645','Товар 6631','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16646','Товар 6632','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16647','Товар 6633','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16648','Товар 6634','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16649','Товар 6635','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16650','Товар 6636','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16651','Товар 6637','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16652','Товар 6638','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16653','Товар 6639','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16654','Товар 6640','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16655','Товар 6641','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16656','Товар 6642','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16657','Товар 6643','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16658','Товар 6644','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16659','Товар 6645','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16660','Товар 6646','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16661','Товар 6647','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16662','Товар 6648','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16663','Товар 6649','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16664','Товар 6650','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16665','Товар 6651','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16666','Товар 6652','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16667','Товар 6653','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16668','Товар 6654','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16669','Товар 6655','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16670','Товар 6656','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16671','Товар 6657','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16672','Товар 6658','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16673','Товар 6659','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16674','Товар 6660','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16675','Товар 6661','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16676','Товар 6662','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16677','Товар 6663','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16678','Товар 6664','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16679','Товар 6665','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16680','Товар 6666','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16681','Товар 6667','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16682','Товар 6668','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16683','Товар 6669','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16684','Товар 6670','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16685','Товар 6671','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16686','Товар 6672','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16687','Товар 6673','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16688','Товар 6674','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16689','Товар 6675','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16690','Товар 6676','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16691','Товар 6677','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16692','Товар 6678','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16693','Товар 6679','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16694','Товар 6680','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16695','Товар 6681','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16696','Товар 6682','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16697','Товар 6683','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16698','Товар 6684','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16699','Товар 6685','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16700','Товар 6686','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16701','Товар 6687','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16702','Товар 6688','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16703','Товар 6689','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16704','Товар 6690','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16705','Товар 6691','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16706','Товар 6692','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16707','Товар 6693','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16708','Товар 6694','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16709','Товар 6695','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16710','Товар 6696','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16711','Товар 6697','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16712','Товар 6698','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16713','Товар 6699','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16714','Товар 6700','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16715','Товар 6701','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16716','Товар 6702','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16717','Товар 6703','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16718','Товар 6704','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16719','Товар 6705','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16720','Товар 6706','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16721','Товар 6707','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16722','Товар 6708','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16723','Товар 6709','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16724','Товар 6710','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16725','Товар 6711','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16726','Товар 6712','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16727','Товар 6713','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16728','Товар 6714','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16729','Товар 6715','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16730','Товар 6716','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16731','Товар 6717','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16732','Товар 6718','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16733','Товар 6719','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16734','Товар 6720','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16735','Товар 6721','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16736','Товар 6722','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16737','Товар 6723','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16738','Товар 6724','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16739','Товар 6725','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16740','Товар 6726','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16741','Товар 6727','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16742','Товар 6728','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16743','Товар 6729','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16744','Товар 6730','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16745','Товар 6731','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16746','Товар 6732','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16747','Товар 6733','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16748','Товар 6734','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16749','Товар 6735','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16750','Товар 6736','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16751','Товар 6737','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16752','Товар 6738','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16753','Товар 6739','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16754','Товар 6740','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16755','Товар 6741','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16756','Товар 6742','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16757','Товар 6743','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16758','Товар 6744','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16759','Товар 6745','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16760','Товар 6746','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16761','Товар 6747','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16762','Товар 6748','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16763','Товар 6749','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16764','Товар 6750','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16765','Товар 6751','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16766','Товар 6752','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16767','Товар 6753','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16768','Товар 6754','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16769','Товар 6755','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16770','Товар 6756','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16771','Товар 6757','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16772','Товар 6758','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16773','Товар 6759','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16774','Товар 6760','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16775','Товар 6761','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16776','Товар 6762','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16777','Товар 6763','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16778','Товар 6764','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16779','Товар 6765','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16780','Товар 6766','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16781','Товар 6767','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16782','Товар 6768','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16783','Товар 6769','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16784','Товар 6770','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16785','Товар 6771','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16786','Товар 6772','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16787','Товар 6773','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16788','Товар 6774','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16789','Товар 6775','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16790','Товар 6776','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16791','Товар 6777','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16792','Товар 6778','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16793','Товар 6779','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16794','Товар 6780','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16795','Товар 6781','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16796','Товар 6782','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16797','Товар 6783','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16798','Товар 6784','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16799','Товар 6785','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16800','Товар 6786','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16801','Товар 6787','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16802','Товар 6788','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16803','Товар 6789','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16804','Товар 6790','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16805','Товар 6791','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16806','Товар 6792','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16807','Товар 6793','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16808','Товар 6794','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16809','Товар 6795','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16810','Товар 6796','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16811','Товар 6797','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16812','Товар 6798','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16813','Товар 6799','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16814','Товар 6800','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16815','Товар 6801','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16816','Товар 6802','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16817','Товар 6803','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16818','Товар 6804','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16819','Товар 6805','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16820','Товар 6806','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16821','Товар 6807','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16822','Товар 6808','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16823','Товар 6809','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16824','Товар 6810','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16825','Товар 6811','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16826','Товар 6812','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16827','Товар 6813','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16828','Товар 6814','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16829','Товар 6815','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16830','Товар 6816','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16831','Товар 6817','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16832','Товар 6818','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16833','Товар 6819','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16834','Товар 6820','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16835','Товар 6821','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16836','Товар 6822','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16837','Товар 6823','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16838','Товар 6824','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16839','Товар 6825','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16840','Товар 6826','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16841','Товар 6827','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16842','Товар 6828','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16843','Товар 6829','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16844','Товар 6830','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16845','Товар 6831','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16846','Товар 6832','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16847','Товар 6833','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16848','Товар 6834','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16849','Товар 6835','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16850','Товар 6836','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16851','Товар 6837','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16852','Товар 6838','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16853','Товар 6839','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16854','Товар 6840','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16855','Товар 6841','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16856','Товар 6842','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16857','Товар 6843','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16858','Товар 6844','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16859','Товар 6845','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16860','Товар 6846','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16861','Товар 6847','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16862','Товар 6848','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16863','Товар 6849','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16864','Товар 6850','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16865','Товар 6851','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16866','Товар 6852','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16867','Товар 6853','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16868','Товар 6854','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16869','Товар 6855','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16870','Товар 6856','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16871','Товар 6857','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16872','Товар 6858','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16873','Товар 6859','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16874','Товар 6860','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16875','Товар 6861','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16876','Товар 6862','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16877','Товар 6863','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16878','Товар 6864','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16879','Товар 6865','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16880','Товар 6866','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16881','Товар 6867','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16882','Товар 6868','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16883','Товар 6869','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16884','Товар 6870','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16885','Товар 6871','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16886','Товар 6872','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16887','Товар 6873','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16888','Товар 6874','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16889','Товар 6875','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16890','Товар 6876','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16891','Товар 6877','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16892','Товар 6878','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16893','Товар 6879','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16894','Товар 6880','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16895','Товар 6881','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16896','Товар 6882','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16897','Товар 6883','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16898','Товар 6884','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16899','Товар 6885','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16900','Товар 6886','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16901','Товар 6887','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16902','Товар 6888','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16903','Товар 6889','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16904','Товар 6890','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16905','Товар 6891','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16906','Товар 6892','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16907','Товар 6893','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16908','Товар 6894','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16909','Товар 6895','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16910','Товар 6896','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16911','Товар 6897','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16912','Товар 6898','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16913','Товар 6899','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16914','Товар 6900','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16915','Товар 6901','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16916','Товар 6902','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16917','Товар 6903','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16918','Товар 6904','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16919','Товар 6905','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16920','Товар 6906','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16921','Товар 6907','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16922','Товар 6908','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16923','Товар 6909','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16924','Товар 6910','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16925','Товар 6911','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16926','Товар 6912','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16927','Товар 6913','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16928','Товар 6914','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16929','Товар 6915','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16930','Товар 6916','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16931','Товар 6917','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16932','Товар 6918','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16933','Товар 6919','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16934','Товар 6920','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16935','Товар 6921','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16936','Товар 6922','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16937','Товар 6923','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16938','Товар 6924','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16939','Товар 6925','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16940','Товар 6926','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16941','Товар 6927','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16942','Товар 6928','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16943','Товар 6929','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16944','Товар 6930','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16945','Товар 6931','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16946','Товар 6932','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16947','Товар 6933','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16948','Товар 6934','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16949','Товар 6935','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16950','Товар 6936','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16951','Товар 6937','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16952','Товар 6938','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16953','Товар 6939','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16954','Товар 6940','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16955','Товар 6941','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16956','Товар 6942','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16957','Товар 6943','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16958','Товар 6944','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16959','Товар 6945','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16960','Товар 6946','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16961','Товар 6947','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16962','Товар 6948','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16963','Товар 6949','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16964','Товар 6950','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16965','Товар 6951','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16966','Товар 6952','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16967','Товар 6953','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16968','Товар 6954','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16969','Товар 6955','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16970','Товар 6956','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16971','Товар 6957','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16972','Товар 6958','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16973','Товар 6959','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16974','Товар 6960','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16975','Товар 6961','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16976','Товар 6962','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16977','Товар 6963','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16978','Товар 6964','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16979','Товар 6965','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16980','Товар 6966','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16981','Товар 6967','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16982','Товар 6968','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16983','Товар 6969','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16984','Товар 6970','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16985','Товар 6971','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16986','Товар 6972','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16987','Товар 6973','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16988','Товар 6974','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16989','Товар 6975','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16990','Товар 6976','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16991','Товар 6977','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16992','Товар 6978','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16993','Товар 6979','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16994','Товар 6980','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16995','Товар 6981','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16996','Товар 6982','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16997','Товар 6983','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16998','Товар 6984','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('16999','Товар 6985','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17000','Товар 6986','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17001','Товар 6987','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17002','Товар 6988','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17003','Товар 6989','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17004','Товар 6990','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17005','Товар 6991','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17006','Товар 6992','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17007','Товар 6993','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17008','Товар 6994','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17009','Товар 6995','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17010','Товар 6996','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17011','Товар 6997','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17012','Товар 6998','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17013','Товар 6999','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17014','Товар 7000','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17015','Товар 7001','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17016','Товар 7002','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17017','Товар 7003','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17018','Товар 7004','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17019','Товар 7005','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17020','Товар 7006','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17021','Товар 7007','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17022','Товар 7008','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17023','Товар 7009','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17024','Товар 7010','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17025','Товар 7011','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17026','Товар 7012','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17027','Товар 7013','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17028','Товар 7014','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17029','Товар 7015','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17030','Товар 7016','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17031','Товар 7017','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17032','Товар 7018','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17033','Товар 7019','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17034','Товар 7020','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17035','Товар 7021','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17036','Товар 7022','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17037','Товар 7023','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17038','Товар 7024','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17039','Товар 7025','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17040','Товар 7026','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17041','Товар 7027','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17042','Товар 7028','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17043','Товар 7029','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17044','Товар 7030','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17045','Товар 7031','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17046','Товар 7032','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17047','Товар 7033','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17048','Товар 7034','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17049','Товар 7035','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17050','Товар 7036','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17051','Товар 7037','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17052','Товар 7038','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17053','Товар 7039','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17054','Товар 7040','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17055','Товар 7041','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17056','Товар 7042','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17057','Товар 7043','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17058','Товар 7044','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17059','Товар 7045','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17060','Товар 7046','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17061','Товар 7047','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17062','Товар 7048','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17063','Товар 7049','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17064','Товар 7050','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17065','Товар 7051','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17066','Товар 7052','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17067','Товар 7053','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17068','Товар 7054','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17069','Товар 7055','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17070','Товар 7056','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17071','Товар 7057','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17072','Товар 7058','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17073','Товар 7059','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17074','Товар 7060','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17075','Товар 7061','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17076','Товар 7062','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17077','Товар 7063','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17078','Товар 7064','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17079','Товар 7065','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17080','Товар 7066','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17081','Товар 7067','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17082','Товар 7068','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17083','Товар 7069','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17084','Товар 7070','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17085','Товар 7071','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17086','Товар 7072','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17087','Товар 7073','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17088','Товар 7074','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17089','Товар 7075','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17090','Товар 7076','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17091','Товар 7077','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17092','Товар 7078','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17093','Товар 7079','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17094','Товар 7080','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17095','Товар 7081','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17096','Товар 7082','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17097','Товар 7083','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17098','Товар 7084','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17099','Товар 7085','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17100','Товар 7086','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17101','Товар 7087','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17102','Товар 7088','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17103','Товар 7089','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17104','Товар 7090','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17105','Товар 7091','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17106','Товар 7092','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17107','Товар 7093','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17108','Товар 7094','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17109','Товар 7095','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17110','Товар 7096','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17111','Товар 7097','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17112','Товар 7098','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17113','Товар 7099','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17114','Товар 7100','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17115','Товар 7101','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17116','Товар 7102','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17117','Товар 7103','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17118','Товар 7104','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17119','Товар 7105','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17120','Товар 7106','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17121','Товар 7107','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17122','Товар 7108','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17123','Товар 7109','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17124','Товар 7110','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17125','Товар 7111','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17126','Товар 7112','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17127','Товар 7113','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17128','Товар 7114','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17129','Товар 7115','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17130','Товар 7116','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17131','Товар 7117','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17132','Товар 7118','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17133','Товар 7119','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17134','Товар 7120','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17135','Товар 7121','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17136','Товар 7122','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17137','Товар 7123','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17138','Товар 7124','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17139','Товар 7125','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17140','Товар 7126','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17141','Товар 7127','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17142','Товар 7128','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17143','Товар 7129','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17144','Товар 7130','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17145','Товар 7131','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17146','Товар 7132','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17147','Товар 7133','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17148','Товар 7134','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17149','Товар 7135','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17150','Товар 7136','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17151','Товар 7137','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17152','Товар 7138','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17153','Товар 7139','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17154','Товар 7140','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17155','Товар 7141','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17156','Товар 7142','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17157','Товар 7143','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17158','Товар 7144','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17159','Товар 7145','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17160','Товар 7146','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17161','Товар 7147','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17162','Товар 7148','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17163','Товар 7149','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17164','Товар 7150','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17165','Товар 7151','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17166','Товар 7152','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17167','Товар 7153','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17168','Товар 7154','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17169','Товар 7155','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17170','Товар 7156','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17171','Товар 7157','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17172','Товар 7158','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17173','Товар 7159','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17174','Товар 7160','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17175','Товар 7161','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17176','Товар 7162','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17177','Товар 7163','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17178','Товар 7164','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17179','Товар 7165','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17180','Товар 7166','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17181','Товар 7167','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17182','Товар 7168','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17183','Товар 7169','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17184','Товар 7170','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17185','Товар 7171','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17186','Товар 7172','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17187','Товар 7173','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17188','Товар 7174','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17189','Товар 7175','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17190','Товар 7176','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17191','Товар 7177','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17192','Товар 7178','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17193','Товар 7179','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17194','Товар 7180','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17195','Товар 7181','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17196','Товар 7182','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17197','Товар 7183','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17198','Товар 7184','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17199','Товар 7185','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17200','Товар 7186','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17201','Товар 7187','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17202','Товар 7188','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17203','Товар 7189','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17204','Товар 7190','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17205','Товар 7191','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17206','Товар 7192','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17207','Товар 7193','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17208','Товар 7194','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17209','Товар 7195','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17210','Товар 7196','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17211','Товар 7197','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17212','Товар 7198','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17213','Товар 7199','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17214','Товар 7200','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17215','Товар 7201','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17216','Товар 7202','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17217','Товар 7203','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17218','Товар 7204','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17219','Товар 7205','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17220','Товар 7206','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17221','Товар 7207','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17222','Товар 7208','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17223','Товар 7209','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17224','Товар 7210','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17225','Товар 7211','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17226','Товар 7212','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17227','Товар 7213','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17228','Товар 7214','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17229','Товар 7215','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17230','Товар 7216','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17231','Товар 7217','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17232','Товар 7218','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17233','Товар 7219','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17234','Товар 7220','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17235','Товар 7221','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17236','Товар 7222','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17237','Товар 7223','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17238','Товар 7224','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17239','Товар 7225','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17240','Товар 7226','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17241','Товар 7227','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17242','Товар 7228','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17243','Товар 7229','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17244','Товар 7230','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17245','Товар 7231','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17246','Товар 7232','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17247','Товар 7233','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17248','Товар 7234','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17249','Товар 7235','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17250','Товар 7236','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17251','Товар 7237','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17252','Товар 7238','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17253','Товар 7239','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17254','Товар 7240','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17255','Товар 7241','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17256','Товар 7242','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17257','Товар 7243','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17258','Товар 7244','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17259','Товар 7245','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17260','Товар 7246','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17261','Товар 7247','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17262','Товар 7248','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17263','Товар 7249','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17264','Товар 7250','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17265','Товар 7251','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17266','Товар 7252','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17267','Товар 7253','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17268','Товар 7254','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17269','Товар 7255','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17270','Товар 7256','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17271','Товар 7257','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17272','Товар 7258','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17273','Товар 7259','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17274','Товар 7260','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17275','Товар 7261','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17276','Товар 7262','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17277','Товар 7263','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17278','Товар 7264','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17279','Товар 7265','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17280','Товар 7266','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17281','Товар 7267','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17282','Товар 7268','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17283','Товар 7269','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17284','Товар 7270','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17285','Товар 7271','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17286','Товар 7272','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17287','Товар 7273','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17288','Товар 7274','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17289','Товар 7275','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17290','Товар 7276','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17291','Товар 7277','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17292','Товар 7278','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17293','Товар 7279','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17294','Товар 7280','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17295','Товар 7281','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17296','Товар 7282','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17297','Товар 7283','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17298','Товар 7284','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17299','Товар 7285','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17300','Товар 7286','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17301','Товар 7287','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17302','Товар 7288','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17303','Товар 7289','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17304','Товар 7290','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17305','Товар 7291','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17306','Товар 7292','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17307','Товар 7293','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17308','Товар 7294','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17309','Товар 7295','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17310','Товар 7296','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17311','Товар 7297','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17312','Товар 7298','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17313','Товар 7299','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17314','Товар 7300','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17315','Товар 7301','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17316','Товар 7302','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17317','Товар 7303','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17318','Товар 7304','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17319','Товар 7305','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17320','Товар 7306','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17321','Товар 7307','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17322','Товар 7308','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17323','Товар 7309','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17324','Товар 7310','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17325','Товар 7311','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17326','Товар 7312','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17327','Товар 7313','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17328','Товар 7314','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17329','Товар 7315','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17330','Товар 7316','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17331','Товар 7317','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17332','Товар 7318','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17333','Товар 7319','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17334','Товар 7320','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17335','Товар 7321','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17336','Товар 7322','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17337','Товар 7323','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17338','Товар 7324','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17339','Товар 7325','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17340','Товар 7326','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17341','Товар 7327','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17342','Товар 7328','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17343','Товар 7329','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17344','Товар 7330','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17345','Товар 7331','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17346','Товар 7332','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17347','Товар 7333','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17348','Товар 7334','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17349','Товар 7335','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17350','Товар 7336','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17351','Товар 7337','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17352','Товар 7338','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17353','Товар 7339','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17354','Товар 7340','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17355','Товар 7341','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17356','Товар 7342','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17357','Товар 7343','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17358','Товар 7344','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17359','Товар 7345','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17360','Товар 7346','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17361','Товар 7347','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17362','Товар 7348','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17363','Товар 7349','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17364','Товар 7350','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17365','Товар 7351','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17366','Товар 7352','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17367','Товар 7353','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17368','Товар 7354','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17369','Товар 7355','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17370','Товар 7356','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17371','Товар 7357','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17372','Товар 7358','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17373','Товар 7359','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17374','Товар 7360','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17375','Товар 7361','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17376','Товар 7362','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17377','Товар 7363','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17378','Товар 7364','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17379','Товар 7365','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17380','Товар 7366','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17381','Товар 7367','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17382','Товар 7368','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17383','Товар 7369','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17384','Товар 7370','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17385','Товар 7371','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17386','Товар 7372','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17387','Товар 7373','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17388','Товар 7374','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17389','Товар 7375','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17390','Товар 7376','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17391','Товар 7377','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17392','Товар 7378','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17393','Товар 7379','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17394','Товар 7380','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17395','Товар 7381','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17396','Товар 7382','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17397','Товар 7383','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17398','Товар 7384','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17399','Товар 7385','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17400','Товар 7386','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17401','Товар 7387','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17402','Товар 7388','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17403','Товар 7389','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17404','Товар 7390','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17405','Товар 7391','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17406','Товар 7392','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17407','Товар 7393','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17408','Товар 7394','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17409','Товар 7395','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17410','Товар 7396','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17411','Товар 7397','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17412','Товар 7398','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17413','Товар 7399','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17414','Товар 7400','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17415','Товар 7401','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17416','Товар 7402','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17417','Товар 7403','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17418','Товар 7404','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17419','Товар 7405','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17420','Товар 7406','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17421','Товар 7407','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17422','Товар 7408','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17423','Товар 7409','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17424','Товар 7410','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17425','Товар 7411','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17426','Товар 7412','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17427','Товар 7413','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17428','Товар 7414','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17429','Товар 7415','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17430','Товар 7416','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17431','Товар 7417','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17432','Товар 7418','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17433','Товар 7419','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17434','Товар 7420','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17435','Товар 7421','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17436','Товар 7422','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17437','Товар 7423','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17438','Товар 7424','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17439','Товар 7425','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17440','Товар 7426','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17441','Товар 7427','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17442','Товар 7428','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17443','Товар 7429','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17444','Товар 7430','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17445','Товар 7431','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17446','Товар 7432','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17447','Товар 7433','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17448','Товар 7434','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17449','Товар 7435','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17450','Товар 7436','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17451','Товар 7437','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17452','Товар 7438','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17453','Товар 7439','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17454','Товар 7440','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17455','Товар 7441','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17456','Товар 7442','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17457','Товар 7443','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17458','Товар 7444','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17459','Товар 7445','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17460','Товар 7446','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17461','Товар 7447','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17462','Товар 7448','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17463','Товар 7449','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17464','Товар 7450','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17465','Товар 7451','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17466','Товар 7452','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17467','Товар 7453','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17468','Товар 7454','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17469','Товар 7455','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17470','Товар 7456','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17471','Товар 7457','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17472','Товар 7458','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17473','Товар 7459','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17474','Товар 7460','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17475','Товар 7461','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17476','Товар 7462','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17477','Товар 7463','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17478','Товар 7464','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17479','Товар 7465','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17480','Товар 7466','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17481','Товар 7467','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17482','Товар 7468','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17483','Товар 7469','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17484','Товар 7470','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17485','Товар 7471','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17486','Товар 7472','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17487','Товар 7473','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17488','Товар 7474','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17489','Товар 7475','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17490','Товар 7476','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17491','Товар 7477','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17492','Товар 7478','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17493','Товар 7479','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17494','Товар 7480','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17495','Товар 7481','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17496','Товар 7482','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17497','Товар 7483','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17498','Товар 7484','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17499','Товар 7485','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17500','Товар 7486','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17501','Товар 7487','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17502','Товар 7488','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17503','Товар 7489','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17504','Товар 7490','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17505','Товар 7491','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17506','Товар 7492','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17507','Товар 7493','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17508','Товар 7494','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17509','Товар 7495','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17510','Товар 7496','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17511','Товар 7497','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17512','Товар 7498','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17513','Товар 7499','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17514','Товар 7500','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17515','Товар 7501','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17516','Товар 7502','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17517','Товар 7503','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17518','Товар 7504','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17519','Товар 7505','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17520','Товар 7506','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17521','Товар 7507','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17522','Товар 7508','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17523','Товар 7509','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17524','Товар 7510','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17525','Товар 7511','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17526','Товар 7512','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17527','Товар 7513','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17528','Товар 7514','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17529','Товар 7515','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17530','Товар 7516','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17531','Товар 7517','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17532','Товар 7518','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17533','Товар 7519','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17534','Товар 7520','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17535','Товар 7521','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17536','Товар 7522','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17537','Товар 7523','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17538','Товар 7524','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17539','Товар 7525','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17540','Товар 7526','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17541','Товар 7527','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17542','Товар 7528','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17543','Товар 7529','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17544','Товар 7530','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17545','Товар 7531','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17546','Товар 7532','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17547','Товар 7533','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17548','Товар 7534','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17549','Товар 7535','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17550','Товар 7536','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17551','Товар 7537','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17552','Товар 7538','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17553','Товар 7539','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17554','Товар 7540','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17555','Товар 7541','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17556','Товар 7542','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17557','Товар 7543','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17558','Товар 7544','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17559','Товар 7545','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17560','Товар 7546','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17561','Товар 7547','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17562','Товар 7548','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17563','Товар 7549','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17564','Товар 7550','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17565','Товар 7551','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17566','Товар 7552','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17567','Товар 7553','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17568','Товар 7554','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17569','Товар 7555','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17570','Товар 7556','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17571','Товар 7557','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17572','Товар 7558','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17573','Товар 7559','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17574','Товар 7560','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17575','Товар 7561','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17576','Товар 7562','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17577','Товар 7563','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17578','Товар 7564','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17579','Товар 7565','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17580','Товар 7566','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17581','Товар 7567','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17582','Товар 7568','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17583','Товар 7569','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17584','Товар 7570','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17585','Товар 7571','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17586','Товар 7572','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17587','Товар 7573','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17588','Товар 7574','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17589','Товар 7575','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17590','Товар 7576','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17591','Товар 7577','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17592','Товар 7578','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17593','Товар 7579','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17594','Товар 7580','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17595','Товар 7581','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17596','Товар 7582','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17597','Товар 7583','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17598','Товар 7584','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17599','Товар 7585','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17600','Товар 7586','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17601','Товар 7587','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17602','Товар 7588','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17603','Товар 7589','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17604','Товар 7590','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17605','Товар 7591','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17606','Товар 7592','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17607','Товар 7593','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17608','Товар 7594','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17609','Товар 7595','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17610','Товар 7596','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17611','Товар 7597','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17612','Товар 7598','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17613','Товар 7599','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17614','Товар 7600','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17615','Товар 7601','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17616','Товар 7602','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17617','Товар 7603','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17618','Товар 7604','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17619','Товар 7605','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17620','Товар 7606','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17621','Товар 7607','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17622','Товар 7608','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17623','Товар 7609','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17624','Товар 7610','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17625','Товар 7611','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17626','Товар 7612','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17627','Товар 7613','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17628','Товар 7614','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17629','Товар 7615','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17630','Товар 7616','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17631','Товар 7617','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17632','Товар 7618','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17633','Товар 7619','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17634','Товар 7620','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17635','Товар 7621','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17636','Товар 7622','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17637','Товар 7623','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17638','Товар 7624','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17639','Товар 7625','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17640','Товар 7626','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17641','Товар 7627','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17642','Товар 7628','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17643','Товар 7629','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17644','Товар 7630','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17645','Товар 7631','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17646','Товар 7632','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17647','Товар 7633','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17648','Товар 7634','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17649','Товар 7635','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17650','Товар 7636','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17651','Товар 7637','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17652','Товар 7638','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17653','Товар 7639','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17654','Товар 7640','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17655','Товар 7641','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17656','Товар 7642','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17657','Товар 7643','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17658','Товар 7644','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17659','Товар 7645','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17660','Товар 7646','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17661','Товар 7647','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17662','Товар 7648','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17663','Товар 7649','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17664','Товар 7650','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17665','Товар 7651','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17666','Товар 7652','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17667','Товар 7653','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17668','Товар 7654','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17669','Товар 7655','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17670','Товар 7656','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17671','Товар 7657','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17672','Товар 7658','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17673','Товар 7659','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17674','Товар 7660','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17675','Товар 7661','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17676','Товар 7662','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17677','Товар 7663','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17678','Товар 7664','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17679','Товар 7665','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17680','Товар 7666','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17681','Товар 7667','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17682','Товар 7668','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17683','Товар 7669','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17684','Товар 7670','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17685','Товар 7671','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17686','Товар 7672','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17687','Товар 7673','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17688','Товар 7674','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17689','Товар 7675','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17690','Товар 7676','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17691','Товар 7677','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17692','Товар 7678','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17693','Товар 7679','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17694','Товар 7680','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17695','Товар 7681','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17696','Товар 7682','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17697','Товар 7683','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17698','Товар 7684','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17699','Товар 7685','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17700','Товар 7686','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17701','Товар 7687','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17702','Товар 7688','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17703','Товар 7689','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17704','Товар 7690','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17705','Товар 7691','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17706','Товар 7692','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17707','Товар 7693','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17708','Товар 7694','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17709','Товар 7695','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17710','Товар 7696','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17711','Товар 7697','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17712','Товар 7698','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17713','Товар 7699','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17714','Товар 7700','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17715','Товар 7701','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17716','Товар 7702','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17717','Товар 7703','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17718','Товар 7704','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17719','Товар 7705','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17720','Товар 7706','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17721','Товар 7707','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17722','Товар 7708','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17723','Товар 7709','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17724','Товар 7710','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17725','Товар 7711','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17726','Товар 7712','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17727','Товар 7713','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17728','Товар 7714','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17729','Товар 7715','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17730','Товар 7716','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17731','Товар 7717','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17732','Товар 7718','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17733','Товар 7719','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17734','Товар 7720','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17735','Товар 7721','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17736','Товар 7722','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17737','Товар 7723','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17738','Товар 7724','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17739','Товар 7725','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17740','Товар 7726','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17741','Товар 7727','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17742','Товар 7728','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17743','Товар 7729','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17744','Товар 7730','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17745','Товар 7731','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17746','Товар 7732','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17747','Товар 7733','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17748','Товар 7734','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17749','Товар 7735','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17750','Товар 7736','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17751','Товар 7737','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17752','Товар 7738','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17753','Товар 7739','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17754','Товар 7740','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17755','Товар 7741','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17756','Товар 7742','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17757','Товар 7743','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17758','Товар 7744','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17759','Товар 7745','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17760','Товар 7746','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17761','Товар 7747','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17762','Товар 7748','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17763','Товар 7749','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17764','Товар 7750','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17765','Товар 7751','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17766','Товар 7752','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17767','Товар 7753','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17768','Товар 7754','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17769','Товар 7755','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17770','Товар 7756','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17771','Товар 7757','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17772','Товар 7758','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17773','Товар 7759','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17774','Товар 7760','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17775','Товар 7761','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17776','Товар 7762','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17777','Товар 7763','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17778','Товар 7764','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17779','Товар 7765','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17780','Товар 7766','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17781','Товар 7767','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17782','Товар 7768','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17783','Товар 7769','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17784','Товар 7770','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17785','Товар 7771','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17786','Товар 7772','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17787','Товар 7773','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17788','Товар 7774','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17789','Товар 7775','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17790','Товар 7776','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17791','Товар 7777','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17792','Товар 7778','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17793','Товар 7779','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17794','Товар 7780','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17795','Товар 7781','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17796','Товар 7782','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17797','Товар 7783','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17798','Товар 7784','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17799','Товар 7785','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17800','Товар 7786','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17801','Товар 7787','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17802','Товар 7788','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17803','Товар 7789','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17804','Товар 7790','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17805','Товар 7791','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17806','Товар 7792','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17807','Товар 7793','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17808','Товар 7794','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17809','Товар 7795','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17810','Товар 7796','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17811','Товар 7797','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17812','Товар 7798','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17813','Товар 7799','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17814','Товар 7800','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17815','Товар 7801','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17816','Товар 7802','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17817','Товар 7803','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17818','Товар 7804','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17819','Товар 7805','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17820','Товар 7806','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17821','Товар 7807','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17822','Товар 7808','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17823','Товар 7809','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17824','Товар 7810','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17825','Товар 7811','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17826','Товар 7812','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17827','Товар 7813','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17828','Товар 7814','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17829','Товар 7815','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17830','Товар 7816','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17831','Товар 7817','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17832','Товар 7818','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17833','Товар 7819','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17834','Товар 7820','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17835','Товар 7821','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17836','Товар 7822','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17837','Товар 7823','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17838','Товар 7824','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17839','Товар 7825','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17840','Товар 7826','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17841','Товар 7827','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17842','Товар 7828','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17843','Товар 7829','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17844','Товар 7830','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17845','Товар 7831','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17846','Товар 7832','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17847','Товар 7833','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17848','Товар 7834','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17849','Товар 7835','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17850','Товар 7836','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17851','Товар 7837','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17852','Товар 7838','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17853','Товар 7839','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17854','Товар 7840','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17855','Товар 7841','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17856','Товар 7842','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17857','Товар 7843','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17858','Товар 7844','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17859','Товар 7845','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17860','Товар 7846','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17861','Товар 7847','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17862','Товар 7848','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17863','Товар 7849','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17864','Товар 7850','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17865','Товар 7851','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17866','Товар 7852','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17867','Товар 7853','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17868','Товар 7854','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17869','Товар 7855','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17870','Товар 7856','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17871','Товар 7857','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17872','Товар 7858','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17873','Товар 7859','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17874','Товар 7860','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17875','Товар 7861','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17876','Товар 7862','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17877','Товар 7863','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17878','Товар 7864','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17879','Товар 7865','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17880','Товар 7866','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17881','Товар 7867','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17882','Товар 7868','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17883','Товар 7869','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17884','Товар 7870','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17885','Товар 7871','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17886','Товар 7872','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17887','Товар 7873','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17888','Товар 7874','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17889','Товар 7875','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17890','Товар 7876','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17891','Товар 7877','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17892','Товар 7878','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17893','Товар 7879','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17894','Товар 7880','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17895','Товар 7881','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17896','Товар 7882','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17897','Товар 7883','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17898','Товар 7884','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17899','Товар 7885','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17900','Товар 7886','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17901','Товар 7887','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17902','Товар 7888','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17903','Товар 7889','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17904','Товар 7890','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17905','Товар 7891','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17906','Товар 7892','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17907','Товар 7893','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17908','Товар 7894','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17909','Товар 7895','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17910','Товар 7896','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17911','Товар 7897','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17912','Товар 7898','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17913','Товар 7899','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17914','Товар 7900','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17915','Товар 7901','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17916','Товар 7902','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17917','Товар 7903','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17918','Товар 7904','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17919','Товар 7905','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17920','Товар 7906','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17921','Товар 7907','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17922','Товар 7908','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17923','Товар 7909','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17924','Товар 7910','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17925','Товар 7911','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17926','Товар 7912','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17927','Товар 7913','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17928','Товар 7914','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17929','Товар 7915','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17930','Товар 7916','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17931','Товар 7917','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17932','Товар 7918','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17933','Товар 7919','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17934','Товар 7920','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17935','Товар 7921','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17936','Товар 7922','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17937','Товар 7923','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17938','Товар 7924','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17939','Товар 7925','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17940','Товар 7926','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17941','Товар 7927','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17942','Товар 7928','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17943','Товар 7929','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17944','Товар 7930','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17945','Товар 7931','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17946','Товар 7932','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17947','Товар 7933','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17948','Товар 7934','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17949','Товар 7935','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17950','Товар 7936','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17951','Товар 7937','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17952','Товар 7938','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17953','Товар 7939','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17954','Товар 7940','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17955','Товар 7941','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17956','Товар 7942','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17957','Товар 7943','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17958','Товар 7944','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17959','Товар 7945','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17960','Товар 7946','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17961','Товар 7947','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17962','Товар 7948','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17963','Товар 7949','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17964','Товар 7950','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17965','Товар 7951','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17966','Товар 7952','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17967','Товар 7953','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17968','Товар 7954','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17969','Товар 7955','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17970','Товар 7956','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17971','Товар 7957','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17972','Товар 7958','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17973','Товар 7959','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17974','Товар 7960','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17975','Товар 7961','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17976','Товар 7962','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17977','Товар 7963','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17978','Товар 7964','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17979','Товар 7965','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17980','Товар 7966','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17981','Товар 7967','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17982','Товар 7968','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17983','Товар 7969','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17984','Товар 7970','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17985','Товар 7971','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17986','Товар 7972','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17987','Товар 7973','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17988','Товар 7974','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17989','Товар 7975','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17990','Товар 7976','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17991','Товар 7977','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17992','Товар 7978','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17993','Товар 7979','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17994','Товар 7980','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17995','Товар 7981','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17996','Товар 7982','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17997','Товар 7983','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17998','Товар 7984','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('17999','Товар 7985','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18000','Товар 7986','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18001','Товар 7987','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18002','Товар 7988','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18003','Товар 7989','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18004','Товар 7990','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18005','Товар 7991','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18006','Товар 7992','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18007','Товар 7993','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18008','Товар 7994','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18009','Товар 7995','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18010','Товар 7996','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18011','Товар 7997','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18012','Товар 7998','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18013','Товар 7999','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18014','Товар 8000','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18015','Товар 8001','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18016','Товар 8002','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18017','Товар 8003','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18018','Товар 8004','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18019','Товар 8005','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18020','Товар 8006','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18021','Товар 8007','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18022','Товар 8008','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18023','Товар 8009','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18024','Товар 8010','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18025','Товар 8011','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18026','Товар 8012','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18027','Товар 8013','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18028','Товар 8014','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18029','Товар 8015','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18030','Товар 8016','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18031','Товар 8017','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18032','Товар 8018','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18033','Товар 8019','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18034','Товар 8020','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18035','Товар 8021','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18036','Товар 8022','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18037','Товар 8023','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18038','Товар 8024','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18039','Товар 8025','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18040','Товар 8026','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18041','Товар 8027','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18042','Товар 8028','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18043','Товар 8029','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18044','Товар 8030','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18045','Товар 8031','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18046','Товар 8032','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18047','Товар 8033','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18048','Товар 8034','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18049','Товар 8035','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18050','Товар 8036','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18051','Товар 8037','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18052','Товар 8038','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18053','Товар 8039','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18054','Товар 8040','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18055','Товар 8041','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18056','Товар 8042','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18057','Товар 8043','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18058','Товар 8044','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18059','Товар 8045','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18060','Товар 8046','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18061','Товар 8047','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18062','Товар 8048','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18063','Товар 8049','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18064','Товар 8050','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18065','Товар 8051','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18066','Товар 8052','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18067','Товар 8053','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18068','Товар 8054','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18069','Товар 8055','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18070','Товар 8056','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18071','Товар 8057','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18072','Товар 8058','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18073','Товар 8059','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18074','Товар 8060','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18075','Товар 8061','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18076','Товар 8062','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18077','Товар 8063','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18078','Товар 8064','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18079','Товар 8065','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18080','Товар 8066','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18081','Товар 8067','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18082','Товар 8068','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18083','Товар 8069','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18084','Товар 8070','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18085','Товар 8071','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18086','Товар 8072','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18087','Товар 8073','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18088','Товар 8074','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18089','Товар 8075','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18090','Товар 8076','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18091','Товар 8077','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18092','Товар 8078','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18093','Товар 8079','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18094','Товар 8080','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18095','Товар 8081','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18096','Товар 8082','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18097','Товар 8083','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18098','Товар 8084','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18099','Товар 8085','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18100','Товар 8086','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18101','Товар 8087','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18102','Товар 8088','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18103','Товар 8089','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18104','Товар 8090','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18105','Товар 8091','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18106','Товар 8092','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18107','Товар 8093','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18108','Товар 8094','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18109','Товар 8095','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18110','Товар 8096','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18111','Товар 8097','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18112','Товар 8098','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18113','Товар 8099','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18114','Товар 8100','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18115','Товар 8101','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18116','Товар 8102','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18117','Товар 8103','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18118','Товар 8104','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18119','Товар 8105','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18120','Товар 8106','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18121','Товар 8107','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18122','Товар 8108','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18123','Товар 8109','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18124','Товар 8110','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18125','Товар 8111','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18126','Товар 8112','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18127','Товар 8113','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18128','Товар 8114','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18129','Товар 8115','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18130','Товар 8116','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18131','Товар 8117','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18132','Товар 8118','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18133','Товар 8119','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18134','Товар 8120','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18135','Товар 8121','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18136','Товар 8122','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18137','Товар 8123','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18138','Товар 8124','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18139','Товар 8125','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18140','Товар 8126','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18141','Товар 8127','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18142','Товар 8128','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18143','Товар 8129','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18144','Товар 8130','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18145','Товар 8131','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18146','Товар 8132','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18147','Товар 8133','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18148','Товар 8134','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18149','Товар 8135','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18150','Товар 8136','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18151','Товар 8137','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18152','Товар 8138','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18153','Товар 8139','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18154','Товар 8140','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18155','Товар 8141','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18156','Товар 8142','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18157','Товар 8143','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18158','Товар 8144','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18159','Товар 8145','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18160','Товар 8146','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18161','Товар 8147','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18162','Товар 8148','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18163','Товар 8149','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18164','Товар 8150','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18165','Товар 8151','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18166','Товар 8152','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18167','Товар 8153','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18168','Товар 8154','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18169','Товар 8155','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18170','Товар 8156','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18171','Товар 8157','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18172','Товар 8158','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18173','Товар 8159','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18174','Товар 8160','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18175','Товар 8161','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18176','Товар 8162','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18177','Товар 8163','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18178','Товар 8164','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18179','Товар 8165','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18180','Товар 8166','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18181','Товар 8167','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18182','Товар 8168','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18183','Товар 8169','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18184','Товар 8170','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18185','Товар 8171','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18186','Товар 8172','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18187','Товар 8173','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18188','Товар 8174','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18189','Товар 8175','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18190','Товар 8176','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18191','Товар 8177','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18192','Товар 8178','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18193','Товар 8179','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18194','Товар 8180','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18195','Товар 8181','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18196','Товар 8182','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18197','Товар 8183','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18198','Товар 8184','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18199','Товар 8185','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18200','Товар 8186','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18201','Товар 8187','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18202','Товар 8188','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18203','Товар 8189','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18204','Товар 8190','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18205','Товар 8191','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18206','Товар 8192','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18207','Товар 8193','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18208','Товар 8194','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18209','Товар 8195','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18210','Товар 8196','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18211','Товар 8197','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18212','Товар 8198','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18213','Товар 8199','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18214','Товар 8200','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18215','Товар 8201','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18216','Товар 8202','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18217','Товар 8203','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18218','Товар 8204','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18219','Товар 8205','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18220','Товар 8206','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18221','Товар 8207','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18222','Товар 8208','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18223','Товар 8209','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18224','Товар 8210','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18225','Товар 8211','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18226','Товар 8212','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18227','Товар 8213','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18228','Товар 8214','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18229','Товар 8215','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18230','Товар 8216','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18231','Товар 8217','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18232','Товар 8218','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18233','Товар 8219','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18234','Товар 8220','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18235','Товар 8221','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18236','Товар 8222','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18237','Товар 8223','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18238','Товар 8224','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18239','Товар 8225','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18240','Товар 8226','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18241','Товар 8227','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18242','Товар 8228','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18243','Товар 8229','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18244','Товар 8230','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18245','Товар 8231','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18246','Товар 8232','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18247','Товар 8233','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18248','Товар 8234','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18249','Товар 8235','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18250','Товар 8236','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18251','Товар 8237','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18252','Товар 8238','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18253','Товар 8239','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18254','Товар 8240','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18255','Товар 8241','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18256','Товар 8242','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18257','Товар 8243','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18258','Товар 8244','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18259','Товар 8245','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18260','Товар 8246','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18261','Товар 8247','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18262','Товар 8248','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18263','Товар 8249','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18264','Товар 8250','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18265','Товар 8251','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18266','Товар 8252','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18267','Товар 8253','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18268','Товар 8254','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18269','Товар 8255','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18270','Товар 8256','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18271','Товар 8257','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18272','Товар 8258','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18273','Товар 8259','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18274','Товар 8260','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18275','Товар 8261','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18276','Товар 8262','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18277','Товар 8263','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18278','Товар 8264','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18279','Товар 8265','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18280','Товар 8266','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18281','Товар 8267','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18282','Товар 8268','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18283','Товар 8269','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18284','Товар 8270','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18285','Товар 8271','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18286','Товар 8272','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18287','Товар 8273','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18288','Товар 8274','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18289','Товар 8275','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18290','Товар 8276','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18291','Товар 8277','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18292','Товар 8278','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18293','Товар 8279','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18294','Товар 8280','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18295','Товар 8281','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18296','Товар 8282','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18297','Товар 8283','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18298','Товар 8284','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18299','Товар 8285','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18300','Товар 8286','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18301','Товар 8287','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18302','Товар 8288','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18303','Товар 8289','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18304','Товар 8290','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18305','Товар 8291','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18306','Товар 8292','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18307','Товар 8293','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18308','Товар 8294','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18309','Товар 8295','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18310','Товар 8296','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18311','Товар 8297','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18312','Товар 8298','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18313','Товар 8299','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18314','Товар 8300','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18315','Товар 8301','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18316','Товар 8302','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18317','Товар 8303','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18318','Товар 8304','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18319','Товар 8305','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18320','Товар 8306','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18321','Товар 8307','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18322','Товар 8308','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18323','Товар 8309','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18324','Товар 8310','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18325','Товар 8311','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18326','Товар 8312','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18327','Товар 8313','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18328','Товар 8314','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18329','Товар 8315','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18330','Товар 8316','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18331','Товар 8317','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18332','Товар 8318','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18333','Товар 8319','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18334','Товар 8320','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18335','Товар 8321','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18336','Товар 8322','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18337','Товар 8323','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18338','Товар 8324','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18339','Товар 8325','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18340','Товар 8326','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18341','Товар 8327','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18342','Товар 8328','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18343','Товар 8329','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18344','Товар 8330','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18345','Товар 8331','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18346','Товар 8332','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18347','Товар 8333','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18348','Товар 8334','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18349','Товар 8335','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18350','Товар 8336','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18351','Товар 8337','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18352','Товар 8338','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18353','Товар 8339','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18354','Товар 8340','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18355','Товар 8341','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18356','Товар 8342','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18357','Товар 8343','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18358','Товар 8344','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18359','Товар 8345','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18360','Товар 8346','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18361','Товар 8347','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18362','Товар 8348','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18363','Товар 8349','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18364','Товар 8350','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18365','Товар 8351','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18366','Товар 8352','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18367','Товар 8353','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18368','Товар 8354','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18369','Товар 8355','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18370','Товар 8356','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18371','Товар 8357','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18372','Товар 8358','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18373','Товар 8359','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18374','Товар 8360','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18375','Товар 8361','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18376','Товар 8362','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18377','Товар 8363','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18378','Товар 8364','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18379','Товар 8365','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18380','Товар 8366','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18381','Товар 8367','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18382','Товар 8368','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18383','Товар 8369','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18384','Товар 8370','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18385','Товар 8371','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18386','Товар 8372','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18387','Товар 8373','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18388','Товар 8374','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18389','Товар 8375','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18390','Товар 8376','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18391','Товар 8377','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18392','Товар 8378','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18393','Товар 8379','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18394','Товар 8380','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18395','Товар 8381','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18396','Товар 8382','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18397','Товар 8383','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18398','Товар 8384','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18399','Товар 8385','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18400','Товар 8386','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18401','Товар 8387','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18402','Товар 8388','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18403','Товар 8389','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18404','Товар 8390','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18405','Товар 8391','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18406','Товар 8392','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18407','Товар 8393','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18408','Товар 8394','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18409','Товар 8395','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18410','Товар 8396','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18411','Товар 8397','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18412','Товар 8398','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18413','Товар 8399','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18414','Товар 8400','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18415','Товар 8401','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18416','Товар 8402','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18417','Товар 8403','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18418','Товар 8404','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18419','Товар 8405','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18420','Товар 8406','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18421','Товар 8407','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18422','Товар 8408','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18423','Товар 8409','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18424','Товар 8410','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18425','Товар 8411','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18426','Товар 8412','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18427','Товар 8413','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18428','Товар 8414','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18429','Товар 8415','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18430','Товар 8416','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18431','Товар 8417','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18432','Товар 8418','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18433','Товар 8419','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18434','Товар 8420','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18435','Товар 8421','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18436','Товар 8422','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18437','Товар 8423','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18438','Товар 8424','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18439','Товар 8425','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18440','Товар 8426','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18441','Товар 8427','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18442','Товар 8428','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18443','Товар 8429','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18444','Товар 8430','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18445','Товар 8431','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18446','Товар 8432','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18447','Товар 8433','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18448','Товар 8434','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18449','Товар 8435','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18450','Товар 8436','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18451','Товар 8437','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18452','Товар 8438','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18453','Товар 8439','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18454','Товар 8440','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18455','Товар 8441','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18456','Товар 8442','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18457','Товар 8443','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18458','Товар 8444','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18459','Товар 8445','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18460','Товар 8446','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18461','Товар 8447','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18462','Товар 8448','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18463','Товар 8449','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18464','Товар 8450','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18465','Товар 8451','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18466','Товар 8452','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18467','Товар 8453','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18468','Товар 8454','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18469','Товар 8455','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18470','Товар 8456','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18471','Товар 8457','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18472','Товар 8458','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18473','Товар 8459','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18474','Товар 8460','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18475','Товар 8461','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18476','Товар 8462','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18477','Товар 8463','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18478','Товар 8464','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18479','Товар 8465','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18480','Товар 8466','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18481','Товар 8467','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18482','Товар 8468','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18483','Товар 8469','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18484','Товар 8470','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18485','Товар 8471','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18486','Товар 8472','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18487','Товар 8473','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18488','Товар 8474','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18489','Товар 8475','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18490','Товар 8476','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18491','Товар 8477','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18492','Товар 8478','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18493','Товар 8479','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18494','Товар 8480','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18495','Товар 8481','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18496','Товар 8482','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18497','Товар 8483','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18498','Товар 8484','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18499','Товар 8485','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18500','Товар 8486','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18501','Товар 8487','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18502','Товар 8488','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18503','Товар 8489','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18504','Товар 8490','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18505','Товар 8491','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18506','Товар 8492','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18507','Товар 8493','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18508','Товар 8494','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18509','Товар 8495','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18510','Товар 8496','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18511','Товар 8497','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18512','Товар 8498','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18513','Товар 8499','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18514','Товар 8500','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18515','Товар 8501','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18516','Товар 8502','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18517','Товар 8503','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18518','Товар 8504','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18519','Товар 8505','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18520','Товар 8506','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18521','Товар 8507','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18522','Товар 8508','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18523','Товар 8509','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18524','Товар 8510','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18525','Товар 8511','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18526','Товар 8512','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18527','Товар 8513','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18528','Товар 8514','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18529','Товар 8515','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18530','Товар 8516','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18531','Товар 8517','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18532','Товар 8518','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18533','Товар 8519','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18534','Товар 8520','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18535','Товар 8521','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18536','Товар 8522','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18537','Товар 8523','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18538','Товар 8524','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18539','Товар 8525','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18540','Товар 8526','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18541','Товар 8527','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18542','Товар 8528','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18543','Товар 8529','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18544','Товар 8530','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18545','Товар 8531','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18546','Товар 8532','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18547','Товар 8533','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18548','Товар 8534','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18549','Товар 8535','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18550','Товар 8536','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18551','Товар 8537','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18552','Товар 8538','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18553','Товар 8539','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18554','Товар 8540','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18555','Товар 8541','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18556','Товар 8542','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18557','Товар 8543','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18558','Товар 8544','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18559','Товар 8545','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18560','Товар 8546','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18561','Товар 8547','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18562','Товар 8548','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18563','Товар 8549','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18564','Товар 8550','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18565','Товар 8551','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18566','Товар 8552','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18567','Товар 8553','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18568','Товар 8554','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18569','Товар 8555','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18570','Товар 8556','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18571','Товар 8557','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18572','Товар 8558','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18573','Товар 8559','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18574','Товар 8560','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18575','Товар 8561','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18576','Товар 8562','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18577','Товар 8563','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18578','Товар 8564','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18579','Товар 8565','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18580','Товар 8566','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18581','Товар 8567','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18582','Товар 8568','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18583','Товар 8569','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18584','Товар 8570','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18585','Товар 8571','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18586','Товар 8572','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18587','Товар 8573','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18588','Товар 8574','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18589','Товар 8575','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18590','Товар 8576','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18591','Товар 8577','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18592','Товар 8578','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18593','Товар 8579','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18594','Товар 8580','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18595','Товар 8581','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18596','Товар 8582','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18597','Товар 8583','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18598','Товар 8584','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18599','Товар 8585','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18600','Товар 8586','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18601','Товар 8587','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18602','Товар 8588','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18603','Товар 8589','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18604','Товар 8590','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18605','Товар 8591','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18606','Товар 8592','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18607','Товар 8593','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18608','Товар 8594','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18609','Товар 8595','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18610','Товар 8596','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18611','Товар 8597','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18612','Товар 8598','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18613','Товар 8599','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18614','Товар 8600','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18615','Товар 8601','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18616','Товар 8602','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18617','Товар 8603','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18618','Товар 8604','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18619','Товар 8605','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18620','Товар 8606','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18621','Товар 8607','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18622','Товар 8608','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18623','Товар 8609','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18624','Товар 8610','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18625','Товар 8611','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18626','Товар 8612','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18627','Товар 8613','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18628','Товар 8614','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18629','Товар 8615','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18630','Товар 8616','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18631','Товар 8617','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18632','Товар 8618','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18633','Товар 8619','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18634','Товар 8620','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18635','Товар 8621','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18636','Товар 8622','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18637','Товар 8623','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18638','Товар 8624','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18639','Товар 8625','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18640','Товар 8626','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18641','Товар 8627','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18642','Товар 8628','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18643','Товар 8629','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18644','Товар 8630','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18645','Товар 8631','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18646','Товар 8632','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18647','Товар 8633','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18648','Товар 8634','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18649','Товар 8635','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18650','Товар 8636','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18651','Товар 8637','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18652','Товар 8638','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18653','Товар 8639','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18654','Товар 8640','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18655','Товар 8641','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18656','Товар 8642','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18657','Товар 8643','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18658','Товар 8644','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18659','Товар 8645','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18660','Товар 8646','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18661','Товар 8647','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18662','Товар 8648','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18663','Товар 8649','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18664','Товар 8650','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18665','Товар 8651','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18666','Товар 8652','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18667','Товар 8653','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18668','Товар 8654','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18669','Товар 8655','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18670','Товар 8656','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18671','Товар 8657','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18672','Товар 8658','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18673','Товар 8659','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18674','Товар 8660','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18675','Товар 8661','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18676','Товар 8662','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18677','Товар 8663','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18678','Товар 8664','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18679','Товар 8665','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18680','Товар 8666','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18681','Товар 8667','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18682','Товар 8668','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18683','Товар 8669','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18684','Товар 8670','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18685','Товар 8671','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18686','Товар 8672','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18687','Товар 8673','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18688','Товар 8674','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18689','Товар 8675','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18690','Товар 8676','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18691','Товар 8677','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18692','Товар 8678','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18693','Товар 8679','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18694','Товар 8680','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18695','Товар 8681','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18696','Товар 8682','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18697','Товар 8683','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18698','Товар 8684','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18699','Товар 8685','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18700','Товар 8686','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18701','Товар 8687','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18702','Товар 8688','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18703','Товар 8689','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18704','Товар 8690','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18705','Товар 8691','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18706','Товар 8692','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18707','Товар 8693','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18708','Товар 8694','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18709','Товар 8695','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18710','Товар 8696','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18711','Товар 8697','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18712','Товар 8698','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18713','Товар 8699','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18714','Товар 8700','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18715','Товар 8701','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18716','Товар 8702','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18717','Товар 8703','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18718','Товар 8704','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18719','Товар 8705','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18720','Товар 8706','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18721','Товар 8707','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18722','Товар 8708','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18723','Товар 8709','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18724','Товар 8710','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18725','Товар 8711','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18726','Товар 8712','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18727','Товар 8713','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18728','Товар 8714','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18729','Товар 8715','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18730','Товар 8716','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18731','Товар 8717','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18732','Товар 8718','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18733','Товар 8719','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18734','Товар 8720','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18735','Товар 8721','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18736','Товар 8722','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18737','Товар 8723','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18738','Товар 8724','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18739','Товар 8725','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18740','Товар 8726','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18741','Товар 8727','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18742','Товар 8728','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18743','Товар 8729','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18744','Товар 8730','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18745','Товар 8731','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18746','Товар 8732','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18747','Товар 8733','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18748','Товар 8734','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18749','Товар 8735','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18750','Товар 8736','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18751','Товар 8737','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18752','Товар 8738','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18753','Товар 8739','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18754','Товар 8740','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18755','Товар 8741','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18756','Товар 8742','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18757','Товар 8743','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18758','Товар 8744','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18759','Товар 8745','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18760','Товар 8746','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18761','Товар 8747','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18762','Товар 8748','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18763','Товар 8749','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18764','Товар 8750','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18765','Товар 8751','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18766','Товар 8752','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18767','Товар 8753','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18768','Товар 8754','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18769','Товар 8755','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18770','Товар 8756','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18771','Товар 8757','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18772','Товар 8758','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18773','Товар 8759','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18774','Товар 8760','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18775','Товар 8761','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18776','Товар 8762','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18777','Товар 8763','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18778','Товар 8764','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18779','Товар 8765','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18780','Товар 8766','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18781','Товар 8767','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18782','Товар 8768','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18783','Товар 8769','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18784','Товар 8770','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18785','Товар 8771','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18786','Товар 8772','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18787','Товар 8773','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18788','Товар 8774','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18789','Товар 8775','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18790','Товар 8776','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18791','Товар 8777','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18792','Товар 8778','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18793','Товар 8779','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18794','Товар 8780','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18795','Товар 8781','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18796','Товар 8782','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18797','Товар 8783','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18798','Товар 8784','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18799','Товар 8785','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18800','Товар 8786','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18801','Товар 8787','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18802','Товар 8788','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18803','Товар 8789','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18804','Товар 8790','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18805','Товар 8791','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18806','Товар 8792','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18807','Товар 8793','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18808','Товар 8794','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18809','Товар 8795','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18810','Товар 8796','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18811','Товар 8797','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18812','Товар 8798','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18813','Товар 8799','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18814','Товар 8800','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18815','Товар 8801','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18816','Товар 8802','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18817','Товар 8803','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18818','Товар 8804','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18819','Товар 8805','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18820','Товар 8806','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18821','Товар 8807','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18822','Товар 8808','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18823','Товар 8809','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18824','Товар 8810','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18825','Товар 8811','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18826','Товар 8812','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18827','Товар 8813','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18828','Товар 8814','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18829','Товар 8815','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18830','Товар 8816','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18831','Товар 8817','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18832','Товар 8818','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18833','Товар 8819','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18834','Товар 8820','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18835','Товар 8821','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18836','Товар 8822','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18837','Товар 8823','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18838','Товар 8824','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18839','Товар 8825','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18840','Товар 8826','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18841','Товар 8827','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18842','Товар 8828','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18843','Товар 8829','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18844','Товар 8830','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18845','Товар 8831','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18846','Товар 8832','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18847','Товар 8833','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18848','Товар 8834','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18849','Товар 8835','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18850','Товар 8836','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18851','Товар 8837','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18852','Товар 8838','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18853','Товар 8839','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18854','Товар 8840','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18855','Товар 8841','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18856','Товар 8842','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18857','Товар 8843','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18858','Товар 8844','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18859','Товар 8845','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18860','Товар 8846','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18861','Товар 8847','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18862','Товар 8848','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18863','Товар 8849','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18864','Товар 8850','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18865','Товар 8851','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18866','Товар 8852','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18867','Товар 8853','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18868','Товар 8854','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18869','Товар 8855','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18870','Товар 8856','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18871','Товар 8857','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18872','Товар 8858','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18873','Товар 8859','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18874','Товар 8860','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18875','Товар 8861','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18876','Товар 8862','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18877','Товар 8863','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18878','Товар 8864','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18879','Товар 8865','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18880','Товар 8866','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18881','Товар 8867','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18882','Товар 8868','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18883','Товар 8869','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18884','Товар 8870','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18885','Товар 8871','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18886','Товар 8872','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18887','Товар 8873','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18888','Товар 8874','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18889','Товар 8875','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18890','Товар 8876','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18891','Товар 8877','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18892','Товар 8878','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18893','Товар 8879','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18894','Товар 8880','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18895','Товар 8881','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18896','Товар 8882','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18897','Товар 8883','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18898','Товар 8884','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18899','Товар 8885','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18900','Товар 8886','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18901','Товар 8887','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18902','Товар 8888','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18903','Товар 8889','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18904','Товар 8890','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18905','Товар 8891','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18906','Товар 8892','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18907','Товар 8893','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18908','Товар 8894','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18909','Товар 8895','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18910','Товар 8896','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18911','Товар 8897','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18912','Товар 8898','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18913','Товар 8899','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18914','Товар 8900','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18915','Товар 8901','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18916','Товар 8902','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18917','Товар 8903','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18918','Товар 8904','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18919','Товар 8905','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18920','Товар 8906','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18921','Товар 8907','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18922','Товар 8908','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18923','Товар 8909','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18924','Товар 8910','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18925','Товар 8911','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18926','Товар 8912','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18927','Товар 8913','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18928','Товар 8914','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18929','Товар 8915','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18930','Товар 8916','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18931','Товар 8917','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18932','Товар 8918','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18933','Товар 8919','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18934','Товар 8920','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18935','Товар 8921','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18936','Товар 8922','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18937','Товар 8923','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18938','Товар 8924','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18939','Товар 8925','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18940','Товар 8926','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18941','Товар 8927','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18942','Товар 8928','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18943','Товар 8929','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18944','Товар 8930','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18945','Товар 8931','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18946','Товар 8932','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18947','Товар 8933','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18948','Товар 8934','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18949','Товар 8935','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18950','Товар 8936','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18951','Товар 8937','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18952','Товар 8938','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18953','Товар 8939','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18954','Товар 8940','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18955','Товар 8941','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18956','Товар 8942','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18957','Товар 8943','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18958','Товар 8944','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18959','Товар 8945','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18960','Товар 8946','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18961','Товар 8947','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18962','Товар 8948','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18963','Товар 8949','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18964','Товар 8950','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18965','Товар 8951','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18966','Товар 8952','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18967','Товар 8953','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18968','Товар 8954','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18969','Товар 8955','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18970','Товар 8956','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18971','Товар 8957','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18972','Товар 8958','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18973','Товар 8959','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18974','Товар 8960','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18975','Товар 8961','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18976','Товар 8962','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18977','Товар 8963','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18978','Товар 8964','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18979','Товар 8965','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18980','Товар 8966','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18981','Товар 8967','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18982','Товар 8968','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18983','Товар 8969','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18984','Товар 8970','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18985','Товар 8971','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18986','Товар 8972','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18987','Товар 8973','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18988','Товар 8974','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18989','Товар 8975','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18990','Товар 8976','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18991','Товар 8977','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18992','Товар 8978','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18993','Товар 8979','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18994','Товар 8980','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18995','Товар 8981','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18996','Товар 8982','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18997','Товар 8983','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18998','Товар 8984','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('18999','Товар 8985','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19000','Товар 8986','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19001','Товар 8987','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19002','Товар 8988','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19003','Товар 8989','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19004','Товар 8990','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19005','Товар 8991','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19006','Товар 8992','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19007','Товар 8993','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19008','Товар 8994','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19009','Товар 8995','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19010','Товар 8996','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19011','Товар 8997','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19012','Товар 8998','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19013','Товар 8999','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19014','Товар 9000','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19015','Товар 9001','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19016','Товар 9002','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19017','Товар 9003','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19018','Товар 9004','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19019','Товар 9005','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19020','Товар 9006','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19021','Товар 9007','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19022','Товар 9008','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19023','Товар 9009','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19024','Товар 9010','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19025','Товар 9011','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19026','Товар 9012','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19027','Товар 9013','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19028','Товар 9014','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19029','Товар 9015','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19030','Товар 9016','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19031','Товар 9017','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19032','Товар 9018','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19033','Товар 9019','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19034','Товар 9020','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19035','Товар 9021','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19036','Товар 9022','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19037','Товар 9023','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19038','Товар 9024','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19039','Товар 9025','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19040','Товар 9026','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19041','Товар 9027','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19042','Товар 9028','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19043','Товар 9029','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19044','Товар 9030','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19045','Товар 9031','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19046','Товар 9032','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19047','Товар 9033','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19048','Товар 9034','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19049','Товар 9035','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19050','Товар 9036','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19051','Товар 9037','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19052','Товар 9038','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19053','Товар 9039','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19054','Товар 9040','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19055','Товар 9041','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19056','Товар 9042','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19057','Товар 9043','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19058','Товар 9044','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19059','Товар 9045','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19060','Товар 9046','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19061','Товар 9047','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19062','Товар 9048','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19063','Товар 9049','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19064','Товар 9050','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19065','Товар 9051','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19066','Товар 9052','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19067','Товар 9053','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19068','Товар 9054','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19069','Товар 9055','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19070','Товар 9056','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19071','Товар 9057','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19072','Товар 9058','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19073','Товар 9059','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19074','Товар 9060','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19075','Товар 9061','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19076','Товар 9062','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19077','Товар 9063','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19078','Товар 9064','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19079','Товар 9065','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19080','Товар 9066','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19081','Товар 9067','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19082','Товар 9068','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19083','Товар 9069','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19084','Товар 9070','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19085','Товар 9071','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19086','Товар 9072','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19087','Товар 9073','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19088','Товар 9074','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19089','Товар 9075','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19090','Товар 9076','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19091','Товар 9077','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19092','Товар 9078','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19093','Товар 9079','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19094','Товар 9080','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19095','Товар 9081','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19096','Товар 9082','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19097','Товар 9083','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19098','Товар 9084','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19099','Товар 9085','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19100','Товар 9086','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19101','Товар 9087','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19102','Товар 9088','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19103','Товар 9089','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19104','Товар 9090','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19105','Товар 9091','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19106','Товар 9092','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19107','Товар 9093','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19108','Товар 9094','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19109','Товар 9095','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19110','Товар 9096','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19111','Товар 9097','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19112','Товар 9098','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19113','Товар 9099','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19114','Товар 9100','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19115','Товар 9101','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19116','Товар 9102','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19117','Товар 9103','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19118','Товар 9104','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19119','Товар 9105','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19120','Товар 9106','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19121','Товар 9107','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19122','Товар 9108','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19123','Товар 9109','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19124','Товар 9110','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19125','Товар 9111','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19126','Товар 9112','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19127','Товар 9113','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19128','Товар 9114','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19129','Товар 9115','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19130','Товар 9116','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19131','Товар 9117','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19132','Товар 9118','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19133','Товар 9119','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19134','Товар 9120','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19135','Товар 9121','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19136','Товар 9122','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19137','Товар 9123','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19138','Товар 9124','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19139','Товар 9125','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19140','Товар 9126','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19141','Товар 9127','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19142','Товар 9128','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19143','Товар 9129','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19144','Товар 9130','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19145','Товар 9131','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19146','Товар 9132','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19147','Товар 9133','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19148','Товар 9134','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19149','Товар 9135','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19150','Товар 9136','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19151','Товар 9137','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19152','Товар 9138','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19153','Товар 9139','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19154','Товар 9140','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19155','Товар 9141','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19156','Товар 9142','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19157','Товар 9143','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19158','Товар 9144','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19159','Товар 9145','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19160','Товар 9146','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19161','Товар 9147','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19162','Товар 9148','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19163','Товар 9149','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19164','Товар 9150','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19165','Товар 9151','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19166','Товар 9152','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19167','Товар 9153','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19168','Товар 9154','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19169','Товар 9155','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19170','Товар 9156','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19171','Товар 9157','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19172','Товар 9158','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19173','Товар 9159','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19174','Товар 9160','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19175','Товар 9161','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19176','Товар 9162','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19177','Товар 9163','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19178','Товар 9164','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19179','Товар 9165','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19180','Товар 9166','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19181','Товар 9167','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19182','Товар 9168','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19183','Товар 9169','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19184','Товар 9170','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19185','Товар 9171','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19186','Товар 9172','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19187','Товар 9173','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19188','Товар 9174','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19189','Товар 9175','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19190','Товар 9176','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19191','Товар 9177','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19192','Товар 9178','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19193','Товар 9179','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19194','Товар 9180','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19195','Товар 9181','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19196','Товар 9182','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19197','Товар 9183','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19198','Товар 9184','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19199','Товар 9185','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19200','Товар 9186','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19201','Товар 9187','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19202','Товар 9188','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19203','Товар 9189','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19204','Товар 9190','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19205','Товар 9191','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19206','Товар 9192','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19207','Товар 9193','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19208','Товар 9194','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19209','Товар 9195','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19210','Товар 9196','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19211','Товар 9197','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19212','Товар 9198','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19213','Товар 9199','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19214','Товар 9200','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19215','Товар 9201','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19216','Товар 9202','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19217','Товар 9203','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19218','Товар 9204','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19219','Товар 9205','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19220','Товар 9206','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19221','Товар 9207','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19222','Товар 9208','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19223','Товар 9209','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19224','Товар 9210','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19225','Товар 9211','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19226','Товар 9212','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19227','Товар 9213','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19228','Товар 9214','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19229','Товар 9215','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19230','Товар 9216','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19231','Товар 9217','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19232','Товар 9218','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19233','Товар 9219','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19234','Товар 9220','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19235','Товар 9221','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19236','Товар 9222','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19237','Товар 9223','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19238','Товар 9224','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19239','Товар 9225','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19240','Товар 9226','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19241','Товар 9227','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19242','Товар 9228','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19243','Товар 9229','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19244','Товар 9230','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19245','Товар 9231','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19246','Товар 9232','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19247','Товар 9233','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19248','Товар 9234','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19249','Товар 9235','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19250','Товар 9236','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19251','Товар 9237','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19252','Товар 9238','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19253','Товар 9239','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19254','Товар 9240','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19255','Товар 9241','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19256','Товар 9242','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19257','Товар 9243','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19258','Товар 9244','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19259','Товар 9245','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19260','Товар 9246','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19261','Товар 9247','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19262','Товар 9248','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19263','Товар 9249','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19264','Товар 9250','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19265','Товар 9251','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19266','Товар 9252','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19267','Товар 9253','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19268','Товар 9254','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19269','Товар 9255','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19270','Товар 9256','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19271','Товар 9257','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19272','Товар 9258','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19273','Товар 9259','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19274','Товар 9260','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19275','Товар 9261','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19276','Товар 9262','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19277','Товар 9263','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19278','Товар 9264','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19279','Товар 9265','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19280','Товар 9266','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19281','Товар 9267','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19282','Товар 9268','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19283','Товар 9269','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19284','Товар 9270','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19285','Товар 9271','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19286','Товар 9272','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19287','Товар 9273','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19288','Товар 9274','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19289','Товар 9275','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19290','Товар 9276','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19291','Товар 9277','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19292','Товар 9278','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19293','Товар 9279','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19294','Товар 9280','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19295','Товар 9281','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19296','Товар 9282','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19297','Товар 9283','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19298','Товар 9284','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19299','Товар 9285','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19300','Товар 9286','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19301','Товар 9287','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19302','Товар 9288','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19303','Товар 9289','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19304','Товар 9290','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19305','Товар 9291','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19306','Товар 9292','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19307','Товар 9293','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19308','Товар 9294','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19309','Товар 9295','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19310','Товар 9296','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19311','Товар 9297','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19312','Товар 9298','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19313','Товар 9299','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19314','Товар 9300','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19315','Товар 9301','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19316','Товар 9302','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19317','Товар 9303','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19318','Товар 9304','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19319','Товар 9305','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19320','Товар 9306','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19321','Товар 9307','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19322','Товар 9308','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19323','Товар 9309','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19324','Товар 9310','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19325','Товар 9311','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19326','Товар 9312','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19327','Товар 9313','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19328','Товар 9314','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19329','Товар 9315','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19330','Товар 9316','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19331','Товар 9317','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19332','Товар 9318','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19333','Товар 9319','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19334','Товар 9320','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19335','Товар 9321','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19336','Товар 9322','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19337','Товар 9323','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19338','Товар 9324','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19339','Товар 9325','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19340','Товар 9326','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19341','Товар 9327','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19342','Товар 9328','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19343','Товар 9329','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19344','Товар 9330','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19345','Товар 9331','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19346','Товар 9332','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19347','Товар 9333','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19348','Товар 9334','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19349','Товар 9335','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19350','Товар 9336','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19351','Товар 9337','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19352','Товар 9338','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19353','Товар 9339','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19354','Товар 9340','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19355','Товар 9341','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19356','Товар 9342','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19357','Товар 9343','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19358','Товар 9344','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19359','Товар 9345','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19360','Товар 9346','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19361','Товар 9347','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19362','Товар 9348','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19363','Товар 9349','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19364','Товар 9350','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19365','Товар 9351','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19366','Товар 9352','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19367','Товар 9353','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19368','Товар 9354','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19369','Товар 9355','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19370','Товар 9356','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19371','Товар 9357','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19372','Товар 9358','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19373','Товар 9359','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19374','Товар 9360','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19375','Товар 9361','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19376','Товар 9362','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19377','Товар 9363','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19378','Товар 9364','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19379','Товар 9365','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19380','Товар 9366','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19381','Товар 9367','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19382','Товар 9368','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19383','Товар 9369','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19384','Товар 9370','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19385','Товар 9371','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19386','Товар 9372','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19387','Товар 9373','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19388','Товар 9374','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19389','Товар 9375','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19390','Товар 9376','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19391','Товар 9377','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19392','Товар 9378','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19393','Товар 9379','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19394','Товар 9380','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19395','Товар 9381','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19396','Товар 9382','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19397','Товар 9383','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19398','Товар 9384','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19399','Товар 9385','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19400','Товар 9386','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19401','Товар 9387','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19402','Товар 9388','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19403','Товар 9389','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19404','Товар 9390','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19405','Товар 9391','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19406','Товар 9392','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19407','Товар 9393','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19408','Товар 9394','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19409','Товар 9395','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19410','Товар 9396','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19411','Товар 9397','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19412','Товар 9398','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19413','Товар 9399','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19414','Товар 9400','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19415','Товар 9401','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19416','Товар 9402','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19417','Товар 9403','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19418','Товар 9404','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19419','Товар 9405','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19420','Товар 9406','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19421','Товар 9407','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19422','Товар 9408','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19423','Товар 9409','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19424','Товар 9410','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19425','Товар 9411','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19426','Товар 9412','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19427','Товар 9413','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19428','Товар 9414','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19429','Товар 9415','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19430','Товар 9416','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19431','Товар 9417','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19432','Товар 9418','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19433','Товар 9419','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19434','Товар 9420','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19435','Товар 9421','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19436','Товар 9422','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19437','Товар 9423','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19438','Товар 9424','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19439','Товар 9425','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19440','Товар 9426','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19441','Товар 9427','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19442','Товар 9428','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19443','Товар 9429','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19444','Товар 9430','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19445','Товар 9431','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19446','Товар 9432','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19447','Товар 9433','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19448','Товар 9434','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19449','Товар 9435','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19450','Товар 9436','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19451','Товар 9437','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19452','Товар 9438','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19453','Товар 9439','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19454','Товар 9440','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19455','Товар 9441','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19456','Товар 9442','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19457','Товар 9443','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19458','Товар 9444','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19459','Товар 9445','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19460','Товар 9446','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19461','Товар 9447','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19462','Товар 9448','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19463','Товар 9449','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19464','Товар 9450','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19465','Товар 9451','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19466','Товар 9452','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19467','Товар 9453','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19468','Товар 9454','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19469','Товар 9455','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19470','Товар 9456','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19471','Товар 9457','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19472','Товар 9458','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19473','Товар 9459','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19474','Товар 9460','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19475','Товар 9461','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19476','Товар 9462','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19477','Товар 9463','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19478','Товар 9464','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19479','Товар 9465','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19480','Товар 9466','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19481','Товар 9467','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19482','Товар 9468','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19483','Товар 9469','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19484','Товар 9470','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19485','Товар 9471','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19486','Товар 9472','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19487','Товар 9473','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19488','Товар 9474','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19489','Товар 9475','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19490','Товар 9476','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19491','Товар 9477','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19492','Товар 9478','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19493','Товар 9479','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19494','Товар 9480','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19495','Товар 9481','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19496','Товар 9482','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19497','Товар 9483','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19498','Товар 9484','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19499','Товар 9485','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19500','Товар 9486','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19501','Товар 9487','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19502','Товар 9488','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19503','Товар 9489','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19504','Товар 9490','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19505','Товар 9491','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19506','Товар 9492','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19507','Товар 9493','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19508','Товар 9494','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19509','Товар 9495','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19510','Товар 9496','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19511','Товар 9497','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19512','Товар 9498','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19513','Товар 9499','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19514','Товар 9500','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19515','Товар 9501','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19516','Товар 9502','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19517','Товар 9503','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19518','Товар 9504','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19519','Товар 9505','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19520','Товар 9506','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19521','Товар 9507','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19522','Товар 9508','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19523','Товар 9509','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19524','Товар 9510','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19525','Товар 9511','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19526','Товар 9512','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19527','Товар 9513','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19528','Товар 9514','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19529','Товар 9515','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19530','Товар 9516','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19531','Товар 9517','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19532','Товар 9518','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19533','Товар 9519','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19534','Товар 9520','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19535','Товар 9521','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19536','Товар 9522','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19537','Товар 9523','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19538','Товар 9524','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19539','Товар 9525','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19540','Товар 9526','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19541','Товар 9527','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19542','Товар 9528','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19543','Товар 9529','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19544','Товар 9530','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19545','Товар 9531','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19546','Товар 9532','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19547','Товар 9533','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19548','Товар 9534','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19549','Товар 9535','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19550','Товар 9536','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19551','Товар 9537','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19552','Товар 9538','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19553','Товар 9539','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19554','Товар 9540','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19555','Товар 9541','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19556','Товар 9542','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19557','Товар 9543','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19558','Товар 9544','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19559','Товар 9545','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19560','Товар 9546','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19561','Товар 9547','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19562','Товар 9548','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19563','Товар 9549','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19564','Товар 9550','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19565','Товар 9551','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19566','Товар 9552','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19567','Товар 9553','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19568','Товар 9554','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19569','Товар 9555','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19570','Товар 9556','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19571','Товар 9557','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19572','Товар 9558','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19573','Товар 9559','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19574','Товар 9560','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19575','Товар 9561','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19576','Товар 9562','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19577','Товар 9563','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19578','Товар 9564','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19579','Товар 9565','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19580','Товар 9566','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19581','Товар 9567','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19582','Товар 9568','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19583','Товар 9569','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19584','Товар 9570','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19585','Товар 9571','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19586','Товар 9572','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19587','Товар 9573','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19588','Товар 9574','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19589','Товар 9575','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19590','Товар 9576','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19591','Товар 9577','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19592','Товар 9578','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19593','Товар 9579','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19594','Товар 9580','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19595','Товар 9581','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19596','Товар 9582','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19597','Товар 9583','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19598','Товар 9584','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19599','Товар 9585','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19600','Товар 9586','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19601','Товар 9587','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19602','Товар 9588','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19603','Товар 9589','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19604','Товар 9590','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19605','Товар 9591','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19606','Товар 9592','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19607','Товар 9593','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19608','Товар 9594','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19609','Товар 9595','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19610','Товар 9596','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19611','Товар 9597','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19612','Товар 9598','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19613','Товар 9599','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19614','Товар 9600','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19615','Товар 9601','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19616','Товар 9602','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19617','Товар 9603','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19618','Товар 9604','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19619','Товар 9605','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19620','Товар 9606','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19621','Товар 9607','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19622','Товар 9608','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19623','Товар 9609','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19624','Товар 9610','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19625','Товар 9611','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19626','Товар 9612','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19627','Товар 9613','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19628','Товар 9614','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19629','Товар 9615','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19630','Товар 9616','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19631','Товар 9617','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19632','Товар 9618','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19633','Товар 9619','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19634','Товар 9620','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19635','Товар 9621','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19636','Товар 9622','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19637','Товар 9623','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19638','Товар 9624','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19639','Товар 9625','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19640','Товар 9626','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19641','Товар 9627','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19642','Товар 9628','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19643','Товар 9629','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19644','Товар 9630','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19645','Товар 9631','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19646','Товар 9632','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19647','Товар 9633','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19648','Товар 9634','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19649','Товар 9635','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19650','Товар 9636','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19651','Товар 9637','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19652','Товар 9638','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19653','Товар 9639','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19654','Товар 9640','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19655','Товар 9641','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19656','Товар 9642','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19657','Товар 9643','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19658','Товар 9644','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19659','Товар 9645','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19660','Товар 9646','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19661','Товар 9647','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19662','Товар 9648','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19663','Товар 9649','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19664','Товар 9650','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19665','Товар 9651','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19666','Товар 9652','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19667','Товар 9653','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19668','Товар 9654','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19669','Товар 9655','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19670','Товар 9656','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19671','Товар 9657','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19672','Товар 9658','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19673','Товар 9659','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19674','Товар 9660','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19675','Товар 9661','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19676','Товар 9662','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19677','Товар 9663','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19678','Товар 9664','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19679','Товар 9665','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19680','Товар 9666','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19681','Товар 9667','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19682','Товар 9668','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19683','Товар 9669','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19684','Товар 9670','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19685','Товар 9671','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19686','Товар 9672','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19687','Товар 9673','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19688','Товар 9674','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19689','Товар 9675','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19690','Товар 9676','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19691','Товар 9677','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19692','Товар 9678','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19693','Товар 9679','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19694','Товар 9680','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19695','Товар 9681','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19696','Товар 9682','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19697','Товар 9683','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19698','Товар 9684','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19699','Товар 9685','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19700','Товар 9686','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19701','Товар 9687','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19702','Товар 9688','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19703','Товар 9689','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19704','Товар 9690','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19705','Товар 9691','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19706','Товар 9692','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19707','Товар 9693','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19708','Товар 9694','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19709','Товар 9695','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19710','Товар 9696','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19711','Товар 9697','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19712','Товар 9698','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19713','Товар 9699','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19714','Товар 9700','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19715','Товар 9701','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19716','Товар 9702','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19717','Товар 9703','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19718','Товар 9704','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19719','Товар 9705','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19720','Товар 9706','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19721','Товар 9707','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19722','Товар 9708','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19723','Товар 9709','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19724','Товар 9710','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19725','Товар 9711','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19726','Товар 9712','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19727','Товар 9713','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19728','Товар 9714','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19729','Товар 9715','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19730','Товар 9716','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19731','Товар 9717','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19732','Товар 9718','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19733','Товар 9719','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19734','Товар 9720','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19735','Товар 9721','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19736','Товар 9722','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19737','Товар 9723','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19738','Товар 9724','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19739','Товар 9725','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19740','Товар 9726','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19741','Товар 9727','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19742','Товар 9728','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19743','Товар 9729','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19744','Товар 9730','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19745','Товар 9731','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19746','Товар 9732','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19747','Товар 9733','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19748','Товар 9734','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19749','Товар 9735','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19750','Товар 9736','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19751','Товар 9737','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19752','Товар 9738','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19753','Товар 9739','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19754','Товар 9740','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19755','Товар 9741','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19756','Товар 9742','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19757','Товар 9743','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19758','Товар 9744','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19759','Товар 9745','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19760','Товар 9746','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19761','Товар 9747','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19762','Товар 9748','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19763','Товар 9749','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19764','Товар 9750','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19765','Товар 9751','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19766','Товар 9752','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19767','Товар 9753','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19768','Товар 9754','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19769','Товар 9755','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19770','Товар 9756','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19771','Товар 9757','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19772','Товар 9758','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19773','Товар 9759','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19774','Товар 9760','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19775','Товар 9761','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19776','Товар 9762','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19777','Товар 9763','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19778','Товар 9764','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19779','Товар 9765','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19780','Товар 9766','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19781','Товар 9767','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19782','Товар 9768','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19783','Товар 9769','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19784','Товар 9770','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19785','Товар 9771','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19786','Товар 9772','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19787','Товар 9773','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19788','Товар 9774','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19789','Товар 9775','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19790','Товар 9776','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19791','Товар 9777','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19792','Товар 9778','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19793','Товар 9779','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19794','Товар 9780','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19795','Товар 9781','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19796','Товар 9782','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19797','Товар 9783','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19798','Товар 9784','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19799','Товар 9785','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19800','Товар 9786','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19801','Товар 9787','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19802','Товар 9788','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19803','Товар 9789','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19804','Товар 9790','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19805','Товар 9791','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19806','Товар 9792','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19807','Товар 9793','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19808','Товар 9794','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19809','Товар 9795','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19810','Товар 9796','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19811','Товар 9797','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19812','Товар 9798','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19813','Товар 9799','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19814','Товар 9800','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19815','Товар 9801','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19816','Товар 9802','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19817','Товар 9803','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19818','Товар 9804','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19819','Товар 9805','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19820','Товар 9806','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19821','Товар 9807','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19822','Товар 9808','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19823','Товар 9809','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19824','Товар 9810','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19825','Товар 9811','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19826','Товар 9812','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19827','Товар 9813','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19828','Товар 9814','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19829','Товар 9815','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19830','Товар 9816','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19831','Товар 9817','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19832','Товар 9818','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19833','Товар 9819','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19834','Товар 9820','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19835','Товар 9821','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19836','Товар 9822','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19837','Товар 9823','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19838','Товар 9824','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19839','Товар 9825','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19840','Товар 9826','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19841','Товар 9827','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19842','Товар 9828','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19843','Товар 9829','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19844','Товар 9830','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19845','Товар 9831','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19846','Товар 9832','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19847','Товар 9833','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19848','Товар 9834','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19849','Товар 9835','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19850','Товар 9836','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19851','Товар 9837','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19852','Товар 9838','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19853','Товар 9839','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19854','Товар 9840','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19855','Товар 9841','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19856','Товар 9842','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19857','Товар 9843','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19858','Товар 9844','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19859','Товар 9845','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19860','Товар 9846','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19861','Товар 9847','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19862','Товар 9848','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19863','Товар 9849','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19864','Товар 9850','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19865','Товар 9851','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19866','Товар 9852','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19867','Товар 9853','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19868','Товар 9854','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19869','Товар 9855','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19870','Товар 9856','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19871','Товар 9857','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19872','Товар 9858','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19873','Товар 9859','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19874','Товар 9860','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19875','Товар 9861','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19876','Товар 9862','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19877','Товар 9863','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19878','Товар 9864','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19879','Товар 9865','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19880','Товар 9866','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19881','Товар 9867','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19882','Товар 9868','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19883','Товар 9869','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19884','Товар 9870','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19885','Товар 9871','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19886','Товар 9872','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19887','Товар 9873','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19888','Товар 9874','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19889','Товар 9875','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19890','Товар 9876','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19891','Товар 9877','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19892','Товар 9878','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19893','Товар 9879','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19894','Товар 9880','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19895','Товар 9881','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19896','Товар 9882','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19897','Товар 9883','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19898','Товар 9884','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19899','Товар 9885','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19900','Товар 9886','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19901','Товар 9887','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19902','Товар 9888','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19903','Товар 9889','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19904','Товар 9890','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19905','Товар 9891','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19906','Товар 9892','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19907','Товар 9893','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19908','Товар 9894','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19909','Товар 9895','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19910','Товар 9896','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19911','Товар 9897','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19912','Товар 9898','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19913','Товар 9899','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19914','Товар 9900','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19915','Товар 9901','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19916','Товар 9902','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19917','Товар 9903','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19918','Товар 9904','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19919','Товар 9905','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19920','Товар 9906','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19921','Товар 9907','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19922','Товар 9908','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19923','Товар 9909','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19924','Товар 9910','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19925','Товар 9911','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19926','Товар 9912','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19927','Товар 9913','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19928','Товар 9914','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19929','Товар 9915','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19930','Товар 9916','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19931','Товар 9917','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19932','Товар 9918','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19933','Товар 9919','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19934','Товар 9920','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19935','Товар 9921','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19936','Товар 9922','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19937','Товар 9923','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19938','Товар 9924','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19939','Товар 9925','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19940','Товар 9926','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19941','Товар 9927','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19942','Товар 9928','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19943','Товар 9929','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19944','Товар 9930','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19945','Товар 9931','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19946','Товар 9932','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19947','Товар 9933','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19948','Товар 9934','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19949','Товар 9935','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19950','Товар 9936','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19951','Товар 9937','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19952','Товар 9938','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19953','Товар 9939','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19954','Товар 9940','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19955','Товар 9941','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19956','Товар 9942','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19957','Товар 9943','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19958','Товар 9944','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19959','Товар 9945','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19960','Товар 9946','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19961','Товар 9947','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19962','Товар 9948','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19963','Товар 9949','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19964','Товар 9950','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19965','Товар 9951','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19966','Товар 9952','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19967','Товар 9953','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19968','Товар 9954','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19969','Товар 9955','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19970','Товар 9956','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19971','Товар 9957','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19972','Товар 9958','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19973','Товар 9959','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19974','Товар 9960','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19975','Товар 9961','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19976','Товар 9962','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19977','Товар 9963','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19978','Товар 9964','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19979','Товар 9965','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19980','Товар 9966','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19981','Товар 9967','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19982','Товар 9968','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19983','Товар 9969','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19984','Товар 9970','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19985','Товар 9971','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19986','Товар 9972','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19987','Товар 9973','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19988','Товар 9974','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19989','Товар 9975','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19990','Товар 9976','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19991','Товар 9977','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19992','Товар 9978','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19993','Товар 9979','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19994','Товар 9980','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19995','Товар 9981','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19996','Товар 9982','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19997','Товар 9983','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19998','Товар 9984','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('19999','Товар 9985','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('20000','Товар 9986','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('20001','Товар 9987','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('20002','Товар 9988','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('20003','Товар 9989','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('20004','Товар 9990','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('20005','Товар 9991','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('20006','Товар 9992','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('20007','Товар 9993','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('20008','Товар 9994','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('20009','Товар 9995','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('20010','Товар 9996','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('20011','Товар 9997','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('20012','Товар 9998','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('20013','Товар 9999','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('20014','Товар 10000','0','1','1','25.00','12.2000','1','1')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('20015','Бархат','100','2','3','2.00','1200.0000','1','0')~
INSERT INTO `stock_products` (`product_id`,`product_name`,`product_roll`,`product_measurement`,`product_color`,`product_price`,`product_quantity`,`product_status`,`product_sales`) VALUES
('20016','Шелк','0','1','1','7.00','1200.0000','1','0')~
-- -------------------------------------------~
-- TABLE DATA stock_profiles~
-- -------------------------------------------~
INSERT INTO `stock_profiles` (`user_id`,`lastname`,`firstname`) VALUES
('1','admin','Administrator')~
INSERT INTO `stock_profiles` (`user_id`,`lastname`,`firstname`) VALUES
('2','Demo','Demo')~
-- -------------------------------------------~
-- TABLE DATA stock_profiles_fields~
-- -------------------------------------------~
INSERT INTO `stock_profiles_fields` (`id`,`varname`,`title`,`field_type`,`field_size`,`field_size_min`,`required`,`match`,`range`,`error_message`,`other_validator`,`default`,`widget`,`widgetparams`,`position`,`visible`) VALUES
('1','lastname','Last Name','VARCHAR','50','3','1','','','Incorrect Last Name (length between 3 and 50 characters).','','','','','1','3')~
INSERT INTO `stock_profiles_fields` (`id`,`varname`,`title`,`field_type`,`field_size`,`field_size_min`,`required`,`match`,`range`,`error_message`,`other_validator`,`default`,`widget`,`widgetparams`,`position`,`visible`) VALUES
('2','firstname','First Name','VARCHAR','50','3','1','','','Incorrect First Name (length between 3 and 50 characters).','','','','','0','3')~
-- -------------------------------------------~
-- TABLE DATA stock_providers~
-- -------------------------------------------~
INSERT INTO `stock_providers` (`provider_id`,`provider_name`,`provider_debt`,`provider_category`,`provider_comment`) VALUES
('3','Поставщик 1','34400.00','0','qwerty')~
INSERT INTO `stock_providers` (`provider_id`,`provider_name`,`provider_debt`,`provider_category`,`provider_comment`) VALUES
('4','Поставщик 22','5400.00','0','')~
-- -------------------------------------------~
-- TABLE DATA stock_providers_invoices~
-- -------------------------------------------~
INSERT INTO `stock_providers_invoices` (`invoice_id`,`invoice_code`,`invoice_datetime`,`invoice_provider_id`,`invoice_summ`,`invoice_extra`,`invoice_manager_comment`,`invoice_status`) VALUES
('77','772','2014-06-19 20:47:39','4','5400.00','2','всё ок','2')~
-- -------------------------------------------~
-- TABLE DATA stock_returns~
-- -------------------------------------------~
INSERT INTO `stock_returns` (`return_id`,`return_datetime`,`invoice_id`,`invoice_row`,`client_id`,`product_id`,`product_name`,`product_color`,`product_measurement`,`product_quantity`,`product_roll`,`product_price`,`product_total`,`return_status`) VALUES
('11','2014-06-19 20:55:59','18','18','1117','20015','Бархат','3','1','260.0000','5','2.00','520.00','0')~
INSERT INTO `stock_returns` (`return_id`,`return_datetime`,`invoice_id`,`invoice_row`,`client_id`,`product_id`,`product_name`,`product_color`,`product_measurement`,`product_quantity`,`product_roll`,`product_price`,`product_total`,`return_status`) VALUES
('12','2014-06-19 21:07:57','17','17','1117','10014','Товар 0','1','1','140.0000','4','25.00','3500.00','0')~
INSERT INTO `stock_returns` (`return_id`,`return_datetime`,`invoice_id`,`invoice_row`,`client_id`,`product_id`,`product_name`,`product_color`,`product_measurement`,`product_quantity`,`product_roll`,`product_price`,`product_total`,`return_status`) VALUES
('13','2014-06-19 21:08:40','16','15','1117','10016','Товар 2','1','1','90.0000','4','25.00','2750.00','0')~
INSERT INTO `stock_returns` (`return_id`,`return_datetime`,`invoice_id`,`invoice_row`,`client_id`,`product_id`,`product_name`,`product_color`,`product_measurement`,`product_quantity`,`product_roll`,`product_price`,`product_total`,`return_status`) VALUES
('14','2014-06-20 10:13:56','18','18','1117','20015','Бархат','3','1','260.0000','5','2.00','520.00','1')~
-- -------------------------------------------~
-- TABLE DATA stock_users~
-- -------------------------------------------~
INSERT INTO `stock_users` (`id`,`username`,`password`,`email`,`activkey`,`create_at`,`lastvisit_at`,`superuser`,`status`) VALUES
('1','admin','<PASSWORD>','<EMAIL>','3500.00','2014-04-30 00:50:18','2014-06-16 14:57:38','1','1')~
INSERT INTO `stock_users` (`id`,`username`,`password`,`email`,`activkey`,`create_at`,`lastvisit_at`,`superuser`,`status`) VALUES
('2','demo','<PASSWORD>','<EMAIL>','0.00','2014-04-30 00:50:18','0000-00-00 00:00:00','0','1')~
INSERT INTO `stock_users` (`id`,`username`,`password`,`email`,`activkey`,`create_at`,`lastvisit_at`,`superuser`,`status`) VALUES
('3','Неизвестный','1234','<EMAIL>','520.00','2014-06-19 19:52:52','0000-00-00 00:00:00','0','0')~
-- -------------------------------------------~
SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS~
SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS~
-- -------------------------------------------~
-- -------------------------------------------~
-- END BACKUP~
-- -------------------------------------------~
<file_sep><?php
/* @var $this ProductsUsersController */
/* @var $model ProductsUsers */
$this->breadcrumbs=array(
'Products Users'=>array('index'),
'Create',
);
$this->menu=array(
array('label'=>'List ProductsUsers', 'url'=>array('index')),
array('label'=>'Manage ProductsUsers', 'url'=>array('admin')),
);
?>
<h1>Create ProductsUsers</h1>
<?php $this->renderPartial('_form', array('model'=>$model)); ?><file_sep><?php
class ReportController extends Controller
{
public function filters()
{
return array(
'accessControl', // perform access control for CRUD operations
'postOnly + delete', // we only allow deletion via POST request
);
}
/**
* Specifies the access control rules.
* This method is used by the 'accessControl' filter.
* @return array access control rules
*/
public function accessRules()
{
return array(
array('allow', // allow authenticated user to perform 'create' and 'update' actions
'actions'=>array('todaySales'),
'users'=>array('@'),
),
array('allow', // allow authenticated user to perform 'create' and 'update' actions
'actions'=>array(),
'users'=>array('admin'),
),
array('allow', // allow admin user to perform 'admin' and 'delete' actions
'actions'=>array('delete'),
'users'=>array('admin'),
),
array('deny', // deny all users
'users'=>array('*'),
),
);
}
/* public $invoices_header_styles = array(
'fill' => array(
'type' => PHPExcel_STYLE_FILL::FILL_SOLID,
'color'=>array(
'rgb' => 'CCCCCC'
)
),
'font'=>array(
'bold' => true,
),
'borders'=>array(
'outline' => array(
'style'=>PHPExcel_Style_Border::BORDER_THIN,
'color' => array(
'rgb'=>'000000'
)
),
'allborders'=>array(
'style'=>PHPExcel_Style_Border::BORDER_THIN,
'color' => array(
'rgb'=>'000000'
)
),
),
);
public $invoices_data_styles = array(
'alignment' => array(
'horizontal' => PHPExcel_STYLE_ALIGNMENT::HORIZONTAL_LEFT,
),
);
public $invoices_total_styles = array(
'alignment' => array(
'horizontal' => PHPExcel_STYLE_ALIGNMENT::HORIZONTAL_RIGHT,
),
'font'=>array(
'bold' => true,
),
);
public $invoices_sum_styles = array(
'alignment' => array(
'horizontal' => PHPExcel_STYLE_ALIGNMENT::HORIZONTAL_RIGHT,
),
'font'=>array(
'bold' => true,
),
'locked' => false,
'hidden' => true
);
*/
public function actionIndex()
{
$clients=new Clients;
$providers=new Providers;
$this->render('index', array(
'clients' => $clients,
'providers' => $providers,
//'sales' => $sales,
));
}
/*
public function actionByClient($id)
{
$client = Clients::model()->findByPk($id);
$objPHPExcel = new PHPExcel();
$objPHPExcel->setActiveSheetIndex(0)
->setCellValue('A1', 'Клиент: ' . $client->client_name . ' (#'. $client->client_id .')')
->setCellValue('A2', 'Текущий долг: ' . $client->client_debt);
$invoices_criteria = new CDbCriteria;
$invoices_criteria->condition='invoice_client_id=:invoice_client_id';
$invoices_criteria->params=array(':invoice_client_id'=>$id);
$invoices = ClientsInvoices::model()->findAll($invoices_criteria);
$objPHPExcel->setActiveSheetIndex(0)
->setCellValue('A4', 'Код')
->setCellValue('B4', 'Дата составления')
->setCellValue('C4', 'Продавец')
->setCellValue('D4', 'Статус')
->setCellValue('E4', 'Сумма')
;
$start_point = 5;
$counter = 5;
foreach($invoices as $invoice){
$objPHPExcel->setActiveSheetIndex(0)
->setCellValue('A'.$counter, $invoice->invoice_code)
->setCellValue('B'.$counter, $invoice->invoice_datetime)
->setCellValue('C'.$counter, $invoice->invoiceSeller->username)
->setCellValue('D'.$counter, Yii::app()->controller->invoices_conditions[$invoice->invoice_status])
->setCellValue('E'.$counter, $invoice->invoice_summ)
;
$counter++;
}
$final_point = $counter - 1;
$objPHPExcel->getActiveSheet()->setCellValue('D'.$counter, 'Всего:');
$objPHPExcel->getActiveSheet()->setCellValue('E'.$counter, '=SUM(E5:E'.$final_point.')');
$objPHPExcel->getActiveSheet()->getStyle('D'.$counter)->applyFromArray($this->invoices_total_styles);
$objPHPExcel->getActiveSheet()->getStyle('E'.$counter)->applyFromArray($this->invoices_sum_styles);
$objPHPExcel->getActiveSheet()->setTitle('Отчет по клиенту');
$objPHPExcel->setActiveSheetIndex(0);
$objPHPExcel->getActiveSheet()->getStyle('A4:E4')->applyFromArray($this->invoices_header_styles);
$objPHPExcel->getActiveSheet()->getStyle('A'.$start_point.':E'.$counter)->applyFromArray($this->invoices_data_styles);
$objPHPExcel->getActiveSheet()->mergeCells('A1:E1');
$objPHPExcel->getActiveSheet()->getColumnDimension('A')->setWidth(15);
$objPHPExcel->getActiveSheet()->getColumnDimension('B')->setWidth(25);
$objPHPExcel->getActiveSheet()->getColumnDimension('C')->setWidth(25);
$objPHPExcel->getActiveSheet()->getColumnDimension('D')->setWidth(15);
$objPHPExcel->getActiveSheet()->getColumnDimension('E')->setWidth(15);
$filename = 'Отчет по клиенту';
header('Content-Type: application/vnd.ms-excel');
header('Content-Disposition: attachment;filename="'.$filename.'.xls"');
header('Cache-Control: max-age=0');
$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel5');
$objWriter->setPreCalculateFormulas(FALSE);
$objWriter->save('php://output');
unset($this->objWriter);
unset($this->objWorksheet);
unset($this->objReader);
unset($this->objPHPExcel);
Yii::app()->end();
}
public function actionByProvider($id)
{
$provider = Providers::model()->findByPk($id);
$objPHPExcel = new PHPExcel();
$objPHPExcel->setActiveSheetIndex(0)
->setCellValue('A1', 'Поставщик: ' . $provider->provider_name . ' (#'. $provider->provider_id .')')
->setCellValue('A2', 'Текущий долг: ' . $provider->provider_debt);
$invoices_criteria = new CDbCriteria;
$invoices_criteria->condition='invoice_provider_id=:invoice_provider_id';
$invoices_criteria->params=array(':invoice_provider_id'=>$id);
$invoices = ProvidersInvoices::model()->findAll($invoices_criteria);
$objPHPExcel->setActiveSheetIndex(0)
->setCellValue('A4', 'Код')
->setCellValue('B4', 'Дата составления')
->setCellValue('C4', 'Статус')
->setCellValue('D4', 'Сумма')
;
$start_point = 5;
$counter = 5;
foreach($invoices as $invoice){
$objPHPExcel->setActiveSheetIndex(0)
->setCellValue('A'.$counter, $invoice->invoice_code)
->setCellValue('B'.$counter, $invoice->invoice_datetime)
->setCellValue('C'.$counter, Yii::app()->controller->invoices_conditions[$invoice->invoice_status])
->setCellValue('D'.$counter, $invoice->invoice_summ)
;
$counter++;
}
$final_point = $counter - 1;
$objPHPExcel->getActiveSheet()->setCellValue('C'.$counter, 'Всего:');
$objPHPExcel->getActiveSheet()->setCellValue('D'.$counter, '=SUM(D5:D'.$final_point.')');
$objPHPExcel->getActiveSheet()->getStyle('C'.$counter)->applyFromArray($this->invoices_total_styles);
$objPHPExcel->getActiveSheet()->getStyle('D'.$counter)->applyFromArray($this->invoices_sum_styles);
$objPHPExcel->getActiveSheet()->setTitle('Отчет по поставщику');
$objPHPExcel->setActiveSheetIndex(0);
$objPHPExcel->getActiveSheet()->getStyle('A4:D4')->applyFromArray($this->invoices_header_styles);
$objPHPExcel->getActiveSheet()->getStyle('A'.$start_point.':D'.$counter)->applyFromArray($this->invoices_data_styles);
$objPHPExcel->getActiveSheet()->mergeCells('A1:D1');
$objPHPExcel->getActiveSheet()->getColumnDimension('A')->setWidth(15);
$objPHPExcel->getActiveSheet()->getColumnDimension('B')->setWidth(25);
$objPHPExcel->getActiveSheet()->getColumnDimension('C')->setWidth(15);
$objPHPExcel->getActiveSheet()->getColumnDimension('D')->setWidth(15);
$filename = 'Отчет по поставщику';
header('Content-Type: application/vnd.ms-excel');
header('Content-Disposition: attachment;filename="'.$filename.'.xls"');
header('Cache-Control: max-age=0');
$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel5');
$objWriter->setPreCalculateFormulas(FALSE);
$objWriter->save('php://output');
unset($this->objWriter);
unset($this->objWorksheet);
unset($this->objReader);
unset($this->objPHPExcel);
Yii::app()->end();
}
public function actionBySeller($id)
{
$user = Users::model()->findByPk($id);
$objPHPExcel = new PHPExcel();
$objPHPExcel->setActiveSheetIndex(0)
->setCellValue('A1', 'Продавец: ' . $user->username . ' (#'. $user->id .')');
//->setCellValue('A2', 'Текущий долг: ' . $user->client_debt);
$invoices_criteria = new CDbCriteria;
$invoices_criteria->condition='invoice_seller_id=:invoice_seller_id';
$invoices_criteria->params=array(':invoice_seller_id'=>$id);
$invoices = ClientsInvoices::model()->findAll($invoices_criteria);
$objPHPExcel->setActiveSheetIndex(0)
->setCellValue('A4', 'Код')
->setCellValue('B4', 'Дата составления')
->setCellValue('C4', 'Продавец')
->setCellValue('D4', 'Статус')
->setCellValue('E4', 'Сумма')
;
$start_point = 5;
$counter = 5;
foreach($invoices as $invoice){
$objPHPExcel->setActiveSheetIndex(0)
->setCellValue('A'.$counter, $invoice->invoice_code)
->setCellValue('B'.$counter, $invoice->invoice_datetime)
->setCellValue('C'.$counter, $invoice->invoiceSeller->username)
->setCellValue('D'.$counter, Yii::app()->controller->invoices_conditions[$invoice->invoice_status])
->setCellValue('E'.$counter, $invoice->invoice_summ)
;
$counter++;
}
$final_point = $counter - 1;
$objPHPExcel->getActiveSheet()->setCellValue('D'.$counter, 'Всего:');
$objPHPExcel->getActiveSheet()->setCellValue('E'.$counter, '=SUM(E5:E'.$final_point.')');
$objPHPExcel->getActiveSheet()->getStyle('D'.$counter)->applyFromArray($this->invoices_total_styles);
$objPHPExcel->getActiveSheet()->getStyle('E'.$counter)->applyFromArray($this->invoices_sum_styles);
$objPHPExcel->getActiveSheet()->setTitle('Отчет по продавцу');
$objPHPExcel->setActiveSheetIndex(0);
$objPHPExcel->getActiveSheet()->getStyle('A4:E4')->applyFromArray($this->invoices_header_styles);
$objPHPExcel->getActiveSheet()->getStyle('A'.$start_point.':E'.$counter)->applyFromArray($this->invoices_data_styles);
$objPHPExcel->getActiveSheet()->mergeCells('A1:E1');
$objPHPExcel->getActiveSheet()->getColumnDimension('A')->setWidth(15);
$objPHPExcel->getActiveSheet()->getColumnDimension('B')->setWidth(25);
$objPHPExcel->getActiveSheet()->getColumnDimension('C')->setWidth(25);
$objPHPExcel->getActiveSheet()->getColumnDimension('D')->setWidth(15);
$objPHPExcel->getActiveSheet()->getColumnDimension('E')->setWidth(15);
$filename = 'Отчет по продавцу';
header('Content-Type: application/vnd.ms-excel');
header('Content-Disposition: attachment;filename="'.$filename.'.xls"');
header('Cache-Control: max-age=0');
$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel5');
$objWriter->setPreCalculateFormulas(FALSE);
$objWriter->save('php://output');
unset($this->objWriter);
unset($this->objWorksheet);
unset($this->objReader);
unset($this->objPHPExcel);
Yii::app()->end();
}
public function actionByDatesold()
{
if(isset($_GET['from']) && isset($_GET['to'])){
$from = $_GET['from'];
$to = $_GET['to'];
$objPHPExcel = new PHPExcel();
$objPHPExcel->setActiveSheetIndex(0)
->setCellValue('A1', 'От: ' . $from)
->setCellValue('A2', 'До: ' . $to);
$invoices_criteria = new CDbCriteria;
$invoices_criteria->addBetweenCondition('invoice_datetime', $from, $to, 'OR');
$invoices = ClientsInvoices::model()->findAll($invoices_criteria);
$objPHPExcel->setActiveSheetIndex(0)
->setCellValue('A4', 'Код')
->setCellValue('B4', 'Дата составления')
->setCellValue('C4', 'Продавец')
->setCellValue('D4', 'Статус')
->setCellValue('E4', 'Сумма')
;
$start_point = 5;
$counter = 5;
foreach($invoices as $invoice){
$objPHPExcel->setActiveSheetIndex(0)
->setCellValue('A'.$counter, $invoice->invoice_code)
->setCellValue('B'.$counter, $invoice->invoice_datetime)
->setCellValue('C'.$counter, $invoice->invoiceSeller->username)
->setCellValue('D'.$counter, Yii::app()->controller->invoices_conditions[$invoice->invoice_status])
->setCellValue('E'.$counter, $invoice->invoice_summ)
;
$counter++;
}
$final_point = $counter - 1;
$objPHPExcel->getActiveSheet()->setCellValue('D'.$counter, 'Всего:');
$objPHPExcel->getActiveSheet()->setCellValue('E'.$counter, '=SUM(E5:E'.$final_point.')');
$objPHPExcel->getActiveSheet()->getStyle('D'.$counter)->applyFromArray($this->invoices_total_styles);
$objPHPExcel->getActiveSheet()->getStyle('E'.$counter)->applyFromArray($this->invoices_sum_styles);
$objPHPExcel->getActiveSheet()->setTitle('Отчет по времени');
$objPHPExcel->setActiveSheetIndex(0);
$objPHPExcel->getActiveSheet()->getStyle('A4:E4')->applyFromArray($this->invoices_header_styles);
$objPHPExcel->getActiveSheet()->getStyle('A'.$start_point.':E'.$counter)->applyFromArray($this->invoices_data_styles);
$objPHPExcel->getActiveSheet()->mergeCells('A1:B1');
$objPHPExcel->getActiveSheet()->mergeCells('A2:B2');
$objPHPExcel->getActiveSheet()->getColumnDimension('A')->setWidth(15);
$objPHPExcel->getActiveSheet()->getColumnDimension('B')->setWidth(25);
$objPHPExcel->getActiveSheet()->getColumnDimension('C')->setWidth(25);
$objPHPExcel->getActiveSheet()->getColumnDimension('D')->setWidth(15);
$objPHPExcel->getActiveSheet()->getColumnDimension('E')->setWidth(15);
$filename = 'Отчет по времени';
header('Content-Type: application/vnd.ms-excel');
header('Content-Disposition: attachment;filename="'.$filename.'.xls"');
header('Cache-Control: max-age=0');
$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel5');
$objWriter->setPreCalculateFormulas(FALSE);
$objWriter->save('php://output');
unset($this->objWriter);
unset($this->objWorksheet);
unset($this->objReader);
unset($this->objPHPExcel);
Yii::app()->end();
}
}
*/
public function actionSales()
{
$model = Yii::app()->db->createCommand()
->select('*, SUM(product_quantity) as product_q, SUM(product_total) as product_t')
->from('stock_invoices_products')
//->join('stock_checks_invoices','invoice_id=invoice_id')
->where('return_status = 0')
->group('product_id')
->order('id DESC')
->queryAll();
//var_dump($model);
$this->render('sales',array(
'model'=>$model,
));
}
public function actionTodaySales(){
$model=new ChecksInvoices('search');
$model->unsetAttributes(); // clear any default value
if(isset($_GET['ChecksInvoices']))
$model->attributes=$_GET['ChecksInvoices'];
$this->render('todaysales',array(
'model'=>$model,
));
}
/*
public function actionByDates()
{
if(isset($_GET['from']) && isset($_GET['to'])){
$from = $_GET['from'];
$to = $_GET['to'];
$model=new ChecksInvoices('search');
$model->unsetAttributes(); // clear any default values
if(isset($_GET['ChecksInvoices']))
$model->attributes=$_GET['ChecksInvoices'];
$this->render('checks',array(
'model'=>$model,
));
}
}
*/
public function actionR1()
{
if(isset($_GET['from']) && isset($_GET['to'])){
$from = $_GET['from'];
$to = $_GET['to'];
} else {
$from = date('Y-m-d', time()-30*24*3600);
$to = date('Y-m-d');
}
$products = array();
$productsall = array();
$where = '';
$bind = array();
$productName = '';
if(isset($_GET['productName']) && $_GET['productName'] !== ''){
$where .= 'AND stock_products.product_name LIKE :name ';
$bind['name'] = '%'.$_GET['productName'].'%';
$productName = $_GET['productName'];
}
if (isset($_GET['category']) && $_GET['category']>0) {
$where.='AND product_category = :category ';
$bind['category'] = $_GET['category'];
}
if (isset($_GET['seller']) && $_GET['seller']>0) {
$where.='AND stock_checks_invoices.invoice_seller_id = :seller ';
$bind['seller'] = $_GET['seller'];
}
$modelsall = Yii::app()->db->createCommand()
->select('stock_invoices_products.product_id,stock_products.product_code, stock_products.product_name, SUM(stock_invoices_products.product_quantity) as sum_quantity_out, SUM(stock_invoices_products.product_total) as sum_total_out, SUM(stock_invoices_products.product_roll) as total_rolls_out')
->from('stock_invoices_products')
->join('stock_checks_invoices','stock_invoices_products.invoice_id=stock_checks_invoices.invoice_id')
->join('stock_products','stock_invoices_products.product_id=stock_products.product_id')
->where('return_status = 0 AND invoice_datetime >= "'.$from.' 00:00:00" AND invoice_datetime <= "'.$to.' 23:59:00" '.$where, $bind)
->order('id DESC')
->group('stock_invoices_products.product_id')
->queryAll();
foreach ($modelsall as $modelall) {
$productsall[$modelall['product_id']] = $modelall;
$productsall[$modelall['product_id']]['sum_quantity_in'] = 0;
$productsall[$modelall['product_id']]['sum_total_in'] = 0;
$productsall[$modelall['product_id']]['total_rolls_in'] = 0;
}
$count = count($modelsall);
$pages = new CPagination($count);
$pages->pageSize=10;
$models = Yii::app()->db->createCommand()
->select('stock_invoices_products.product_id,stock_products.product_code, stock_products.product_name, SUM(stock_invoices_products.product_quantity) as sum_quantity_out, SUM(stock_invoices_products.product_total) as sum_total_out, SUM(stock_invoices_products.product_roll) as total_rolls_out')
->from('stock_invoices_products')
->join('stock_checks_invoices','stock_invoices_products.invoice_id=stock_checks_invoices.invoice_id')
->join('stock_products','stock_invoices_products.product_id=stock_products.product_id')
->where('return_status = 0 AND invoice_datetime >= "'.$from.' 00:00:00" AND invoice_datetime <= "'.$to.' 23:59:00" '.$where, $bind)
->offset('offset :offset')
->limit($pages->pageSize, $pages->currentPage*$pages->pageSize)
->order('id DESC')
->group('stock_invoices_products.product_id')
->queryAll();
foreach ($models as $model) {
$products[$model['product_id']] = $model;
$products[$model['product_id']]['sum_quantity_in'] = 0;
$products[$model['product_id']]['sum_total_in'] = 0;
$products[$model['product_id']]['total_rolls_in'] = 0;
}
$where = '';
$bind = array();
if(isset($_GET['productName']) && $_GET['productName'] !== ''){
$where .= 'AND stock_products.product_name LIKE :name ';
$bind['name'] = '%'.$_GET['productName'].'%';
}
if (isset($_GET['category']) && $_GET['category']>0) {
$where.='AND stock_products.product_category = :category ';
$bind['category'] = $_GET['category'];
}
if (isset($_GET['seller']) && $_GET['seller']>0) {
$where.='AND stock_providers_invoices.invoice_receiver = :seller ';
$bind['seller'] = $_GET['seller'];
}
$modelsall = Yii::app()->db->createCommand()
->select('stock_expected_products.product_id, stock_products.product_code, stock_products.product_name, SUM(stock_expected_products.product_quantity) as sum_quantity_in, SUM(stock_expected_products.product_total) as sum_total_in, SUM(stock_expected_products.product_roll) as total_rolls_in')
->from('stock_expected_products')
->join('stock_providers_invoices','stock_expected_products.invoice_id=stock_providers_invoices.invoice_id')
->join('stock_products','stock_expected_products.product_code=stock_products.product_code')
->where('invoice_datetime >= "'.$from.' 00:00:00" AND invoice_datetime <= "'.$to.' 23:59:00" '.$where, $bind)
->order('stock_expected_products.product_id DESC')
->group('stock_products.product_code')
->queryAll();
foreach ($modelsall as $modelall) {
if (isset($productsall[$modelall['product_id']])) {
$productsall[$modelall['product_id']]['sum_quantity_in'] = $modelall['sum_quantity_in'];
$productsall[$modelall['product_id']]['sum_total_in'] = $modelall['sum_total_in'];
$productsall[$modelall['product_id']]['total_rolls_in'] = $modelall['total_rolls_in'];
}else {
$productsall[$modelall['product_id']] = $modelall;
$productsall[$modelall['product_id']]['sum_quantity_out'] = 0;
$productsall[$modelall['product_id']]['sum_total_out'] = 0;
$productsall[$modelall['product_id']]['total_rolls_out'] = 0;
}
}
$models = Yii::app()->db->createCommand()
->select('stock_expected_products.product_id, stock_products.product_code, stock_products.product_name, SUM(stock_expected_products.product_quantity) as sum_quantity_in, SUM(stock_expected_products.product_total) as sum_total_in, SUM(stock_expected_products.product_roll) as total_rolls_in')
->from('stock_expected_products')
->join('stock_providers_invoices','stock_expected_products.invoice_id=stock_providers_invoices.invoice_id')
->join('stock_products','stock_expected_products.product_code=stock_products.product_code')
->where('invoice_datetime >= "'.$from.' 00:00:00" AND invoice_datetime <= "'.$to.' 23:59:00" '.$where, $bind)
->order('stock_expected_products.product_id DESC')
->group('stock_products.product_code')
->limit($pages->pageSize, $pages->currentPage*$pages->pageSize)
->queryAll();
foreach ($models as $model) {
if (isset($products[$model['product_id']])) {
$products[$model['product_id']]['sum_quantity_in'] = $model['sum_quantity_in'];
$products[$model['product_id']]['sum_total_in'] = $model['sum_total_in'];
$products[$model['product_id']]['total_rolls_in'] = $model['total_rolls_in'];
}else {
$products[$model['product_id']] = $model;
$products[$model['product_id']]['sum_quantity_out'] = 0;
$products[$model['product_id']]['sum_total_out'] = 0;
$products[$model['product_id']]['total_rolls_out'] = 0;
}
}
$sum_allq_in = 0;
$sum_allt_in = 0;
$sum_allr_in = 0;
$sum_allq_out = 0;
$sum_allt_out = 0;
$sum_allr_out = 0;
foreach ($productsall as $product) {
$sum_allq_in += $product['sum_quantity_in'];
$sum_allt_in += $product['sum_total_in'];
$sum_allr_in += $product['total_rolls_in'];
$sum_allq_out += $product['sum_quantity_out'];
$sum_allt_out += $product['sum_total_out'];
$sum_allr_out += $product['total_rolls_out'];
}
$this->render('r1',array(
'from' => $from,
'to' => $to,
'products'=>$products,
'pages'=>$pages,
'productName'=>$productName,
'sum_allq_in'=>$sum_allq_in,
'sum_allt_in'=>$sum_allt_in,
'sum_allr_in'=>$sum_allr_in,
'sum_allq_out'=>$sum_allq_out,
'sum_allt_out'=>$sum_allt_out,
'sum_allr_out'=>$sum_allr_out,
));
}
public function actionR2()
{
if(isset($_GET['from']) && isset($_GET['to'])){
$from = $_GET['from'];
$to = $_GET['to'];
} else {
$from = date('Y-m-d', time()-30*24*3600);
$to = date('Y-m-d');
}
$where = '';
$bind = array();
$productName = '';
if(isset($_GET['productName']) && $_GET['productName'] !== ''){
$where .= 'AND stock_products.product_name LIKE :name ';
$bind['name'] = '%'.$_GET['productName'].'%';
$productName = $_GET['productName'];
}
if (isset($_GET['category']) && $_GET['category']>0) {
$where.='AND stock_products.product_category = :category ';
$bind['category'] = $_GET['category'];
}
if (isset($_GET['seller']) && $_GET['seller']>0) {
$where.='AND stock_checks_invoices.invoice_seller_id = :seller ';
$bind['seller'] = $_GET['seller'];
}
$sum_all_product_price_b = 0;
$sum_all_product_price = 0;
$sum_all_product_roll = 0;
$sum_all_product_quantity = 0;
$sum_all_product_total = 0;
$sum_all_profit = 0;
$productsall = Yii::app()->db->createCommand()
->select('
stock_invoices_products.invoice_id,
stock_products.product_code,
stock_products.product_name,
stock_checks_invoices.invoice_datetime,
stock_products.product_price_b,
stock_invoices_products.product_roll,
stock_invoices_products.product_price,
stock_invoices_products.product_quantity,
stock_invoices_products.product_total,
')
->from('stock_invoices_products')
->join('stock_checks_invoices','stock_invoices_products.invoice_id=stock_checks_invoices.invoice_id')
->join('stock_products','stock_invoices_products.product_id=stock_products.product_id')
->join('stock_expected_products','stock_invoices_products.product_id=stock_expected_products.product_id')
->where('return_status = 0 AND invoice_datetime >= "'.$from.' 00:00:00" AND invoice_datetime <= "'.$to.' 23:59:00" '.$where, $bind)
->order('stock_invoices_products.invoice_id DESC')
->queryAll();
foreach ($productsall as $product) {
$profit = ($product['product_total'] - ($product['product_price_b']*$product['product_quantity']));
$sum_all_product_price_b += $product['product_price_b'];
$sum_all_product_price += $product['product_price'];
$sum_all_product_roll += $product['product_roll'];
$sum_all_product_quantity += $product['product_quantity'];
$sum_all_product_total += $product['product_total'];
$sum_all_profit += $profit;
}
$count = count($productsall);
$pages = new CPagination($count);
$pages->pageSize=20;
$products = Yii::app()->db->createCommand()
->select('
stock_invoices_products.invoice_id,
stock_products.product_code,
stock_products.product_name,
stock_checks_invoices.invoice_datetime,
stock_products.product_price_b,
stock_invoices_products.product_roll,
stock_invoices_products.product_price,
stock_invoices_products.product_quantity,
stock_invoices_products.product_total,
')
->from('stock_invoices_products')
->join('stock_checks_invoices','stock_invoices_products.invoice_id=stock_checks_invoices.invoice_id')
->join('stock_products','stock_invoices_products.product_id=stock_products.product_id')
->join('stock_expected_products','stock_invoices_products.product_id=stock_expected_products.product_id')
->where('return_status = 0 AND invoice_datetime >= "'.$from.' 00:00:00" AND invoice_datetime <= "'.$to.' 23:59:00" '.$where, $bind)
->order('stock_invoices_products.invoice_id DESC')
->limit($pages->pageSize, $pages->currentPage*$pages->pageSize)
->queryAll();
$this->render('r2',array(
'from' => $from,
'to' => $to,
'products'=>$products,
'pages'=>$pages,
'productName'=>$productName,
'sum_all_product_price_b'=>$sum_all_product_price_b,
'sum_all_product_price'=>$sum_all_product_price,
'sum_all_product_roll'=>$sum_all_product_roll,
'sum_all_product_quantity'=>$sum_all_product_quantity,
'sum_all_product_total'=>$sum_all_product_total,
'sum_all_profit'=>$sum_all_profit,
));
}
public function actionR3()
{
if(isset($_GET['from']) && isset($_GET['to'])){
$from = $_GET['from'];
$to = $_GET['to'];
} else {
$from = date('Y-m-d', time()-30*24*3600);
$to = date('Y-m-d');
}
$products = array();
$productsall = array();
$where = '';
$bind = array();
$productName = '';
if(isset($_GET['productName']) && $_GET['productName'] !== ''){
$where .= 'AND stock_products.product_name LIKE :name ';
$bind['name'] = '%'.$_GET['productName'].'%';
$productName = $_GET['productName'];
}
if (isset($_GET['category']) && $_GET['category']>0) {
$where.='AND product_category = :category ';
$bind['category'] = $_GET['category'];
}
if (isset($_GET['seller']) && $_GET['seller']>0) {
$where.='AND stock_checks_invoices.invoice_seller_id = :seller ';
$bind['seller'] = $_GET['seller'];
}
$sum_all_q_out = 0;
$sum_all_t_out = 0;
$sum_all_r_out = 0;
$modelsall = Yii::app()->db->createCommand()
->select('stock_invoices_products.product_id,stock_products.product_code, stock_products.product_name, stock_invoices_products.product_price, SUM(stock_invoices_products.product_quantity) as sum_quantity_out, SUM(stock_invoices_products.product_total) as sum_total_out, SUM(stock_invoices_products.product_roll) as sum_rolls_out')
->from('stock_invoices_products')
->join('stock_checks_invoices','stock_invoices_products.invoice_id=stock_checks_invoices.invoice_id')
->join('stock_products','stock_invoices_products.product_id=stock_products.product_id')
->where('return_status = 0 AND invoice_datetime >= "'.$from.' 00:00:00" AND invoice_datetime <= "'.$to.' 23:59:00" '.$where, $bind)
->order('id DESC')
->group('stock_invoices_products.product_id')
->queryAll();
foreach ($modelsall as $modelall) {
$productsall[$modelall['product_id']] = $modelall;
$productsall[$modelall['product_id']]['sum_quantity_in'] = 0;
$productsall[$modelall['product_id']]['sum_total_in'] = 0;
$productsall[$modelall['product_id']]['sum_rolls_in'] = 0;
}
$count = count($modelsall);
$pages = new CPagination($count);
$pages->pageSize=10;
$models = Yii::app()->db->createCommand()
->select('stock_invoices_products.product_id,stock_products.product_code, stock_products.product_name, stock_invoices_products.product_price, SUM(stock_invoices_products.product_quantity) as sum_quantity_out, SUM(stock_invoices_products.product_total) as sum_total_out, SUM(stock_invoices_products.product_roll) as sum_rolls_out')
->from('stock_invoices_products')
->join('stock_checks_invoices','stock_invoices_products.invoice_id=stock_checks_invoices.invoice_id')
->join('stock_products','stock_invoices_products.product_id=stock_products.product_id')
->where('return_status = 0 AND invoice_datetime >= "'.$from.' 00:00:00" AND invoice_datetime <= "'.$to.' 23:59:00" '.$where, $bind)
->order('id DESC')
->group('stock_invoices_products.product_id')
->limit($pages->pageSize, $pages->currentPage*$pages->pageSize)
->queryAll();
foreach ($models as $model) {
$products[$model['product_id']] = $model;
$products[$model['product_id']]['sum_quantity_in'] = 0;
$products[$model['product_id']]['sum_total_in'] = 0;
$products[$model['product_id']]['sum_rolls_in'] = 0;
}
foreach ($productsall as $productall) {
$sum_all_q_out += $productall['sum_quantity_out'];
$sum_all_t_out += $productall['sum_total_out'];
$sum_all_r_out += $productall['sum_rolls_out'];
}
$this->render('r3',array(
'from' => $from,
'to' => $to,
'products'=>$products,
'pages'=>$pages,
'productName'=>$productName,
'sum_all_q_out'=>$sum_all_q_out,
'sum_all_t_out'=>$sum_all_t_out,
'sum_all_r_out'=>$sum_all_r_out,
));
}
}
| 02da4088ab0210224d0cb73297b6490b34c6443a | [
"JavaScript",
"SQL",
"PHP"
] | 66 | PHP | wellib/pos | 70000da10719e7c76564008ff80950dab8be115b | af0c086e296b4f8a411ef96d6b276ef110c6b946 |
refs/heads/main | <file_sep>#include <stdio.h>
void main(void){
// very slow prime number finder
int num,i,flag;
printf("input your favorite number: ");
scanf("%d", &num);
flag=0;
for (i = 2; i < num; i++)
{
if (num % i == 0)
{
printf("%d can be divided by %d\n", num, i);
flag=1;
}
}
if (flag==0)
{
printf("%d is a prime number!\n", num);
}
if (flag==1)
{
printf("%d is not a prime number!\n", num);
}
} | f13f052bc7d4f03729938b7942bd9a5c9fb9f513 | [
"C"
] | 1 | C | Kaya815/TsukubaSWE | 91e6d111fba2a0db7ba96d732020c30541a1f626 | b3b7c5f1d4a71ea95ca03fb7bf3d6b777842a99c |
refs/heads/master | <repo_name>ilgiz-badamshin/vue-chat<file_sep>/src/store/modules/socket.js
/* eslint-disable promise/param-names */
import {START_SOCKET,} from '../actions/socket'
import io from 'socket.io-client';
import Vue from "vue";
import VueSocketio from 'vue-socket.io-extended';
const state = {
socket: null,
isConnected: false
};
const getters = {
isConnected: state => state.isConnected,
};
const actions = {
START_SOCKET({commit, dispatch}, payload) {
const socket = io.connect('localhost:3000', payload);
var store = this;
Vue.use(VueSocketio, socket, {
store,
actionPrefix: 'SOCKET_',
eventToActionTransformer: event => event.toUpperCase(),
});
commit(START_SOCKET);
},
};
const mutations = {
START_SOCKET(state) {
},
SOCKET_CONNECT(state, status) {
state.isConnected = true;
},
};
export default {
state,
getters,
actions,
mutations,
};
<file_sep>/src/store/actions/chat.js
export const LOAD_OLD_MESSAGES = 'LOAD_OLD_MESSAGES';
export const SEND_MESSAGE = 'SEND_MESSAGE';
export const SET_SHOW_OLD = 'SET_SHOW_OLD';
export const ADD_OLD_MESSAGES = 'ADD_OLD_MESSAGES';
export const ADD_CHAT = 'ADD_CHAT';
export const LOAD_CHATS = 'LOAD_CHATS';
export const CREATE_CHAT = 'CREATE_CHAT';
export const OPEN_CHAT = 'OPEN_CHAT';
export const CLOSE_CHAT = 'CLOSE_CHAT';
<file_sep>/src/store/modules/chat.js
/* eslint-disable promise/param-names */
import {ADD_CHAT, ADD_OLD_MESSAGES, LOAD_CHATS, SET_SHOW_OLD} from '../actions/chat'
const state = {
token: localStorage.getItem('user-token') || '',
my_client: null,
status: '',
hasLoadedOnce: false,
chats: [],
isConnected: false
};
const getters = {
getChat: state => chat_id => state.chats.find(x => x.id === chat_id),
getChats: state => state.chats,
};
const actions = {
CREATE_CHAT({commit, dispatch}, {user_id, name}) {
this._vm.$socket.emit('create chat', user_id, name);
},
OPEN_CHAT({commit, dispatch}, {chat_id}) {
this._vm.$socket.emit('open chat', chat_id);
},
CLOSE_CHAT({commit, dispatch}, {chat_id}) {
this._vm.$socket.emit('close chat', chat_id);
},
LOAD_OLD_MESSAGES({commit, dispatch}, {chat_id}) {
var limit = 5;
var chat = state.chats.find(x => x.id === chat_id);
var message_id = chat.messages.length > 0 ? chat.messages[0].id : null;
this._vm.$socket.emit(
'load old messages',
chat_id,
message_id,
limit,
function (messages, show_old) {
commit(ADD_OLD_MESSAGES, {chat_id, messages});
commit(SET_SHOW_OLD, {chat_id, show_old});
});
},
SEND_MESSAGE({commit, dispatch}, {chat_id, message}) {
this._vm.$socket.emit('send message', chat_id, message);
},
//SOCKET ACTIONS
SOCKET_CONNECT({commit, dispatch}) {
this._vm.$socket.emit('load chats', function (chats) {
commit(LOAD_CHATS, chats);
});
},
SOCKET_ACTIVATE_CHAT({commit, dispatch, state}, chat_id) {
if (!state.chats.find(x => x.id === chat_id)) {
this._vm.$socket.emit('load chat', chat_id, function (chat) {
commit(ADD_CHAT, {chat});
});
}
},
};
const mutations = {
[LOAD_CHATS]: (state, chats) => {
state.chats = chats;
},
[ADD_CHAT]: (state, {chat}) => {
state.chats = [...state.chats, chat];
},
[ADD_OLD_MESSAGES]: (state, {chat_id, messages}) => {
if (messages && messages.length > 0) {
var chat = state.chats.find(x => x.id === chat_id);
chat.messages.unshift(...messages);
}
},
[SET_SHOW_OLD]: (state, {chat_id, show_old}) => {
var chat = state.chats.find(x => x.id === chat_id);
chat.show_old = show_old;
},
//Mutations from socket events
SOCKET_CONNECT(state, status) {
},
SOCKET_MESSAGE_RECEIVED(state, message) {
var chat = state.chats.find(x => x.id === message.chat_id);
if (chat) {
chat.messages.push(message);
}
},
// SOCKET_CHAT_OPENED(state, chat) {
// if (!state.chats.some(x => x.id === chat.id)) {
// state.chats = [...chatContainer.chats, chat];
// state.socket.emit('join chat', chat.id);
// }
// },
SOCKET_CHAT_CLOSED(state, chat_id) {
state.chats = state.chats.filter(function (item) {
return item.id !== chat_id;
});
},
S() {
}
};
export default {
state,
getters,
actions,
mutations,
};
<file_sep>/server/rest.js
function Chat() {
this.id = null;
this.name = null;
this.messages = [];
this.user_ids = [];
this.show_old = false;
}
function Message() {
this.id = null;
this.chat_id = null;
this.user_id = null;
this.message = null;
this.created_at = null;
this.updated_at = null;
this.is_deleted = false;
this.is_seen = false;
this.attachments = [];
this.user = {};
}
function Attachment() {
this.id = null;
// this.chat_id = null;
this.message_id = null;
}
function User() {
this.id = null;
this.name = null;
}
//@TODO User id from socket or by cookie?
var chats = [
{
id: "1",
name: 'My First Chat',
messages: [],
user_ids: [],
},
{
id: "2",
name: 'MySecond chat',
messages: [],
user_ids: [],
},
];
const util = require('util');
console.log(util.inspect(chats));
module.exports = {
getChat(chat_id) {
var limit = 5;
var chat = chats.find(x => x.id === chat_id);
chat = JSON.parse(JSON.stringify(chat));
//@TODO messages should contain last X messages to show in new activated chat
chat.show_old = chat.messages.length > limit;
chat.messages = chat.messages.slice(Math.max(chat.messages.length - limit, 0));
return chat;
},
getChats: function () {
var limit = 5;
var new_chats = JSON.parse(JSON.stringify(chats));
//@TODO messages should contain last X messages to show in new activated chat
new_chats.forEach(function (chat) {
chat.show_old = chat.messages.length > limit;
chat.messages = chat.messages.slice(Math.max(chat.messages.length - limit, 0));
});
return new_chats;
},
saveMessage: function (chat_id, message, socket) {
var chat = chats.find(x => x.id === chat_id);
var id = 1;
var user_ids = chat.user_ids;
if (chat.messages.length > 0) {
id = chat.messages[chat.messages.length - 1].id + 1;
}
var user = new User();
user.id = socket.user.id;
user.display_name = socket.user.display_name;
var chat_message = new Message();
chat_message.id = id;
chat_message.chat_id = chat_id;
chat_message.message = message;
chat_message.user_id = socket.user.id;
chat_message.user_id = socket.user.id;
chat_message.created_at = chat_message.updated_at = new Date();
chat_message.user = user;
chat.messages.push(chat_message);
var response = {
message: chat_message,
user_ids: user_ids
};
return response;
},
loadOldMessages: function (chat_id, to_id, limit) {
var chat = chats.find(x => x.id === chat_id);
var messages = [];
var show_old = false;
if (typeof chat !== 'undefined') {
var filtered = chat.messages.filter(function (item) {
return !to_id || item.id < to_id;
});
show_old = filtered.length > limit;
messages = filtered.slice(Math.max(filtered.length - limit, 0));
}
var response = {
messages: messages,
show_old: show_old,
};
return response;
},
createChat: function (user_id, name, socket) {
var chat = new Chat();
chat.id = 'new-' + user_id;
chat.name = 'new - ' + name;
chat.messages = [];
chat.user_ids = [user_id, socket.user.id];
chats.push(chat);
return chat;
},
getUserInfo: function (socket) {
// var url = frontendUrl + '/chat/frontend/get-user-info';
// if (socket.request._query['isEmployee'] !== undefined && socket.request._query['isEmployee'] == 'true') {
// url = backendUrl + '/chat/backend/get-user-info';
// }
//
// return requestify.get(url, {
// dataType: 'json',
// headers: {
// 'Cookie': socket.request.headers["cookie"],
// 'User-Agent': socket.request.headers["user-agent"],
// 'X-Requested-With': 'XMLHttpRequest'
// }
// }).then(function (response) {
// return response.getBody();
// }, function () {
// return false;
// });
return (new Promise(function (resolve, reject) {
var user = new User();
user.id = socket.request._query['user_id'];
user.display_name = socket.request._query['name'];
resolve(user);
}
))
},
}<file_sep>/src/store/index.js
import Vue from 'vue';
import Vuex from 'vuex';
import user from './modules/user';
import socket from './modules/socket';
import chat from './modules/chat';
Vue.use(Vuex);
const debug = true;// process.env.NODE_ENV !== 'production';
export default new Vuex.Store({
modules: {
user,
socket,
chat,
},
strict: debug,
})
| 8159cbfb4765f2edd891ed0aabd4acae90f6c9e1 | [
"JavaScript"
] | 5 | JavaScript | ilgiz-badamshin/vue-chat | 27a082a6c94b5e09e57c86728ec34ec091a4cb64 | 2360e5328eae5f738867e8e6dab34351ee3cf275 |
refs/heads/master | <repo_name>nf-mugicha/better-QOL-scripts<file_sep>/python/youtube2wav.py
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from pytube import YouTube
import os
from pydub import AudioSegment
from logging_settings import logging_setting
import sys
logger = logging_setting('Log_youtube2wav')
def youtube2mp3(youtube_url):
"""
youtubeのURLを入れるとwavファイルを返すスクリプト
"""
logger.info('youtube url: {}'.format(youtube_url))
print('youtube url: {}'.format(youtube_url))
# S3にアップロード
# upload_s3.sign_s3(youtube_url, 'youtube_url/{}'.format(youtube_url))
# youtube動画を抜き出す
yt = YouTube(youtube_url)
# 動画の情報を出力
for lis in yt.streams.all():
logger.info(lis)
# 保存先のディレクトリがなかったら作る
if os.path.exists('youtube2mp4/') is not True:
os.mkdir('youtube2mp4/')
# 保存先のディレクトリがなかったら作る
if os.path.exists('youtube2wav/') is not True:
os.mkdir('youtube2wav/')
# get_bu_itagtodownloadメソッドでビデオデータをダウンロードする
yt2mp3 = yt.streams.get_by_itag(140).download('youtube2mp4/')
# 空白を取り除く
yt2mp3_re = yt2mp3.replace(' ', '')
# 空白を取り除いたものにリネーム
os.rename(yt2mp3, yt2mp3_re)
logger.info('youtube video converted video/mp4 file name: {}'.format(yt2mp3_re))
# 保存したmp4ファイルを呼び出す
sound = AudioSegment.from_file(yt2mp3_re, "mp4")
# 拡張子とファイル名をwavに書き換える
yt2mp3_wav = yt2mp3_re.replace('mp4', 'wav')
# wavにエクスポート
sound.export(yt2mp3_wav, format="wav")
# logger.info('rename: {}'.format(os.rename(yt2mp3, 'tmp/{}.mp4'.format(line_userid))))
logger.info('Receive wav file name: {}'.format(yt2mp3_wav))
# with open(yt2mp3, 'wb') as fb:
# fb.write(yt2mp3)
if __name__ == "__main__":
# コマンドライン引数でURLを指定する
youtube2mp3(sys.argv[1])
<file_sep>/python/requirements.txt
numpy==1.14.5
pandas==0.23.3
requests==2.19.1
pytube==9.5.0
pydub==0.23.1
<file_sep>/README.md
# make better QOL scripts
生活に役立つスクリプトを適宜おいていくリポジトリ
# Apple Script
## environments
Mac OS High Sierra
## environments
### textCount
count to selected text without space & enter on Apple Script.
### Replacement Dictionary
open Replacement Dictionary with selected text to the clipboard on Apple Script
## How to use
Make own "Services" using Automator Apps.
* open Automator Apps, select "Services"
* double click "run Apple Script"
* copy&paste blow scripts
* then save, move to Keyboard Preference in System Preference.
* already added your service to "Services Preference" in Shortcut tab there.
# python
## environments
Python 3.7.0
requirements.txt
ffmpeg version 4.1
## equipments
### logging_settings.py
setting your logger object
* logging Level
- DEBUG level
* saving format
```
(current directry)/[YOUR_LOGGER_OBJECT_NAME]/[YOUR_LOGGER_OBJECT_NAME]_y-m-d.log
```
#### how to use
call below in your python file
```
from logging_settings import logging_setting
logger = logging_setting([YOUR_LOGGER_OBJECT_NAME])
```
### youtube2wav.py
download youtube video for mp4 and wav files.
* saving format
```
(current directry)/youtube2mp4/[YOUTUBE_TILE].mp4 # mp4 file
(current directry)/youtube2wav/[YOUTUBE_TILE].wav # wav file
```
#### how to use
```
python youtube2wav.py [YOUTUBE URL]
```
| 6a28d53f8189a39ada14417580692abbcd03061b | [
"Markdown",
"Python",
"Text"
] | 3 | Python | nf-mugicha/better-QOL-scripts | ab4aa93d58e9ebe917153baa68d4601eeeece36f | 55c654965f20d0b1205372f4ea7b640da73443df |
refs/heads/master | <repo_name>jginor/js-advanced-first-class-functions-practice-lab-nyc-web-career-010719<file_sep>/index.js
// Code your solution in this file!
function logDriverNames(drivers){
drivers.forEach(function(driver){
console.log(driver.name)
})
}
function logDriversByHometown(drivers, location){
drivers.forEach(function(driver){
if(driver.hometown == location){
console.log(driver.name)
}
})
}
const driversByRevenue = function (drivers) {
return drivers.slice().sort(function (driverOne, driverTwo) {
return driverOne.revenue - driverTwo.revenue;
});
};
const driversByName = function (drivers) {
return drivers.slice().sort(function (driverOne, driverTwo) {
return driverOne.name.localeCompare(driverTwo.name);
});
};
const totalRevenue = function (drivers){
let total = 0
drivers.forEach(function (driver) {
return total += driver.revenue
})
return total
}
const averageRevenue = function(drivers){
return (totalRevenue(drivers)/drivers.length)
}
| c1dd8d99c5e6941394cf5c96f0741bfce16b5ead | [
"JavaScript"
] | 1 | JavaScript | jginor/js-advanced-first-class-functions-practice-lab-nyc-web-career-010719 | abacdd9e2cc15106682624beb190d46226a5407f | d210263b233116ab4012b699730c7f62a52a5d06 |
refs/heads/master | <repo_name>nayoder/ANLY503_Portfolio<file_sep>/bank.Rmd
---
title: "Exploring Bank Data"
---
```{r general_setup, include=FALSE}
### Setting chunk options and preparing to run Python
knitr::opts_chunk$set(echo = FALSE,
warning = FALSE,
message = FALSE,
out.width = '90%',
engine.path = list(python = 'C:/Users/nicol/Anaconda3/python.exe'))
library(reticulate)
py_run_string("import os as os")
py_run_string("os.environ['QT_QPA_PLATFORM_PLUGIN_PATH'] = 'C:/Users/nicol/anaconda3/Library/plugins/platforms'")
```
```{r ggplot_setup}
### Setting up custom theme and colors
# Loading tidyverse
library(tidyverse)
# Loading scales
library(scales)
# Loading Lato font
library(showtext)
font_add_google("Lato", "lato")
showtext_auto()
# Defining personal theme
theme_ny <- function(){
font <- "lato" #assign font family up front
theme_classic(base_family = font) %+replace% #using theme_classic as a base
# and then replacing elements I want to change
theme(
#grid elements
panel.grid.major = element_line(), #add major gridlines
axis.ticks = element_blank(), #strip axis ticks
#text elements
text = element_text( #all text
lineheight=0.5), #line height (space between if \n is used)
plot.title = element_text( #title
size = 28, #set font size
face = 'bold', #bold typeface
margin = margin(t = 5, b=2), #margin
hjust = 0, #left align
vjust = 1), #raise slightly
plot.subtitle = element_text( #subtitle
size = 28, #font size
margin = margin(b = 3), #margin
hjust = 0, #left align
vjust = 1), #raise slightly
plot.caption = element_text( #caption
size = 14, #font size
hjust = 1), #right align
axis.title = element_text( #axis titles
size = 18), #font size
axis.text.x = element_text( #x-axis text
size = 16, #font size
margin = margin(t=1, b=8)), #margin
axis.text.y = element_text( #y-axis text
size = 16, #font size
margin = margin(r=1, l=8), #margin
hjust = 1), #right align
#legend text elements
legend.title = element_text( #legend title
size = 18), #font size
legend.text = element_text( #legend text
size = 16, #font size
hjust = 0), #left align
#facet label elements
strip.text = element_text( #facet label text
size = 18), #font size
strip.background = element_rect( #facet label background
color='white') #no outline
)
}
# Useful for geographical/network plots
blank_theme_ny <- theme_ny() +
theme(
legend.position = "none",
axis.line = element_blank(),
axis.title = element_blank(),
axis.text.x = element_blank(),
axis.text.y = element_blank(),
panel.grid.major = element_blank()
)
theme_set(theme_ny())
# Colors
library(colorspace)
qual <- qualitative_hcl(n=7, palette='Dark 3') #qualitative
seq <- sequential_hcl(n=7, palette='PuBuGn') #sequential
div <- diverging_hcl(n=7, palette='Tropic') #diverging
```
```{python plt_setup}
### Setting custom theme (colors will be used from R)
# Loading necessary packages
import pandas as pd
import numpy as np
import matplotlib
import matplotlib.pyplot as plt
import matplotlib.pylab as pylab
import seaborn as sns
import warnings
warnings.filterwarnings('ignore')
# Starting with seaborn-white theme
plt.style.use('seaborn-white')
# Setting font size, axes, and gridlines (for some reason ggplot and matplotlib do not actually align??)
params = {'figure.titlesize': 20, # main iitle (plt.suptitle)
'axes.titlesize': 20, # subtitle (plt.title)
'axes.labelsize': 14, # x- and y-axes titles
'xtick.labelsize': 12, # x-axis text
'ytick.labelsize': 12, # y-axis text
'legend.title_fontsize': 14, # legend title
'legend.fontsize': 12, # legend text
'xtick.color': '#4d4d4d', # x-axis text (grey30)
'ytick.color': '#4d4d4d', # y-axis text (grey30)
'axes.spines.right': False, # remove right axis spine
'axes.spines.top': False, # remove top axis spine
'axes.grid': True, # add gridlines
'grid.color': '#ebebeb'} # gridlines color (grey92)
pylab.rcParams.update(params)
# Changing font to Lato
matplotlib.rcParams['font.family'] = 'sans-serif'
matplotlib.rcParams['font.sans-serif'] = 'Lato'
```
For this assignment, we received two datasets from a fake bank and were tasked with exploring various account characteristics and relationships between variables. Before jumping into the tasks, here is an overview of each dataset:
The `transactions.csv` contains all of the bank's transactions.
| Field Name | Description |
|:--|:----|
| `id` | Unique record identifier |
| `account_id` | Account identifier |
| `date` | Transaction date |
| `type` | Debit or Credit |
| `amount` | Amount of transaction |
| `balance` | Account balance after the transaction is executed |
| `bank` | The two letter code of the other bank if the transaction is a bank transfer |
| `account` | The account number of the other bank if the transaction is a bank transfer |
| `method` | Method of transaction: can be bank transfer, cash, or credit card |
| `category` | What the transaction was for |
The `accounts_analytical.csv` file contains the following information for every account. There is one record per account. 4,500 rows and 64 columns.
|Field Name |Description |
|:--|:----|
|`account_id` | Account number |
|`acct_creation_date` | Date when account was opened |
|`statement_frequency` | The frequency that statements are generated for the account |
|`account_district` | Name of the district where the account is |
|`num_customers` | The total number of clients associated with the account (owner and users) |
|`credit_cards` | Number of credit cards for an account or zero if none |
|`loan_date` | The date the loan was issued |
|`loan_amount` | The amount of the loan |
|`loan_payment` | The amount of the loan payment |
|`loan_term` | The duration of loan in months |
|`loan_status` | The status of the loan (current or expired) |
|`loan_default` | T/F if the loan is in default |
|`max_withdrawal` | Maximum debit amount for the account |
|`min_withdrawal` | Minimum debit amount for the account |
|`max_balance` | Maximum balance for the account |
|`min_balance` | Minimum balance for the account |
|`credit_xxxxx_yyyyy_zzzzz` | Summary statistics for all types of **credit** type transactions where: <br/> * `xxxxx` can be: cash, bank transfer or other <br/> * `yyyyy` can be: pension benefit, interest credit, or other <br/> * `zzzzz` can be transaction count (txn\_ct), transaction totals (txn\_tot) or average transaction amount (avg_txn) |
|`debit_xxxxx_yyyyy_zzzzz` | Summary statistics for all types of **debit** type transactions where: <br/> * `xxxxx` can be: cash, bank transfer or credit card <br/> * `yyyyy` can be: household payment, insurance payment, loan payment, negative balance charge, statement charge, or other <br/> * `zzzzz` can be transaction count (txn\_ct), transaction totals (txn\_tot) or average transaction amount (avg_txn) |
|`pmt_order_ct` | Number of payment orders for the account |
|`pmt_order_avg_amt` | The average amount for the payment orders |
|`owner_client_id` | Client ID |
|`gender` | Client gender |
|`birth_date` | Client birth date |
|`owner_district` | Client district |
## Task 1
>Explore all accounts. Create visualizations that combines these account characteristics:
>
>- Whether an account has a credit card or not
>- Whether an account has a loan or not
>- The average balance for the account
I chose to use faceted histograms, so that I could quickly get a sense of how many accounts fell into each category and the general distribution of the average balances for each group.
We see that most accounts do not have credit cards or loans. Both groups with no loans are skewed right with their average balances, while the other groups are more symmetric.
If I could make additional graphs, I would allow the y-axis to be free, since it is hard to see the details of the group that has loans and credit cards. However, with only one graph allowed, I think it is more important to see how the number of accounts varies for each group.
Note: This visualization uses Python, while the rest use R.
```{python task1, out.width='70%'}
#### Reading in data
accounts = pd.read_csv("data/accounts_analytical.csv")
transactions = pd.read_csv("data/transactions.csv")
#### Setting up the data frame
# Getting average balance for each account from the transactions data
avg_balDF = (transactions
.groupby('account_id', as_index=False)
.agg({'balance': 'mean'})
.rename(columns={'balance':'avg_balance'}))
# Creating columns for whether or not the account uses credit cards or loans,
# then adding the average balance
cc_loansDF = accounts.assign(
cc_user = np.where(pd.isna(accounts['credit_cards']), 'No Credit Cards', 'Has Credit Card(s)'),
loan_user = np.where(pd.isna(accounts['loan_date']), 'No Loans', 'Has Loan(s)'))
cc_loansDF = cc_loansDF[['account_id', 'cc_user', 'loan_user']]
cc_loans_balDF = cc_loansDF.merge(avg_balDF)
#### Plotting faceted histograms
p = sns.FacetGrid(cc_loans_balDF, col="cc_user",
row="loan_user", margin_titles=True)
p = p.map_dataframe(sns.histplot, x="avg_balance", bins=20, edgecolor=r.seq[2], color=r.seq[2], alpha=1)
p = p.set_axis_labels("Average Balance", "Frequency")
# Fixing the titles to be like ggplot
p = p.set_titles(row_template = '{row_name}', col_template = '{col_name}')
plt.subplots_adjust(top=0.8, left=0.1, bottom=0.1) # The axes titles were getting cut off without this
plt.suptitle('Account Average Balance by\nLoan and Credit Card Use',
fontweight='bold', y=.95)
plt.show()
```
## Task 2
>What is the distribution of all loans and what are their characteristics?
```{r task2_setup}
#### Reading in data
accounts <- read_csv("data/accounts_analytical.csv")
#### Setting up dataframe
# Selecting loan-related columns and removing accounts that did not have loans
loanDF <- accounts %>%
select(account_id, starts_with('loan')) %>%
filter(!is.na(loan_date))
```
##### Part 1: Plotting Distribution of Loan Amounts
I'm assuming "distribution of all loans" is referring to the distribution of loan amounts.
We see that the the distribution of loan amounts is right skewed with 50% of the accounts having loans between \$0 - \$117,000 and the other 50% between \$117,000 - \$600,000.
```{r task2_part1}
loanDF %>%
ggplot(aes(x=loan_amount)) +
geom_histogram(breaks=seq(0,600000,20000), fill=seq[3]) + # new bar every $20,000
geom_vline(aes(xintercept = median(loan_amount)), linetype='dashed', col='grey30', size=0.5) +
geom_text(mapping = aes(x = median(loan_amount), y = 0,
label = 'Median \U2248 117,000'),
size = 6,
hjust = -0.05, vjust = -0.6,
color='grey30') +
scale_x_continuous(labels = comma,
expand = expansion(mult = c(0, 0.05))) +
scale_y_continuous(labels = comma,
expand = expansion(mult = c(0, 0.05))) +
labs(x='Loan Amount ($)',
y='Frequency',
title=paste0('Distribution of Loan Amounts (n = ', nrow(loanDF), ')'))
```
##### Part 2: Plotting Loan Details (Amount, Payment, Status, Default, Term)
This plot shows the inherent linear relationship between the loan amount, payment, and term, since
$$Payment = \frac{1}{Term} * Amount.$$
Before I made this plot, I thought that defaulted accounts may be clustered somehow, like those with higher amounts or shorter terms. However, there doesn't seem to be a pattern to the defaulted accounts.
```{r task2_part2}
# Loan amount, payment, term, default status
loanDF %>%
mutate(loan_term = as.character(loan_term)) %>%
ggplot(aes(x=loan_amount, y=loan_payment, color=loan_default, shape=loan_term)) +
geom_point(alpha=0.9) +
scale_color_manual(values=c(div[1], div[7])) +
lemon::facet_rep_grid(loan_status~.) + # makes x-axis present for both facets
scale_x_continuous(labels = comma,
expand = expansion(mult = c(0, 0.05))) +
scale_y_continuous(labels = comma,
expand = expansion(mult = c(0, 0.05))) +
labs(x='Loan Amount ($)',
y='Loan Payment ($)',
title='Loan Payment vs. Loan Amount by Loan Status') +
guides(color=guide_legend(title='Loan Defaulted?'),
shape=guide_legend(title='Loan Term (Months)'))
```
## Task 3
>Is there a relationship between a good or bad loan and the time between when an account is opened and when the loan is created? Is there a specific set of accounts that seem to be at higher or lower risk of defaulting?
Looking at these boxplots, we see that the two groups of accounts have almost exactly the same range, but the IQR and median is slightly lower for defaulted accounts, so borrowers who get a loan soon after opening an account may be more likely to default.
```{r task3}
#### Setting up dataframe
# Selecting loan-related columns, removing accounts that did not have loans,
# and adding column that calculates how many days after the account creation
# that the loan was created
loanDF <- accounts %>%
select(account_id, acct_creation_date, starts_with('loan')) %>%
filter(!is.na(loan_date)) %>%
mutate(acct_loan_diff = loan_date - acct_creation_date)
#### Plotting Default Status vs. Time Open
loanDF %>%
ggplot(aes(x=acct_loan_diff, y=loan_default, color=loan_default))+
geom_boxplot(width=0.4) +
scale_color_manual(values=c(div[1], div[7])) +
labs(x='Loan Start Date - Account Start Date (days)',
y='Loan Defaulted?',
title='Loan Default Status vs. Loan and Account Start Date Difference') +
theme(legend.position='none')
```
## Task 4
>For the account with the highest number of transactions, make a time series line plot for the behavior of the account over time, including all debits and credits, the different methods, and with the different categories.
I'm not exactly happy with this plot. I used a time series of the balance, so we could easily see the credits and debits as the line moves up and down. Then I added points that would show the category (using color) and method (using shape). Unfortunately, when the method was missing, those points were removed (first plot). But when I changed NA to 'missing' so that those points would show up (second plot), it seems like they covered up a lot of the statement charge points. I tried using jitter to make more points visible, but I don't really like how it looks. Changing the transparency makes the points hard to discern, since there is a lot going on in this plot.
Let me know if you have any ideas for making this better!
```{r task4}
#### Loading lubridate and reading data
library(lubridate)
transactions <- read_csv("data/transactions.csv")
#### Setting up the data frame
# define getmode function to find the account id that occurs the most
getmode <- function(v) {
uniqv <- unique(v)
uniqv[which.max(tabulate(match(v, uniqv)))]
}
# common_date is to help me facet by year
# (otherwise the x-axis still includes all the years)
most_txnDF <- transactions %>%
filter(account_id == getmode(transactions$account_id)) %>%
mutate(year = year(date),
common_date = as.Date(paste0("2000-",format(date, "%j")), "%Y-%j"),
category = ifelse(is.na(category), 'missing', category))
#### Plotting Transactions over Time
# First, remove NA method (no point)
most_txnDF %>%
ggplot(aes(x=common_date, y=balance)) +
geom_line() +
geom_jitter(aes(shape=method, color=category),
alpha=0.7, height=1000) +
facet_grid(year~.) +
scale_color_manual(values=qual) +
scale_x_date(date_breaks="1 month",
limits = c(as.Date('2000-01-01'), as.Date('2000-12-31')),
labels=function(x) format(x, "%b"),
expand = expansion(mult = c(0, 0.005))) +
scale_y_continuous(labels = comma,
limits = c(0, 70000),
expand = expansion(mult = c(0, 0.05))) +
labs(x='',
y='Balance ($)',
title='Balance and Transaction Types over Time')
# Second, recode NA method so that those points appear
most_txnDF %>%
ggplot(aes(x=common_date, y=balance)) +
geom_line() +
geom_jitter(aes(shape=ifelse(is.na(method), 'missing', method), color=category),
alpha=0.7, height=2000) +
facet_grid(year~.) +
scale_color_manual(values=qual) +
scale_x_date(date_breaks="1 month",
limits = c(as.Date('2000-01-01'), as.Date('2000-12-31')),
labels=function(x) format(x, "%b"),
expand = expansion(mult = c(0, 0.005))) +
scale_y_continuous(labels = comma,
limits = c(0, 70000),
expand = expansion(mult = c(0, 0.05))) +
labs(x='',
y='Balance ($)',
title='Balance and Transaction Types over Time') +
guides(shape=guide_legend(title='method'))
```
## Task 5
>Explore the validity of the data for the case whether or not an account has a credit card and whether or not they have associated credit card transactions. Is there anything worth noting?
I used a heatmap to quickly get a sense of the four groups of accounts. There is definitely a data validity issue, since 80% of the accounts that had at least one credit card didn't have any credit card transactions. In addition, about 18% of the accounts that had no credit cards somehow still had credit card transactions.
```{r task5}
#### Setting up the data frame
# Getting the frequencies for the four combinations of whether or not accounts had a credit card
# and whether or not they had credit card transactions
# I also got the relative frequency (percent of accounts with/without credit cards that fell into
# each category
ccDF <- accounts %>%
mutate(has_cc = ifelse(is.na(credit_cards), 'No', 'Yes'),
has_txn = ifelse(debit_credit_card_other_txn_ct==0, 'No', 'Yes')) %>%
select(has_cc, has_txn) %>%
group_by(has_cc, has_txn) %>%
summarize(n = n()) %>%
mutate(rel_freq = round(100* n / sum(n), 2))
#### Plotting Credit Card Holders/Non-Holders vs. Credit Card Transactions
ggplot(ccDF, aes(x=has_txn, y=has_cc, fill=rel_freq)) +
geom_tile() +
geom_text(aes(label=paste0('n = ', n, '\nrelative frequency = ', rel_freq, '%')),
color='grey50',
size=6) +
scale_fill_continuous_sequential(labels = percent_format(scale=1),
palette='PuBuGn') +
scale_x_discrete(expand = expansion(mult = c(0, 0))) +
scale_y_discrete(expand = expansion(mult = c(0, 0))) +
theme(axis.line = element_blank(),
panel.grid = element_blank()) +
labs(x='Has Credit Card Transactions',
y='Has Credit Card(s)',
title='Comparing Credit Card Holding Status\nwith Credit Card Transactions',
fill='Relative\nFrequency')
```<file_sep>/scraping_store_locations.R
library(RSelenium)
library(rvest)
library(tidyverse)
library(tidygeocoder)
### Getting addresses from Lego.com
rD <- rsDriver(browser="firefox", port=4545L, verbose=F)
remDr <- rD[["client"]]
# In the browser, I manually navigated to the Lego store locations search
# page and zoomed out so that all of them were visible and therefore listed.
# Getting addresses
webElem <- remDr$findElements(using='class', value='js--results__address')
addresses <- sapply(webElem, function(x){unlist(x$getElementText())})
# Getting store titles
webElem <- remDr$findElements(using='class', value='js--results__title_text')
titles <- sapply(webElem, function(x){unlist(x$getElementText())})
### Organizing dataframe
# Combine store titles and addresses to make dataframe
storesDF <- data.frame(titles, addresses)
# Remove any rows that are empty (just the last one)
storesDF <- storesDF %>%
filter(titles != '' & addresses != '')
# Remove numbered store locations (e.g. #152), since
# that causes issues for geocoding
storesDF <- storesDF %>%
mutate(clean_addresses = str_replace(addresses, '#\\S* ', ''))
### Geocoding to get lat/long from tidygeocoder::geo (73 missing)
stores_tidy <- geo(address = storesDF$clean_addresses, method = 'cascade')
storesDF <- left_join(storesDF, stores_tidy, by = c('clean_addresses' = 'address'))
### Getting lat/long for missing stores
# Separating addresses that are missing lat/long
missingDF <- storesDF %>%
filter(is.na(lat))
# I'm going to use latlong.net to fill in the missing addresses. I registered for a
# free account, which allows 30 free geocodes a day (so this will take 3 days).
# First, I manually navigated to the website and logged into my account.
# Initialize lists of addresses, latitudes, and longitudes
adds <- list()
latitudes <- list()
longitudes <- list()
# Scraping latlong.net (I used a for loop and did small chunks each day)
for(i in 61:73){
address <- missingDF$clean_addresses[i]
adds[i] <- address
# Entering address
placeElement <- remDr$findElement(using = "id", value = "place")
placeElement$clearElement() # clears text if present
placeElement$sendKeysToElement(list(address))
# Clicking 'find' button
find_button <- remDr$findElement(using = "id", value = "btnfind")
find_button$clickElement()
# Sleep a bit for lat/long to load
Sys.sleep(5)
# Extracting latitude and longitude
latlngElement <- remDr$findElement(using = "id", value = "latlngspan")
latlngText <- unlist(latlngElement$getElementText())
lat <- str_extract(latlngText, '(?<=\\()(.*?)(?=,)')
lng <- str_extract(latlngText, '(?<= )(.*?)(?=\\))')
# Adding lat and lng to lists
latitudes[i] <- lat
longitudes[i] <- lng
}
# Create a dataframe of these addresses and newly found lat/longs
adds <- unlist(adds)
latitudes <- unlist(latitudes)
longitudes <- unlist(longitudes)
foundDF <- data.frame(adds, latitudes, longitudes) %>%
mutate(latitudes = as.numeric(latitudes), longitudes = as.numeric(longitudes))
### Manually entering some lat/long coordinates
# after the previous two steps, some coordinates were still missing
foundDF %>%
filter(latitudes == 0)
# I used Google Maps and latlong.net to find these manually
updateDF <- data.frame(adds = c('12801 W SUNRISE BLVD, SP. 1011, SUNRISE, FL, 33323-4007',
'CENTRE COMMERCIAL SO OUEST, LEVALLOIS-PERRET, 92300',
'Kalverstraat 57, Amsterdam, 1012 NZ',
'CentrO Einkaufszentrum 228, OBERHAUSEN, 46047'),
latitudes = c(26.151480, 48.891830, 52.370890, 51.490360),
longitudes = c(-80.321050, 2.296360, 4.891890, 6.881020))
# Update foundDF
foundDF <- rows_update(foundDF, updateDF)
### Replacing missing lat/long in storesDF with those in foundDF
# Starting by renaming columns to match storesDF, so that rows_update works
foundDF <- foundDF %>%
rename(clean_addresses = adds,
lat = latitudes,
long = longitudes)
finalDF <- rows_update(storesDF, foundDF) %>%
select(-geo_method) # I don't need the geo_method column
### Double-checking that there are no NAs and writing to csv!
sum(is.na(finalDF)) #0
write_csv(finalDF, 'project_data/store_locations.csv')
<file_sep>/README.md
# ANLY503_Portfolio
Check out this portfolio and my final project at my website: https://nayoder.github.io/ANLY503_Portfolio/
A few notes about this repository:
- The data/ folder that has all of the previous assignments' data files was hidden from Git, since some of the files were large. I assumed that wouldn't be an issue since the TAs/professors should have that data already. Just make sure you put it in my porfolio's directory if you want to run my code.
- I included the Lato.ttf file in case you need it.
<file_sep>/index.Rmd
---
title: "About"
---
Welcome to <NAME>'s portfolio for the Data Visualization course at Georgetown University's Data Science and Analytics MS program.
<br>
Use the navigation bar to see some homework assignments, as well as the final project. You can find all the code used to make this website and the visualizations at [this Github repository.](https://github.com/nayoder/ANLY503_Portfolio)
<file_sep>/geospatial.Rmd
---
title: "Visualizing Election and Unemployment Data"
---
```{r general_setup, include=FALSE}
### Setting chunk options and preparing to run Python
knitr::opts_chunk$set(echo = FALSE,
warning = FALSE,
message = FALSE,
out.width = '120%',
engine.path = list(python = 'C:/Users/nicol/Anaconda3/python.exe'))
library(reticulate)
py_run_string("import os as os")
py_run_string("os.environ['QT_QPA_PLATFORM_PLUGIN_PATH'] = 'C:/Users/nicol/anaconda3/Library/plugins/platforms'")
```
```{r ggplot_setup}
### Setting up custom theme and colors
# Loading tidyverse
library(tidyverse)
# Loading scales
library(scales)
# Loading Lato font
library(showtext)
font_add_google("Lato", "lato")
showtext_auto()
# Defining personal theme
theme_ny <- function(){
font <- "lato" #assign font family up front
theme_classic(base_family = font) %+replace% #using theme_classic as a base
# and then replacing elements I want to change
theme(
#grid elements
panel.grid.major = element_line(), #add major gridlines
axis.ticks = element_blank(), #strip axis ticks
#text elements
text = element_text( #all text
lineheight=0.5), #line height (space between if \n is used)
plot.title = element_text( #title
size = 28, #set font size
face = 'bold', #bold typeface
margin = margin(t = 5, b=2), #margin
hjust = 0, #left align
vjust = 1), #raise slightly
plot.subtitle = element_text( #subtitle
size = 28, #font size
margin = margin(b = 3), #margin
hjust = 0, #left align
vjust = 1), #raise slightly
plot.caption = element_text( #caption
size = 14, #font size
hjust = 1), #right align
axis.title = element_text( #axis titles
size = 18), #font size
axis.text.x = element_text( #x-axis text
size = 16, #font size
margin = margin(t=1, b=8)), #margin
axis.text.y = element_text( #y-axis text
size = 16, #font size
margin = margin(r=1, l=8), #margin
hjust = 1), #right align
#legend text elements
legend.title = element_text( #legend title
size = 18), #font size
legend.text = element_text( #legend text
size = 16, #font size
hjust = 0), #left align
#facet label elements
strip.text = element_text( #facet label text
size = 18), #font size
strip.background = element_rect( #facet label background
color='white') #no outline
)
}
# Useful for geographical/network plots
blank_theme_ny <- theme_ny() +
theme(
#legend.position = "none",
axis.line = element_blank(),
axis.title = element_blank(),
axis.text.x = element_blank(),
axis.text.y = element_blank(),
panel.grid.major = element_blank()
)
theme_set(theme_ny())
# Colors
library(colorspace)
qual <- qualitative_hcl(n=7, palette='Dark 3') #qualitative
seq <- sequential_hcl(n=7, palette='PuBuGn') #sequential
div <- diverging_hcl(n=7, palette='Tropic') #diverging
```
```{python plt_setup, eval=FALSE}
#---------------------------------------- NOTE -----------------------------------------#
# If you want to see my python version, change eval to TRUE for this and the last chunk.#
#---------------------------------------------------------------------------------------#
### Setting custom theme (colors will be used from R)
# Loading necessary packages
import pandas as pd
import numpy as np
import matplotlib
import matplotlib.pyplot as plt
import matplotlib.pylab as pylab
import seaborn as sns
import warnings
warnings.filterwarnings('ignore')
# Starting with seaborn-white theme
plt.style.use('seaborn-white')
# Setting font size, axes, and gridlines (for some reason ggplot and matplotlib do not actually align??)
params = {'figure.titlesize': 20, # main iitle (plt.suptitle)
'axes.titlesize': 20, # subtitle (plt.title)
'axes.labelsize': 14, # x- and y-axes titles
'xtick.labelsize': 12, # x-axis text
'ytick.labelsize': 12, # y-axis text
'legend.title_fontsize': 14, # legend title
'legend.fontsize': 12, # legend text
'xtick.color': '#4d4d4d', # x-axis text (grey30)
'ytick.color': '#4d4d4d', # y-axis text (grey30)
'axes.spines.right': False, # remove right axis spine
'axes.spines.top': False, # remove top axis spine
'axes.grid': True, # add gridlines
'grid.color': '#ebebeb'} # gridlines color (grey92)
pylab.rcParams.update(params)
# Changing font to Lato
matplotlib.rcParams['font.family'] = 'sans-serif'
matplotlib.rcParams['font.sans-serif'] = 'Lato'
```
For this assignment, we received datasets with US election results and unemployment rates for each county and were tasked with creating panels of choropleths for Texas, California, and Pennsylvania in the years 2008, 2012, and 2016.
```{r prep}
#### Importing Libraries
library(sf)
library(patchwork)
library(viridis)
#### Wrangling Election Data
presOG <- read_csv('data/countypres_2000-2016.csv')
# (1) Filtering years, states, and candidate party
# (2) Adding column for Republican percent of the vote
# (3&4) Adding '0' to 4-number FIPS codes
# (5) Removing unnecessary columns
presDF <- presOG %>%
filter(year %in% c(2008, 2012, 2016),
!(state_po %in% c('AK', 'HI')),
party == 'republican') %>%
mutate(R_percent = round(100 * candidatevotes / totalvotes, 2)) %>%
mutate(FIPS = as.character(FIPS)) %>%
mutate(FIPStxt = case_when(nchar(FIPS)==4 ~ paste0('0', FIPS),
TRUE ~ FIPS)) %>%
select(-c(office, candidate, party, candidatevotes, totalvotes, version, FIPS))
#### Wrangling Unemployment Data
unempOG <- readxl::read_xls('data/Unemployment.xls', sheet=1, skip=7)
# (1) Selecting FIPS and particular unemployment rate columns
# (2) Creating a year/unemployment columns by pivoting the unemployment columns
# (3) Removing 'Unemployment_rate_' from the year column
# and changing year column type from chr to int
unempDF <- unempOG %>%
select('FIPStxt', 'Unemployment_rate_2008',
'Unemployment_rate_2012', 'Unemployment_rate_2016') %>%
pivot_longer(-FIPStxt,
names_to = 'year',
values_to = 'unemployment_rate') %>%
mutate(year = as.integer(str_replace(year, 'Unemployment_rate_', '')))
# Merging election and unemployment data
DF <- inner_join(presDF, unempDF, by=c('FIPStxt', 'year')) %>%
rename(FIPS = FIPStxt)
#### Wrangling Geospatial Data
shp <- st_read("data/tl_2019_us_county-1/tl_2019_us_county.shp", quiet=TRUE)
# (1) Merge the State FIPS codes with County FIPS codes
# (2) Select only the FIPS and geometry columns
shpDF <- data.frame(shp) %>%
mutate(FIPS = paste0(STATEFP, COUNTYFP)) %>%
select(FIPS, geometry)
# Merging election/unemployment and geospatial data
DF <- inner_join(DF, shpDF, by='FIPS')
#### Preparing the Theme and Scales
# Setting the theme so that everything is blank
# (no axes, background, etc.)
theme_set(theme_ny() + blank_theme_ny)
# Setting the gradient scale for election data
vote_scale = scale_fill_gradient2(low = '#32346c',
mid = 'white',
high = '#b91f1f',
midpoint = 50,
name = "Percent that Voted Republican",
limits = c(0,100),
breaks = seq(10,90,20),
guide = guide_colorbar(direction='horizontal',
title.position = "top"))
# Setting the gradient scale for unemployment data
unemp_scale = scale_fill_viridis(option = 'viridis',
name = "Unemployment Rate",
limits = c(0,30),
breaks = seq(5,25,10),
guide = guide_colorbar(direction='horizontal',
title.position = "top"))
#### Defining Helper Function for Plotting
plotVoteUnemp <- function(State, Year, Type, Legend){
# Set up ggplot with given state and year
plot <- DF %>%
filter(state==State, year==Year) %>%
ggplot()
# For 'Vote' graphs, use the R_percent variable for fill and
# the vote_scale. I include the titles for these but not
# unemployment, since these will be on top.
if(Type=='Vote'){
plot <- plot +
geom_sf(aes(geometry=geometry, fill=R_percent)) +
vote_scale +
ggtitle(paste(State, Year))
}
# For 'Unemp' graphs, use the unemployment_rate variable for
# fill and the unemp_scale.
if(Type=='Unemp'){
plot <- plot +
geom_sf(aes(geometry=geometry, fill=unemployment_rate)) +
unemp_scale
}
# Remove legend if FALSE
# (the left and middle graphs won't have legends to reduce clutter)
if(Legend==FALSE){
plot <- plot +
theme(legend.position="none")
}
return(plot)
}
```
```{r graphing, fig.width=12, fig.height=16}
#### Creating Plots and Arranging with Patchwork
# California
CA08vote <- plotVoteUnemp("California", 2008, 'Vote', FALSE)
CA12vote <- plotVoteUnemp("California", 2012, 'Vote', FALSE)
CA16vote <- plotVoteUnemp("California", 2016, 'Vote', TRUE)
CA08unemp <- plotVoteUnemp("California", 2008, 'Unemp', FALSE)
CA12unemp <- plotVoteUnemp("California", 2012, 'Unemp', FALSE)
CA16unemp <- plotVoteUnemp("California", 2016, 'Unemp', TRUE)
# Texas
TX08vote <- plotVoteUnemp("Texas", 2008, 'Vote', FALSE)
TX12vote <- plotVoteUnemp("Texas", 2012, 'Vote', FALSE)
TX16vote <- plotVoteUnemp("Texas", 2016, 'Vote', TRUE)
TX08unemp <- plotVoteUnemp("Texas", 2008, 'Unemp', FALSE)
TX12unemp <- plotVoteUnemp("Texas", 2012, 'Unemp', FALSE)
TX16unemp <- plotVoteUnemp("Texas", 2016, 'Unemp', TRUE)
# Pennsylvania
PA08vote <- plotVoteUnemp("Pennsylvania", 2008, 'Vote', FALSE)
PA12vote <- plotVoteUnemp("Pennsylvania", 2012, 'Vote', FALSE)
PA16vote <- plotVoteUnemp("Pennsylvania", 2016, 'Vote', TRUE)
PA08unemp <- plotVoteUnemp("Pennsylvania", 2008, 'Unemp', FALSE)
PA12unemp <- plotVoteUnemp("Pennsylvania", 2012, 'Unemp', FALSE)
PA16unemp <- plotVoteUnemp("Pennsylvania", 2016, 'Unemp', TRUE)
# Creating arrangement with patchwork
patchwork <- ((CA08vote | CA12vote | CA16vote) /
(CA08unemp | CA12unemp | CA16unemp) /
(TX08vote | TX12vote | TX16vote) /
(TX08unemp | TX12unemp | TX16unemp) /
(PA08vote | PA12vote | PA16vote) /
(PA08unemp | PA12unemp | PA16unemp))
# (1) Adding a centered title and caption
# (2) Adjusting heights of plots to make them about the same size
# (otherwise PA looked a lot bigger)
patchwork +
plot_annotation(
title = 'The Proportion of Votes Won by Republicans\nand Unemployment Rates in 2008, 2012, and 2016',
caption = 'Source: MIT Election Data and Science Lab',
theme = theme(plot.title = element_text(hjust = 0.5, size = 28))
) +
plot_layout(heights=c(2.2, 2.2, 2, 2, 1.2, 1.2))
```
```{python python_version, eval=FALSE}
### Python
# This was my python implementation for the assignment. I'm not running this portion for the portfolio, since I completed all the choropleths in R already.
### Note from original homework:
# I ran out of time to do this well, but here is an imperfect group of California plots.
# Note: For some reason one or two of the plots won't appear when I knit,
# even though this worked fine in Spyder.
import geopandas
#### Wrangling election data
presOG = pd.read_csv('data/countypres_2000-2016.csv')
# Filtering years
presDF = presOG[presOG.year.isin([2008,2012,2016])]
# Filtering states
presDF = presDF[presDF.state_po.isin(['TX','CA','PA'])]
# Filtering candidate party
presDF = presDF[presDF['party']=='republican']
# Adding column corresponding to the percent of the vote received
# by the candidate (republican)
presDF.loc[:, 'R_percent'] = round(100 * presDF['candidatevotes'] / presDF['totalvotes'], 2)
# Removing unnecessary columns
presDF = presDF.drop(columns=['office', 'candidate', 'party',
'candidatevotes', 'totalvotes', 'version'])
#### Wrangling unemployment data
unempOG = pd.read_excel('data/Unemployment.xls', sheet_name=0, skiprows=range(0,7))
# Selecting FIPS and particular unemployment rate columns
unempDF = unempOG[['FIPStxt', 'Unemployment_rate_2008',
'Unemployment_rate_2012', 'Unemployment_rate_2016']]
# Creating a year column and pivoting the unemployment rate columns
unempDF = (pd.melt(unempDF,
id_vars='FIPStxt',
var_name='year', value_name='unemployment_rate')
)
# Removing 'Unemployment_rate_' from the year column
unempDF['year'] = unempDF['year'].str.replace('Unemployment_rate_', '').astype('int64')
#### Merging election and unemployment data
DF = presDF.merge(unempDF, left_on=['FIPS', 'year'], right_on=['FIPStxt', 'year'])
# Removing FIPStxt column
DF = DF.drop(columns=['FIPStxt'])
# Fix FIPS column so that it is always five digits (CA code is missing first '0')
DF['FIPS'] = DF['FIPS'].astype('int').astype('str')
DF['FIPS'] = DF.apply(lambda x: '0'+x.FIPS if len(x.FIPS)==4 else x.FIPS, axis=1)
# Reading shape file
shp = geopandas.read_file("data/tl_2019_us_county-1/tl_2019_us_county.shp")
# Merging the State FIPS codes with County FIPS codes
shpDF = shp.assign(FIPS = shp['STATEFP'] + shp['COUNTYFP'])
# Select only the FIPS and geometry columns
shpDF = shpDF[['FIPS', 'geometry']]
# Merging election/unemployment and geospatial data
DF = shpDF.merge(DF, on='FIPS')
#### Graphing California's election and unemployment data
caDF = DF.loc[DF['state']=='California']
fig, axes = plt.subplots(nrows=3, ncols=2, figsize=(8,10))
axes_list = [item for sublist in axes for item in sublist]
for year, df in caDF.groupby("year"):
# Plotting R percent
ax = axes_list.pop(0)
df.plot(column='R_percent', ax=ax, legend=True)
ax.set_title(f'Percent Republican in {year}')
ax.set_axis_off()
# Plotting unemployment
ax = axes_list.pop(0)
df.plot(column='unemployment_rate', ax=ax, legend=True)
ax.set_title(f'Unemployment Rate in {year}')
ax.set_axis_off()
for ax in axes_list:
ax.remove()
plt.tight_layout()
plt.show()
```
<file_sep>/lego.Rmd
---
title: "Lego Project"
author: "<NAME>"
output:
flexdashboard::flex_dashboard:
vertical_layout: scroll
css: lego_styles.css
source_code: https://github.com/anly503/anly503-fall2020-project-nayoder
---
```{r general_setup, include=FALSE}
library(flexdashboard)
### Setting chunk options
knitr::opts_chunk$set(echo = FALSE,
warning = FALSE,
message = FALSE,
out.width = '100%')
```
```{r ggplot_setup}
### Setting up custom theme and colors
# Loading tidyverse
library(tidyverse)
# Loading Lato font
library(showtext)
font_add_google("Lato", "lato")
showtext_auto()
# Defining personal theme
theme_ny <- function(){
font <- "lato" #assign font family up front
theme_classic(base_family = font) %+replace% #using theme_classic as a base
# and then replacing elements I want to change
theme(
#grid elements
panel.grid.major = element_line(), #add major gridlines
axis.ticks = element_blank(), #strip axis ticks
#text elements
text = element_text( #all text
lineheight=0.5), #line height (space between if \n is used)
plot.title = element_text( #title
size = 28, #set font size
face = 'bold', #bold typeface
margin = margin(t = 5, b=2), #margin
hjust = 0, #left align
vjust = 1), #raise slightly
plot.subtitle = element_text( #subtitle
size = 28, #font size
margin = margin(b = 3), #margin
hjust = 0, #left align
vjust = 1), #raise slightly
plot.caption = element_text( #caption
size = 14, #font size
hjust = 1), #right align
axis.title = element_text( #axis titles
size = 18), #font size
axis.text.x = element_text( #x-axis text
size = 16, #font size
margin = margin(t=1, b=8)), #margin
axis.text.y = element_text( #y-axis text
size = 16, #font size
margin = margin(r=1, l=8), #margin
hjust = 1), #right align
#legend text elements
legend.title = element_text( #legend title
size = 18), #font size
legend.text = element_text( #legend text
size = 16, #font size
hjust = 0), #left align
#facet label elements
strip.text = element_text( #facet label text
size = 18), #font size
strip.background = element_rect( #facet label background
color='white') #no outline
)
}
# Useful for geographical/network plots
blank_theme_ny <- theme_ny() +
theme(
legend.position = "none",
axis.line = element_blank(),
axis.title = element_blank(),
axis.text.x = element_blank(),
axis.text.y = element_blank(),
panel.grid.major = element_blank()
)
theme_set(theme_ny())
# Colors
library(colorspace)
qual <- qualitative_hcl(n=7, palette='Dark 3') #qualitative
seq <- sequential_hcl(n=7, palette='PuBuGn') #sequential
div <- diverging_hcl(n=7, palette='Tropic') #diverging
legored <- '#d01012'
darkred <- '#9d0000'
legoyellow <- '#ffcf00'
darkyellow <- '#cc9c00'
legoblue <- '#006db7'
legogreen <- '#64a144'
```
```{r packages}
### Loading other necessary packages
library(scales)
library(usmap)
library(ggvoronoi)
library(DT)
library(tidygraph)
library(ggraph)
library(ggtext)
library(tidytext)
```
```{r loading_data}
### Loading data and renaming variables that show up in multiple tables (like id)
sets <- read_csv('project_data/sets.csv') %>%
rename(set_name = name,
set_num_parts = num_parts) %>%
filter(year != 2021, # removing 2021 sets because their num_parts isn't necessarily known yet
set_num_parts != 0) # sets with 0 parts are either collections of other sets or other merchandise (like pencil bags)
themes <- read_csv('project_data/themes.csv') %>%
rename(theme_id = id,
theme_name = name)
minifigs <- read_csv('project_data/minifigs.csv') %>%
rename(minifig_id = fig_num,
minifig_name = name,
minifig_num_parts = num_parts)
colors <- read_csv('project_data/colors.csv') %>%
rename(color_id = id,
color_name = name,
hex = rgb) %>%
mutate(hex = paste0('#', hex)) # adding '#' in front of hex values so colors will work in ggplot
# Lego EID, each unique block and color combo
elements <- read_csv('project_data/elements.csv',
col_types = cols('c', 'c', 'd'))
# scraped store locations
store_locations <- read_csv('project_data/store_locations.csv')
```
About
=====================================
Column {data-width=495}
-------------------------------------
### The Data
This project mostly used publicly available data from [Rebrickable](https://rebrickable.com/downloads/). Rebrickable is a website that helps users keep track of their Lego collections and allows them to create designs for "My Own Creations" (MOCs), which are all the fan-based LEGO creations other than the officially released sets, as well as search for others' MOCs and see if they have the parts to create them. It has an extensive database with records of the official Lego sets, which is the data used for this project (no MOC data). This data was downloaded December 8th, 2020. In addition, I scraped the Lego website store locator for the addresses used in the Geographical portion (see `scraping_store_locations.R` for that code). The following tables describe the datasets used and their features.
<br>
The `sets.csv` dataset contains basic information for official Lego sets.
Notes: The data had 2021 sets, but I removed those since Rebrickable was missing the `set_num_parts` for many of those sets. I also removed any set that had `set_num_parts = 0`, since those were either bundles of other sets or other Lego merchandise like pencil bags.
| Field Name | Description |
|:--|:----|
| `set_num` | Unique set identifier |
| `set_name` | Set name |
| `year` | Release year of set |
| `theme_id` | Unique theme identifier |
| `set_num_parts` | The number of parts in the set |
<br>
The `themes.csv` dataset contains the Lego themes their relationships.
| Field Name | Description |
|:--|:----|
| `theme_id` | Unique theme identifier |
| `theme_name` | Theme name |
| `parent_id` | ID for current theme's parent (may be `NA`) |
<br>
The `minifigs.csv` dataset contains basic information for Lego minifigures (people).
| Field Name | Description |
|:--|:----|
| `minifig_id` | Unique minifigure identifier |
| `minifig_name` | Minifigure name |
| `minifig_num_parts` | The number of parts in the minifigure |
<br>
The `colors.csv` dataset contains the colors used for Lego parts.
Note: [Unknown] and [No Color/Any Color] are two possible colors.
| Field Name | Description |
|:--|:----|
| `color_id` | Unique color identifier |
| `color_name` | Color name |
| `hex` | The hexadecimal representation of the color (used in HTML, CSS, etc.) |
| `is_trans` | True/False for whether a color is translucent |
<br>
The `elements.csv` dataset contains every Lego element (unique combination of a part and color).
| Field Name | Description |
|:--|:----|
| `element_id` | Unique element identifier |
| `part_num` | Unique part identifier |
| `color_id` | Unique color identifier |
<br>
The `store_locations.csv` dataset contains location data for Lego stores scraped from the Lego website.
Note: The latitude and longitude were geocoded using the `tidygeocoder` package. I checked a few of the results, and while the lat/long coordinates may not have been at the exact store/mall, it was always close.
| Field Name | Description |
|:--|:----|
| `titles` | Store title |
| `addresses` | Address as provided on Lego website |
| `clean_addresses` | Addresses with number (e.g. #125) removed, since the hashtags caused issues in geocoding |
| `lat` | Latitude |
| `long` | Longitude |
Column {data-width=10}
-------------------------------------
Column {data-width=495}
-------------------------------------
### Objectives
With the visualizations in this project, I aim to explore Lego's sets, minifigures, themes, and stores by answering the following questions:
<br>
How many parts are in Lego sets and minifigures, and what colors does Lego use?
<br>
Where are the Lego stores located in the US, and which one is the closest to my area?
<br>
How are Lego themes related?
<br>
How has the complexity of sets changed over time?
<br>
How are Lego sets and figures described?
### Software and Packages Used
| Software/Package | Version |
|:--|:--|
| Platform | x86_64-w64-mingw32/x64 (64-bit) |
| Running | Windows 10 x64 (build 18363) |
| `R` | 4.0.2 |
| `RStudio` | 1.2.5042 |
| `colorspace` | 2.0-0 |
| `dplyr` | 1.0.2 |
| `DT` | 0.16 |
| `flexdashboard` | 0.5.2 |
| `forcats` | 0.5.0 |
| `ggplot2` | 3.3.2 |
| `ggraph` | 2.0.4 |
| `ggvoronoi` | 0.8.3 |
| `igraph` | 1.2.6 |
| `purrr` | 0.3.4 |
| `readr` | 1.4.0 |
| `RSelenium` | 1.7.7 |
| `rvest` | 0.3.6 |
| `scales` | 1.1.1 |
| `showtext` | 0.9-1 |
| `showtextdb` | 3.0 |
| `stringr` | 1.4.0 |
| `sysfonts` | 0.8.2 |
| `tibble` | 3.0.4 |
| `tidygeocoder` | 1.0.1 |
| `tidygraph` | 1.2.0 |
| `tidyr` | 1.1.2 |
| `tidytext` | 0.2.6 |
| `tidyverse` | 1.3.0 |
| `usmap` | 0.5.1 |
| `wordcloud2` | 0.2.1 |
Exploratory {data-orientation=rows}
=====================================
Row {data-height=125}
-------------------------------------
### Total Number of Sets
```{r}
valueBox(formatC(nrow(sets), format='d', big.mark=','), icon = "fa-building", color = legoblue)
```
### Total Number of Minifigures
```{r}
valueBox(formatC(nrow(minifigs), format='d', big.mark=','), icon = "fa-male", color = legoblue)
```
### Total Number of Themes
```{r}
valueBox(formatC(nrow(themes), format='d', big.mark=','), icon = "fa-space-shuttle", color = legoblue)
```
### Total Number of Elements<br>(Unique Combos of Part and Color)
```{r}
valueBox(formatC(nrow(elements), format='d', big.mark=','), icon = "fa-cubes", color = legoblue)
```
Row {data-height=460}
-------------------------------------
### How many parts are in Lego sets and minifigures? {data-width=150}
The number of parts in Lego sets range from 1 (single pieces like [Playhouse](https://rebrickable.com/sets/041-2/playhouse/#parts) or [Green Baseplate](https://rebrickable.com/sets/10700-1/green-baseplate/#parts)) to 9,987 ([The Ultimate Battle of Chima](https://rebrickable.com/sets/BIGBOX-1/the-ultimate-battle-for-chima/#parts)). About 70% of the sets have between 10 to 500 parts.
<br>
The number of parts for minifigures has a much smaller range from 1 (like [Chuck](https://rebrickable.com/minifigs/fig-002313/chuck/#parts)) to 43 (the [Iron Golem](https://rebrickable.com/minifigs/fig-010202/iron-golem/#parts)). About 58% of the minifigures have four parts, which is the typical legs, torso, head, and hair/hat format like this [Emmet from The Lego Movie](https://rebrickable.com/minifigs/fig-001449/emmet-with-wide-smile-showing-teeth-and-tongue/#parts).
### Chart {.no-title data-width=425}
```{r distr_sets}
sets %>%
ggplot(aes(x=set_num_parts)) +
stat_density(color = legored, fill = legored, alpha = 0.7) +
scale_x_continuous(breaks=c(1,5,10,50,100,500,1000,5000,10000),
trans="log",
labels = label_comma(accuracy=1),
expand = expansion(mult = c(0, 0.05))) +
scale_y_continuous(expand = expansion(mult = c(0, 0.05))) +
labs(x='Number of Parts in Set (Log Scale)',
y='Density',
title='Distribution of Set Part Amounts')
```
### Chart {.no-title data-width=425}
```{r distr_minifigs}
minifigs %>%
ggplot(aes(x=minifig_num_parts)) +
geom_histogram(breaks = seq(0, max(minifigs$minifig_num_parts), 1),
closed = 'left',
color = legoyellow, fill = legoyellow, alpha = 0.7) +
scale_x_continuous(expand = expansion(mult = c(0, 0.05))) +
scale_y_continuous(expand = expansion(mult = c(0, 0.05))) +
labs(x='Number of Parts in Minifigure',
y='Frequency',
title='Distribution of Minifigure Part Amounts')
```
Row {data-height=450}
-------------------------------------
### What colors does Lego use? {data-width=150}
The classic Lego colors of red and yellow are the top two colors after black and white, which I suppose isn't too surprising. Most of the colors in the top 20 are fairly neutral/broad and none of them are translucent.
<br>
In contrast, the least common colors are fairly vibrant/specific and many of them are translucent. Ten of the top 20 were used for only one Lego element. For example, 'Trans-Neon Yellow' was only used for this [Power Shield](https://rebrickable.com/parts/22385pr0040/tile-special-2-x-3-pentagonal-with-nexo-power-shield-print-shining-axe/).
### Chart {.no-title data-width=425}
```{r top_colors}
trans_alpha <- c('FALSE' = 1, 'TRUE' = 0.5) # make alpha related to translucency
# Most-used
topcolors <- elements %>%
count(color_id) %>%
left_join(colors) %>%
arrange(desc(n)) %>%
slice_head(n = 20)
topcolors %>%
ggplot(aes(x = reorder(color_name, -n),
y = n,
fill = I(hex),
alpha = is_trans)) +
geom_col(color = 'grey') +
coord_flip() +
scale_alpha_manual(values = trans_alpha) +
scale_y_continuous(expand = expansion(mult = c(0, 0.05))) +
labs(x = element_blank(),
y = 'Number of Lego Elements',
title = 'Most Common Colors',
subtitle = 'Note: Trans = Translucent') +
theme(legend.position = 'none',
plot.subtitle = element_text(size = 14))
```
### Chart {.no-title data-width=425}
```{r bottom_colors}
# Least-used
bottomcolors <- elements %>%
count(color_id) %>%
left_join(colors) %>%
arrange(n, color_name) %>%
slice_head(n = 20)
bottomcolors %>%
ggplot(aes(x = reorder(color_name, -n),
y = n,
fill = I(hex),
alpha = is_trans)) +
geom_col(color = 'grey') +
coord_flip() +
scale_alpha_manual(values = trans_alpha) +
scale_y_continuous(expand = expansion(mult = c(0, 0.05))) +
labs(x = element_blank(),
y = 'Number of Lego Elements',
title = 'Least Common Colors',
subtitle = 'Note: Trans = Translucent') +
theme(legend.position = 'none',
plot.subtitle = element_text(size = 14))
```
Geographical {data-orientation=rows}
=====================================
Row {data-height=80}
-------------------------------------
### Where are the Lego stores located in the US, and which one is the closest to my area?
There are 103 Lego stores in the continential US and close to the border in Canada. These [Voronoi cells](https://en.wikipedia.org/wiki/Voronoi_diagram) each contain one store and all the points for whom that store is the closest. As an Iowa native, I thought it was interesting that Iowa was split between five of the Voronoi cells. Of course, this uses the "as the crow flies" distance, rather than the highway routes, so using Google Maps to find the closest store is still your best bet.
Row {data-height=600}
-------------------------------------
### Chart {.no-title}
```{r stores}
# general lat/long coordinates for US, but includes some spots in Canada
us_locations <- store_locations %>%
filter(between(lat, 26, 50), between(long, -125, -65))
us_transformed <- us_locations %>%
select(long, lat) %>%
usmap_transform()
plot_usmap("states", exclude=c('Hawaii', 'Alaska')) +
geom_point(data = us_transformed, aes(x = long.1, y = lat.1),
color = legored, alpha = 0.4) +
geom_path(data = us_transformed, aes(x=long.1, y=lat.1), stat="voronoi",alpha=.1,size=.25) +
blank_theme_ny +
theme(plot.title = element_text(hjust = 0.5)) +
labs(title = 'Voronoi Diagram of Lego Stores "in" the Continental U.S.')
```
Graph/Network
=====================================
```{r graph_setup}
### Creating graph of themes
edges <- themes %>%
select(from = theme_id, to = parent_id) %>%
filter(!is.na(to))
nodes <- themes %>%
select(id = theme_id, theme = theme_name)
graph_themes <- igraph::graph_from_data_frame(edges, vertices = nodes) %>% as_tbl_graph()
### Determining top-level parents and standalone themes
#find nodes in 'edges$to' that aren't in 'edges$from', those are top-level parent themes
parent_themes <- unique(edges$to[!(edges$to %in% edges$from)])
#get dataframe of names to use as a table
parent_themes <- themes %>%
filter(theme_id %in% parent_themes)
#find nodes in 'nodes$id' that aren't in 'edges$from' or 'edges$to', those are standalone themes
alone_themes <- nodes$id[!(nodes$id %in% unique(append(edges$to, edges$from)))]
#get dataframe of names to use as a table
alone_themes <- themes %>%
filter(theme_id %in% alone_themes)
```
Column {data-width=700}
-------------------------------------
### How are Lego themes related? {data-height=100}
There are 599 Lego themes. Many of them have hierarchical (parent-child) relationships, but 83 of them are standalone themes. Since there are too many themes to plot in one, readable network graph, I'm going to highlight the Technic and Duplo themes. You can use the tables on the right to explore the themes further.
### Chart {.no-title data-height=450}
```{r graph_technic}
# Subset Technic theme
graph_themes %>%
convert(to_local_neighborhood, node = which(.N()$theme == "Technic"), order = 3, mode = "all") %>%
ggraph(layout = "sugiyama") +
geom_edge_diagonal(color = "gray", alpha = 0.4) +
geom_node_text(aes(label = theme), angle = 30, size = 3, family = 'lato') +
blank_theme_ny
```
### Chart {.no-title data-height=450}
```{r graph_duplo}
# Subset Duplo theme
graph_themes %>%
convert(to_local_neighborhood, node = which(.N()$theme == "Duplo"), order = 3, mode = "all") %>%
ggraph(layout = "sugiyama") +
geom_edge_diagonal(color = "gray", alpha = 0.4) +
geom_node_text(aes(label = theme), angle = 30, size = 3, family = 'lato') +
blank_theme_ny
```
Column {data-width=300}
-------------------------------------
### All Themes
```{r all_themes}
datatable(themes, options = list(
pageLength = 10
))
```
### Standalone Themes
```{r alone_themes}
datatable(alone_themes, options = list(
pageLength = 10
))
```
### Top-Level Parent Themes
```{r parent_themes}
datatable(parent_themes, options = list(
pageLength = 10
))
```
Time Series
=====================================
Column {data-width=275 data-height=600}
-------------------------------------
### How has the complexity of sets changed over time? {data-height=600}
The first graph shows how many sets Lego released each year. The general trend is increasing, though it seems that it may be leveling off around 660 sets in the last five years.
<br>
But are these sets simple or complex? For instance, Lego released many more sets in the 2010's than they did in the 1980's, but the sets could have fewer parts and therefore be simpler.
<br>
The second graph answers that question by graphing the average number of parts per set over time. It turns out that sets released in the 2010's have more parts than those released in the 1980's on average, so they are more complex according to this measure (if I had data about the number of steps in the instructions, that would be even better).
<br>
What happened in 1960? Well, there were only two sets released that year. The [Number Bricks set](https://rebrickable.com/sets/237-1/number-bricks/#parts) only has 50 parts, but the [Kindergarten LEGO set](https://rebrickable.com/sets/700K-1/kindergarten-lego-set/#parts) has 476 parts. The latter set has a lot of basic blocks in a variety of colors, presumably marketed as a good starter set for classrooms.
Column {.tabset data-width=725}
-------------------------------------
### Number of Sets {data-height=600}
```{r sets_time}
# Creating aggregated dataframe
sets_time <- sets %>%
select(year, set_num, theme_id, set_num_parts) %>%
group_by(year) %>%
summarize(set_total = n_distinct(set_num),
set_num_parts_total = sum(set_num_parts)) %>%
mutate(parts_per_set = round(set_num_parts_total / set_total, 2))
# Number of sets released each year
sets_time %>%
ggplot(aes(x = year, y = set_total)) +
geom_line(size=1, color=legored) +
scale_x_continuous(breaks = seq(1950, 2020, 10),
expand = expansion(mult = c(0, 0.05))) +
scale_y_continuous(expand = expansion(mult = c(0, 0.05))) +
labs(x='Year',
y='Number of Sets Released',
title='The Number of Lego Sets Released Each Year') +
theme(aspect.ratio=1/2)
```
### Average Number of Parts Per Set {data-height=600}
```{r parts_time}
sets_time %>%
mutate(ma = zoo::rollmean(parts_per_set,
k = 5,
na.pad=TRUE)) %>%
ggplot(aes(x = year)) +
geom_line(aes(y = parts_per_set), size=1, color=legoblue) +
geom_line(aes(y = ma), size=1, color=legogreen, lineheight=0.5) +
geom_text(label='Actual', color=legoblue, x=1951, y=103) +
geom_text(label='3-Year\nRolling\nAverage', color=legogreen, x=1952, y=53, lineheight=0.5) +
scale_x_continuous(breaks = seq(1950, 2020, 10),
expand = expansion(mult = c(0, 0.05))) +
scale_y_continuous(expand = expansion(mult = c(0, 0.05))) +
labs(x='Year',
y='Average Number of Parts Per Set',
title='Are Lego Sets Getting More Complex?') +
theme(aspect.ratio=1/2)
```
Text {data-orientation=rows}
=====================================
Row {data-height=470}
-------------------------------------
### How are Lego sets and figures described? {data-width=170}
These first two plots show how sets and minifigures differ in description length. While both have one-word descriptions the most often, minifigure descriptions have a wider range from 1-24 (compared to 1-17 for sets) and their distribution is less skewed.
The longer descriptions are necessary for minifigures since they are all people or creatures that need to be distinguished, whereas the sets are more unique since they draw from more categories (buildings, vehicles, packs of bricks/pieces, etc.).
### Chart {.no-title data-width=415}
```{r wordcounts_set}
# sentiment dictionary
bing <- get_sentiments("bing")
sets_text <- sets %>%
select(set_num, set_name) %>%
unnest_tokens(word, set_name) %>%
left_join(bing)
# number of words in set name
sets_text %>%
group_by(set_num) %>%
summarize(num_words = n()) %>%
ggplot(aes(x = num_words)) +
geom_bar(fill=legored) +
scale_x_continuous(expand = expansion(mult = c(0, 0.01))) +
scale_y_continuous(expand = expansion(mult = c(0, 0.05))) +
labs(x = 'Number of Words',
y = 'Frequency',
title = 'Distribution of Word Counts in Set Descriptions')
```
### Chart {.no-title data-width=415}
```{r wordcounts_minifig}
minifigs_text <- minifigs %>%
select(minifig_id, minifig_name) %>%
unnest_tokens(word, minifig_name) %>%
left_join(bing)
# number of words in minifig name
minifigs_text %>%
group_by(minifig_id) %>%
summarize(num_words = n()) %>%
ggplot(aes(x = num_words)) +
geom_bar(fill=legoyellow) +
scale_x_continuous(expand = expansion(mult = c(0, 0.01))) +
scale_y_continuous(expand = expansion(mult = c(0, 0.05))) +
labs(x = 'Number of Words',
y = 'Frequency',
title = 'Distribution of Word Counts in Minifigure Descriptions')
```
Row {data-height=575}
-------------------------------------
### More text {.no-title data-width=170}
<br>
Unsurprisingly, "set" is the most common word in set descriptions. Many of the other top ten words are very general descriptors that are used for packs of bricks. Sets that include "trucks" and "fire" are also common.
<br>
The top ten words for minifigure descriptions are all about distinguishing the three main pieces that make them ("legs", "hair"/"helmet", "torso"/jacket") with specific colors.
### Chart {.no-title data-width=415}
```{r topwords_set}
# most common words
sets_text %>%
anti_join(get_stopwords()) %>% # removes stopwords
count(word, sort = TRUE) %>%
head(10) %>%
ggplot(aes(x=reorder(word, -n), y=n)) +
geom_col(fill=legored) +
coord_flip() +
scale_y_continuous(expand = expansion(mult = c(0, 0.05))) +
labs(x = element_blank(),
y = 'Frequency',
title = 'Most Common Words in Set Descriptions')
```
### Chart {.no-title data-width=415}
```{r topwords_minifig}
# most common words
minifigs_text %>%
anti_join(get_stopwords()) %>% # removes stopwords
count(word, sort = TRUE) %>%
head(10) %>%
ggplot(aes(x=reorder(word, -n), y=n)) +
geom_col(fill=legoyellow) +
coord_flip() +
scale_y_continuous(expand = expansion(mult = c(0, 0.05))) +
labs(x = element_blank(),
y = 'Frequency',
title = 'Most Common Words in Minifigure Descriptions')
```
Row {data-height=675}
-------------------------------------
### More text {.no-title data-width=170}
I also investigated how Lego used language with positive or negative connotations in their descriptions by using the [Bing Liu et al.'s sentiment lexicon](https://rdrr.io/cran/tidytext/man/sentiments.html) available in `tidytext`.
First, all neutral words were removed, which made up about 95% of both the set and minifigure description vocabularies. Then some additional words marked as positive or negative were removed, since they were actually neutral in context. For instance, "dark" was a common negative word for minifigures but was actually used as a color modifier.
Looking at the top 20 words for each, sets tend to have positive descriptors more often than minifigures. Many of these positive words for sets seem to be related to advertising (like "fun" and "creative"), but the minifigures do not use that advertising language.
### Chart {.no-title data-width=415}
```{r sentiment_set}
# sentiment
sets_sent_counts <- sets_text %>%
count(word, sentiment, sort = TRUE)
sets_sent_counts %>%
filter(!is.na(sentiment),
!(word %in% c('stunt', 'buggy', 'limited'))) %>% # removed since these aren't pos/neg in lego context
head(20) %>%
mutate(n = ifelse(sentiment == "negative", -n, n)) %>%
mutate(word = reorder(word, n)) %>%
ggplot(aes(word, n, fill = sentiment)) +
geom_col() +
coord_flip() +
scale_fill_manual(values=c(darkred, legored)) +
labs(x = element_blank(),
y = 'Frequency\n(Negative Frequencies used for Negative Words)',
title = 'Most Common Positive or Negative\nWords in Set Descriptions') +
theme(legend.position = 'none')
```
### Chart {.no-title data-width=415}
```{r sentiment_minifig}
# sentiment
minifigs_sent_counts <- minifigs_text %>%
count(word, sentiment, sort = TRUE)
minifigs_sent_counts %>%
filter(!is.na(sentiment),
!(word %in% c('dark', 'top', 'tank', 'bright', 'hard', 'gold'))) %>% # removed since these aren't pos/neg in lego context
head(20) %>%
mutate(n = ifelse(sentiment == "negative", -n, n)) %>%
mutate(word = reorder(word, n)) %>%
ggplot(aes(word, n, fill = sentiment)) +
geom_col() +
coord_flip() +
scale_fill_manual(values=c(darkyellow, legoyellow)) +
labs(x = element_blank(),
y = 'Frequency\n(Negative Frequencies used for Negative Words)',
title = 'Most Common Positive or Negative\nWords in Minifigure Descriptions') +
theme(legend.position = 'none')
```
| eadd5b700559fc8e3a04745452e480a2c6671232 | [
"Markdown",
"R",
"RMarkdown"
] | 6 | RMarkdown | nayoder/ANLY503_Portfolio | aa905b7a8540fc9903339ada10722ae6e36e1f00 | 2cb49e1ed1b7093b2f5c69c0d44652caeb420d0e |
refs/heads/master | <repo_name>JorchCanelo/ProgramacionEstructurada<file_sep>/Unidad 3-Funciones/Ejercicio33.c
/*
Autor: <NAME>
Entrada: N, J y K. Numeros enteros.
Salida: N tablas de multiplicar. (x hasta n) por (j hasta k). Donde a x se le suma 1 despues de que j llega a k.
Procedimiento general: Se hacen 2 ciclos para multiplicar numeros por otros numeros limitados entre n y k. Solo imprime hasta n tablas.
Notas: No se entiende muy bien a que se refiere con valor j y valor k, asi que lo hice con lo que entendi
Segun mi entendimiento, es necesario utilizar variables globales si quiero utilizar funciones que sobreescriban valores.
Es mejor asi en lugar de tener codigo espaghetti que pasa multiples parametros que solo se utilizan una vez debido a que son variables
locales. El main queda mas limpio, tambien.
Hice 3 arreglos diferentes porque un arreglo tridimensional me hubiera guardado 1 solo valor con las 3 posiciones diferentes.
Al hacer 3 arreglos, puedo almacenar un valor en cada uno que tienen la misma posicion para asi solo poder imprimirla en la salida.
*/
//PREMISA//
/*Imprimir las primeras n tablas de multiplicar que incluyan desde el valor j hasta el valor k*/
#include <stdio.h>
//DECLARACIONES GLOBALES//
int numeroN = 0; //n
int numeroJ = 0; //j
int numeroK = 0; //k
int contadorI = 1; //Para el ciclo
int contadorO = 1; //Para el ciclo
int constanteA = 1; //Auxiliar
char lista[999]; //La unica forma de poder tener la salida en el bloque Salida y no en Proceso. Primer numero
char lista2[999]; //Segundo numero
char lista3[999]; //Primero por segundo
void Entrada(),Proceso(int j, int k, int n),Salida(int n);
int main()
{
Entrada();
Proceso(numeroJ, numeroK, numeroN);
Salida(numeroN);
}
/*Funcion entrada
Solo toma j, k y n
*/
void Entrada()
{
printf("Por favor, introduzca el valor minimo: ");
scanf("%d", &numeroJ);
printf("Por favor, introduzca el valor maximo: ");
scanf("%d", &numeroK);
printf("Por favor, introduzca el numero de tablas de multiplicar a imprimir: ");
scanf("%d", &numeroN);
}
/*Funcion proceso
Toma todos los numeros introducidos por el usuario y escribe las tablas de multiplicar en una lista
*/
void Proceso(int j, int k, int n)
{
for (contadorO = 1; contadorO <= n; contadorO++)
{
contadorI = j;
for (contadorI = j; contadorI <= k; contadorI++)
{
lista[constanteA] = contadorO;
lista2[constanteA] = contadorI;
lista3[constanteA] = contadorO*contadorI;
constanteA++;
}
}
}
/*Funcion salida
Solo imprime las tablas de multiplicar almacenadas en una lista
*/
void Salida(int n)
{
contadorI = 1;
for (contadorI = 1; contadorI <= n; contadorI++)
{
printf("%d x %d = %d \n", lista[contadorI], lista2[contadorI], lista3[contadorI]);
}
scanf("%d", &constanteA); //GetChar no me funciono aqui, asi que solo reescribo una variable.
}
/* QA
Por: <NAME>
Función Entradas - Correcto
-Lee correctamente las variables
Función Proceso - Incorrecto
-Entradas: 1.-(0, 0, 1)
2.-(1, 2, 3)
3.-(1, 4, 4)
4.-(1, 8, 2)
-Salidas: 1.-(1 x 0 = 0) Correcto
2.-(1 x 1 = 1) Incorrecto
(1 x 2 = 2)
(2 x 1 = 2)
3.-(1 x 1 = 1) Incorrecto
(1 x 2 = 2)
(1 x 3 = 3)
(1 x 4 = 4)
4.-(1 x 1 = 1) Incorreco
(1 x 2 = 2)
Función Salida - Correcto
-Todos los datos son impresos correctamente
Notas:
-No están permitidos los arreglos, es posible utilizar solamente dos funciones (Entradas, y proceso, donde igual se puede imprimir,
esto ha sido preguntado y confirmado por el Profesor)
-Los valores no son impresos correctamente, un ejemplo funcional es el siguiente:
3 primeras tablas de multiplicar
2 valor minimo
4 valor maximo
1x2 2x2 3x2
1x3 2x3 3x3
1x4 2x4 3x4
*/
<file_sep>/Unidad 3-Funciones/Ejercicio49.cs
/*
Autor: <NAME>
Entrada: NINGUNA. NO INTRODUCIR NINGUN VALOR.
Salida: Tablas de multiplicar completas del 2 hasta el 9
Procedimiento general: Se utilizan dos ciclos con un auxiliar para almacenar cadenas. Estas cadenas son cada una de las tablas de
multiplicar que van desde el 2 hasta el 9 con maximo 10. Al final se imprimen todas las tablas de multiplicar.
Notas: Segun mi entendimiento, es necesario utilizar variables globales si quiero utilizar funciones que sobreescriban valores.
Es mejor asi en lugar de tener codigo espaghetti que pasa multiples parametros que solo se utilizan una vez debido a que son variables
locales. El main queda mas limpio, tambien.
*/
//PREMISA//
/*Escribe el programa que imprima la tabla de multiplicar completa. Es decir empezando con la tabla del 2 hasta el 9*/
//DECLARACIONES GLOBALES//
int numeroInicial = 2; //Desde donde empieza nuestras tablas
int numeroFinal = 9; //Hasta que numero llegan nuestras tablas
int contadorI = 1; //Para el ciclo
int contadorO = 1; //Para el ciclo
int constanteA = 1; //Auxiliar
string[] lista = new string[81]; //La unica forma de poder tener la salida en el bloque Salida y no en Proceso.
void main()
{
Entrada();
Proceso(numeroInicial, numeroFinal);
Salida();
}
/*Funcion entrada
No toma nada, solo imprime lo que hara el programa
*/
void Entrada()
{
Console.WriteLine("A continuacion se imprimiran las tablas completas del numero 2 hasta el 9");
}
/*Funcion proceso
Escribe las tablas de multiplicar en una lista
*/
void Proceso(int a, int b)
{
for (contadorO = a; contadorO <= b; contadorO++)
{
contadorI = 1;
for (contadorI = 1; contadorI <= 10; contadorI++)
{
lista[constanteA] = ""+contadorO+"x"+contadorI+" = "+contadorO*contadorI;
constanteA++;
}
}
}
/*Funcion salida
Solo imprime las tablas de multiplicar almacenadas en una lista
*/
void Salida()
{
Console.WriteLine("");
contadorI = 1;
for (contadorI = 1; contadorI <= 80; contadorI++)
{
Console.WriteLine(lista[contadorI]);
}
}
main(); //Para iniciar el programa.
/* QA
El proceso general es correcto, sin embargo el programa no compila con el siguiente error:
..\Playground\(70,2): error CS1520: Method must have a return type
Software usado para el test: https://code.sololearn.com/#cs
(Recomendado por Alex en entrega anterior para el compilado de C#)
*/<file_sep>/Unidad 3-Funciones/Ejercicio41.cs
/*
Autor: <NAME>
Entrada: Cualquier numero entero, ya sea positivo o negativo.
Salida: El numero mas grande y el mas chico de todos los numeros dados por el usuario
Procedimiento general: Se van cambiando los tronos correspondientes dependiendo de los numeros que el usuario introduzca.
Al principio se configuran los 2 tronos como el primer numero dado para evitar problemas.
Notas: No se admiten numeros que no sean enteros. Al principio se inicializan los dos tronos con el primer numero porque al introducir
todos los numeros como negativos, el trono seguira siendo 0 aunque nunca se haya puesto en la lista de numeros a comparar.
No estoy seguro de cuantos numeros pueda comparar, pero estableci como maximo 99999999 en caso de que por memoria no se puedan realizar mas.
Segun mi entendimiento, es necesario utilizar variables globales si quiero utilizar funciones que sobreescriban valores.
Es mejor asi en lugar de tener codigo espaghetti que pasa multiples parametros que solo se utilizan una vez debido a que son variables
locales. El main queda mas limpio, tambien.
*/
//PREMISA//
/*Escriba el programa que lea N números y calcule cual es el mayor y el menor de esos números.
Utilice una estructura de repetición Para...hasta.*/
//DECLARACIONES GLOBALES//
int numero, contador, tope, tronoMin, tronoMax; //El numero introducido, el contador de ciclo, el numero maximo de ciclo y los 2 tronos
int[] lista = new int[99999999]; //Lista de todos los numeros introducidos por el usuario.
void main()
{
Entrada();
Proceso();
Salida();
}
/*Funcion Input A Numero
Transforma input del usuario y lo convierte de string a int.
*/
int Input_A_Numero()
{
string input = Console.ReadLine(); //Para leer lo introducido
int var = Int32.Parse(input); //Valor temporal
return var;
}
/*Funcion entrada
Solo toma el numero del total de numeros a comparar
*/
void Entrada()
{
Console.WriteLine("Por favor, introduzca el total de numeros a comparar: ");
tope = Input_A_Numero();
}
/*Funcion proceso
Toma todos los numeros introducidos por el usuario y determina el mayor y el menor
*/
void Proceso()
{
for (contador = 0; contador < tope; contador++)
{
Console.WriteLine("Por favor, introduzca un numero: ");
numero = Input_A_Numero();
lista[contador] = numero;
if (contador == 0)
{
tronoMin = numero;
tronoMax = numero;
}
if (numero < tronoMin)
{
tronoMin = numero;
}
if (numero > tronoMax)
{
tronoMax = numero;
}
}
}
/*Funcion salida
Solo imprime el numero mayor y el menor
*/
void Salida()
{
Console.WriteLine("Numero mayor: "+ tronoMax);
Console.WriteLine("Numero menor: "+ tronoMin);
}
main(); //Corre el programa.
/*
QA: <NAME>
Entrada: Cualquier numero entero, ya sea positivo o negativo.
Salida: El numero mas grande y el mas chico de todos los numeros dados por el usuario
Bueno... el proceso esta bien pero...
Estas utilizando arrays y eso esta mal.
Estas utilizando variables globales y eso esta mal x2.
nota 1: El uso de una lista con limite [999999] es ineficiente, estas consumiendo
memoria de forma inecesaria puedes utilizar una lista dinamica
nota 2: Para re escribir una variable utiliza los apuntadores :v
*/<file_sep>/Unidad 3-Funciones/Ejercicio49.c
/*
Autor: <NAME>
Entrada: NINGUNA. NO INTRODUCIR NINGUN VALOR.
Salida: Tablas de multiplicar completas del 2 hasta el 9
Procedimiento general: Se utilizan dos ciclos con un auxiliar para almacenar cadenas. Estas cadenas son cada una de las tablas de
multiplicar que van desde el 2 hasta el 9 con maximo 10. Al final se imprimen todas las tablas de multiplicar.
Notas: Segun mi entendimiento, es necesario utilizar variables globales si quiero utilizar funciones que sobreescriban valores.
Es mejor asi en lugar de tener codigo espaghetti que pasa multiples parametros que solo se utilizan una vez debido a que son variables
locales. El main queda mas limpio, tambien.
Hice 3 arreglos diferentes porque un arreglo tridimensional me hubiera guardado 1 solo valor con las 3 posiciones diferentes.
Al hacer 3 arreglos, puedo almacenar un valor en cada uno que tienen la misma posicion para asi solo poder imprimirla en la salida.
*/
//PREMISA//
/*Escribe el programa que imprima la tabla de multiplicar completa. Es decir empezando con la tabla del 2 hasta el 9*/
#include <stdio.h>
//DECLARACIONES GLOBALES//
int numeroInicial = 2; //Desde donde empieza nuestras tablas
int numeroFinal = 9; //Hasta que numero llegan nuestras tablas
int contadorI = 1; //Para el ciclo
int contadorO = 1; //Para el ciclo
int constanteA = 1; //Auxiliar
char lista[999]; //La unica forma de poder tener la salida en el bloque Salida y no en Proceso. Primer numero
char lista2[999]; //Segundo Numero
char lista3[999]; //Primero por segundo
void Entrada(),Proceso(int a, int b),Salida();
int main()
{
Entrada();
Proceso(numeroInicial, numeroFinal);
Salida();
}
/*Funcion entrada
No toma nada, solo imprime lo que hara el programa
*/
void Entrada()
{
printf("A continuacion se imprimiran las tablas completas del numero 2 hasta el 9\n");
}
/*Funcion proceso
Escribe las tablas de multiplicar en una lista
*/
void Proceso(int a, int b)
{
for (contadorO = a; contadorO <= b; contadorO++)
{
contadorI = 1;
for (contadorI = 1; contadorI <= 10; contadorI++)
{
lista[constanteA] = contadorO;
lista2[constanteA] = contadorI;
lista3[constanteA] = contadorO*contadorI;
constanteA++;
}
}
}
/*Funcion salida
Solo imprime las tablas de multiplicar almacenadas en una lista
*/
void Salida()
{
printf(" ");
contadorI = 1;
for (contadorI = 1; contadorI <= 80; contadorI++)
{
printf("%d x %d = %d\n", lista[contadorI], lista2[contadorI], lista3[contadorI]);
}
scanf("%d", &constanteA); //GetChar no me funciono aqui, asi que solo reescribo una variable.
}
/* QA
Por: <NAME>
Notas:
-No se debe usar arreglos, está posible imprimir en el procedimiento para evitar su uso (confirmado por el Profesor)
Función Entradas Correcto
-El mensaje es impreso correctamente
Función Proceso Incorrecto
-Funciona correctamente, sin embargo se debe evitar el uso de arreglos
Función Salidas Correcto
-Esta función funciona correctamente, sin embargo no es necesaria, ya que para este tipo de ejercicios es posible imprimir en el proceso
*/
<file_sep>/Unidad 3-Funciones/Ejercicio41.c
/*
Autor: <NAME>
Entrada: Cualquier numero entero, ya sea positivo o negativo.
Salida: El numero mas grande y el mas chico de todos los numeros dados por el usuario
Procedimiento general: Se van cambiando los tronos correspondientes dependiendo de los numeros que el usuario introduzca.
Al principio se configuran los 2 tronos como el primer numero dado para evitar problemas.
Notas: No se admiten numeros que no sean enteros. Al principio se inicializan los dos tronos con el primer numero porque al introducir
todos los numeros como negativos, el trono seguira siendo 0 aunque nunca se haya puesto en la lista de numeros a comparar.
No estoy seguro de cuantos numeros pueda comparar, pero estableci como maximo 99999999 en caso de que por memoria no se puedan realizar mas.
*/
//PREMISA//
/*Escriba el programa que lea N números y calcule cual es el mayor y el menor de esos números.
Utilice una estructura de repetición Para...hasta.*/
#include <stdio.h>
//DECLARACIONES GLOBALES//
int numero, contador, tope, tronoMin, tronoMax; //El numero introducido, el contador de ciclo, el numero maximo de ciclo y los 2 tronos
int lista[99999999]; //Lista de todos los numeros introducidos por el usuario.
void Entrada(),Proceso(),Salida();
int main()
{
Entrada();
Proceso();
Salida();
}
/*Funcion entrada
Solo toma el numero del total de numeros a comparar
*/
void Entrada()
{
printf("Por favor, introduzca el total de numeros a comparar: ");
scanf("%d", &tope);
}
/*Funcion proceso
Toma todos los numeros introducidos por el usuario y determina el mayor y el menor
*/
void Proceso()
{
for (contador = 0; contador < tope; contador++)
{
printf("Por favor, introduzca un numero: ");
scanf("%d", &numero);
lista[contador] = numero;
if (contador == 0)
{
tronoMin = numero;
tronoMax = numero;
}
if (numero < tronoMin)
{
tronoMin = numero;
}
if (numero > tronoMax)
{
tronoMax = numero;
}
}
}
/*Funcion salida
Solo imprime el numero mayor y el menor
*/
void Salida()
{
printf("Numero mayor: %d\n", tronoMax);
printf("Numero menor: %d\n", tronoMin);
scanf("%d", &tope); //GetChar no me funciono aqui, asi que solo reescribo una variable.
}
/*
QA: <NAME>
Entrada: Cualquier numero entero, ya sea positivo o negativo.
Salida: El numero mas grande y el mas chico de todos los numeros dados por el usuario
Bueno... el proceso esta bien pero...
Estas utilizando arrays y eso esta mal.
Estas utilizando variables globales y eso esta mal x2.
nota 1: El uso de una lista con limite [999999] es ineficiente, estas consumiendo
memoria de forma inecesaria puedes utilizar una lista dinamica
nota 2: Para re escribir una variable utiliza los apuntadores :v
*/<file_sep>/Unidad 3-Funciones/Ejercicio53.cs
/*
Autor: <NAME>
Entrada: Cualquier numero, puede ser negativo. No introducir numeros decimales.
Salida: (e^-x)(x).
Procedimiento general: Utilizando X se hace una serie que toma el valor anterior y lo eleva a -X, despues lo divide por la posicion.
Tomando en cuenta de que X! = (X-1)!*X , obviamente. Al final el resultado se multiplica otra vez por X.
Notas: Puede que numeros muy grandes la respuesta sea equivalente a infinito.
Se necesitan procesos mas complicados para pasar el input del usuario a un valor flotante en C#. Por ahora solo lo limito a enteros.
Al decir ''Leer muchos valores de n'' ayude al usuario a que el programa lea de 1 hasta n infinito, porque asi lo muestra la formula.
Esto se utiliza para aproximar el valor de nuestra sumatoria hasta (e^-x)(x).
Segun mi entendimiento, es necesario utilizar variables globales si quiero utilizar funciones que sobreescriban valores.
Es mejor asi en lugar de tener codigo espaghetti que pasa multiples parametros que solo se utilizan una vez debido a que son variables
locales. El main queda mas limpio, tambien.
*/
//PREMISA//
/*
Escribe el programa que lea muchos valores de n y que calcule la expresión siguiente:
Y = 1 + X + 2X^2/2! + 3X^3/3! - 4X^4/4! + ... + (-1)^n nX^n/n!
*/
//DECLARACIONES GLOBALES//
int elevacion = 0; //El numero por el cual e se encuentra elevado.
int iteracion = 30; //Utilizado para limitar el ciclo.
float usoTemporal = 1; //Uso temporal.
float respuesta = 1; //Respuesta temporal.
float respuestaFinal = 1; //Respuesta final.
int contador = 0; //Para el ciclo.
void main()
{
Entrada();
Proceso(elevacion);
Salida();
}
/*Funcion Input A Numero
Transforma input del usuario y lo convierte de string a int.
*/
int Input_A_Numero()
{
string input = Console.ReadLine(); //Para leer lo introducido
int var = Int32.Parse(input); //Valor temporal
return var;
}
/*Funcion Entrada
Toma el input del usuario de el valor de X.
*/
void Entrada()
{
Console.WriteLine("Por favor, introduzca X: ");
elevacion = Input_A_Numero();
}
/*Funcion Proceso
Calcula nuestra formula con el valor introducido por el usuario.
*/
void Proceso(int x)
{
for (contador = 1; contador<=iteracion; contador++)
{
usoTemporal = (usoTemporal*-x)/contador;
respuesta = respuesta + usoTemporal;
}
respuestaFinal = respuesta*(x);
}
/*Funcion Salida
Imprime el resultado final.
*/
void Salida()
{
Console.WriteLine(respuestaFinal);
}
main(); //Para iniciar el programa.
/*
QA: <NAME>
Entrada: Cualquier numero, puede ser flotante y negativo.
Salida: (e^-x)(x).
Nota 1: Funciona de forma correcta pero no deberia tener variables globales
Nota 2: Las variables no deben ser globales, lo dijo nuestro emperador Cambrane para
re escribir una variable existen los apuntadores que explico en las primeras clases :p
*/<file_sep>/Unidad 3-Funciones/Ejercicio53.c
/*
Autor: <NAME>
Entrada: Cualquier numero, puede ser flotante y negativo.
Salida: (e^-x)(x).
Procedimiento general: Utilizando X se hace una serie que toma el valor anterior y lo eleva a -X, despues lo divide por la posicion.
Tomando en cuenta de que X! = (X-1)!*X , obviamente. Al final el resultado se multiplica otra vez por X.
Notas: Para utilizar numeros fraccionarios, utilizar su equivalente flotante. Puede que numeros muy grandes la respuesta sea equivalente
a infinito.
Al decir ''Leer muchos valores de n'' ayude al usuario a que el programa lea de 1 hasta n infinito, porque asi lo muestra la formula.
Esto se utiliza para aproximar el valor de nuestra sumatoria hasta (e^-x)(x).
Segun mi entendimiento, es necesario utilizar variables globales si quiero utilizar funciones que sobreescriban valores.
Es mejor asi en lugar de tener codigo espaghetti que pasa multiples parametros que solo se utilizan una vez debido a que son variables
locales. El main queda mas limpio, tambien.
*/
//PREMISA//
/*
Escribe el programa que lea muchos valores de n y que calcule la expresión siguiente:
Y = 1 + X + 2X^2/2! + 3X^3/3! - 4X^4/4! + ... + (-1)^n nX^n/n!
*/
#include <stdio.h>
//DECLARACIONES GLOBALES//
float elevacion = 0; //El numero por el cual e se encuentra elevado.
int iteracion = 30; //Utilizado para limitar el ciclo.
float usoTemporal = 1; //Uso temporal.
float respuesta = 1; //Respuesta temporal.
float respuestaFinal = 1; //Respuesta final.
int contador = 0; //Para el ciclo.
void Entrada(),Proceso(float x),Salida();
int main()
{
Entrada();
Proceso(elevacion);
Salida();
}
void Entrada()
{
printf("Por favor, introduzca x: ");
scanf("%f", &elevacion);
}
void Proceso(float x)
{
for (contador = 1; contador<=iteracion; contador++)
{
usoTemporal = (usoTemporal*-x)/contador;
respuesta = respuesta + usoTemporal;
}
respuestaFinal = respuesta*(x);
}
void Salida()
{
printf("%f\n", respuestaFinal);
scanf("%f", &usoTemporal); //GetChar no me funciono aqui, asi que solo reescribo una variable.
}
/*
QA: <NAME>
Entrada: Cualquier numero, puede ser flotante y negativo.
Salida: (e^-x)(x).
Nota 1: Funciona de forma correcta pero no deberia tener variables globales
Nota 2: Las variables no deben ser globales, lo dijo nuestro emperador Cambrane para
re escribir una variable existen los apuntadores que explico en las primeras clases :p
*/<file_sep>/Unidad 3-Funciones/Ejercicio33.cs
/*
Autor: <NAME>
Entrada: N, J y K. Numeros enteros.
Salida: N tablas de multiplicar. (x hasta n) por (j hasta k). Donde a x se le suma 1 despues de que j llega a k.
Procedimiento general: Se hacen 2 ciclos para multiplicar numeros por otros numeros limitados entre n y k. Solo imprime hasta n tablas.
Notas: No se entiende muy bien a que se refiere con valor j y valor k, asi que lo hice con lo que entendi
Segun mi entendimiento, es necesario utilizar variables globales si quiero utilizar funciones que sobreescriban valores.
Es mejor asi en lugar de tener codigo espaghetti que pasa multiples parametros que solo se utilizan una vez debido a que son variables
locales. El main queda mas limpio, tambien.
*/
//PREMISA//
/*Imprimir las primeras n tablas de multiplicar que incluyan desde el valor j hasta el valor k*/
//DECLARACIONES GLOBALES//
int numeroN = 0; //n
int numeroJ = 0; //j
int numeroK = 0; //k
int contadorI = 1; //Para el ciclo
int contadorO = 1; //Para el ciclo
int constanteA = 1; //Auxiliar
string[] lista = new string[999]; //La unica forma de poder tener la salida en el bloque Salida y no en Proceso.
void main()
{
Entrada();
Proceso(numeroJ, numeroK, numeroN);
Salida(numeroN);
}
/*Funcion Input A Numero
Transforma input del usuario y lo convierte de string a int.
*/
int Input_A_Numero()
{
string input = Console.ReadLine(); //Para leer lo introducido
int var = Int32.Parse(input); //Valor temporal
return var;
}
/*Funcion entrada
Solo toma j, k y n
*/
void Entrada()
{
Console.WriteLine("Por favor, introduzca el valor minimo: ");
numeroJ = Input_A_Numero();
Console.WriteLine("Por favor, introduzca el valor maximo: ");
numeroK = Input_A_Numero();
Console.WriteLine("Por favor, introduzca el numero de tablas de multiplicar a imprimir: ");
numeroN = Input_A_Numero();
}
/*Funcion proceso
Toma todos los numeros introducidos por el usuario y escribe las tablas de multiplicar en una lista
*/
void Proceso(int j, int k, int n)
{
for (contadorO = 0; contadorO <= n; contadorO++)
{
contadorI = j;
for (contadorI = j; contadorI <= k; contadorI++)
{
lista[constanteA] = ""+contadorO+"x"+contadorI+" = "+contadorO*contadorI;
constanteA++;
}
}
}
/*Funcion salida
Solo imprime las tablas de multiplicar almacenadas en una lista
*/
void Salida(int n)
{
Console.WriteLine("");
contadorI = 1;
for (contadorI = 1; contadorI <= n; contadorI++)
{
Console.WriteLine(lista[contadorI]);
}
}
main(); //Para iniciar el programa.
/* QA
El proceso general es correcto, sin embargo el programa no compila con el siguiente error:
..\Playground\(85,2): error CS1520: Method must have a return type
Software usado para el test: https://code.sololearn.com/#cs
(Recomendado por Alex en entrega anterior)
*/<file_sep>/Unidad 3-Funciones/Ejercicio25.c
#include <stdio.h>
#include <stdlib.h>
/*
Autor: <NAME>
Entradas: una letra, minuscula o mayuscula
Salidas: El codigo ASCII para esa letra
Proceso: Escribir un programa para mostrar los códigos ASCII de las letras
mayúsculas y minúsculas.
*/
int main()
{
//Entradas
char letra;
int cod;
printf("Ingresa una letra \n");
scanf("%c",&letra);
//Proceso
cod=("%d",letra);
//Salida
printf("El codigo ASCII para %c es %d",letra,cod);
return 0;
}
//QA realizado por <NAME>
//Entradas probadas: r, a, T, F
//Salidas: 114, 97, 84, 70
//El algoritmo funciona, pero no es modular, que es lo que se solicito para esta entrega, por lo que esta mal
| e694d8e15bdaffa77eabc725e68d5909ffa61041 | [
"C#",
"C"
] | 9 | C | JorchCanelo/ProgramacionEstructurada | 2f315bc414a1973a273d44090e11029b9b8748d3 | e6ee7511758524b7d93690374bb6940a4a35354e |
refs/heads/master | <repo_name>e-rojas/Library<file_sep>/README.md
# Library
create a program to replace cards indexing at a library using oop aproach.
<file_sep>/School Program/SchoolCatalog.js
class SchoolCatalog {
constructor(level, schools) {}
}
<file_sep>/market/Market.js
class Market {
constructor(marketName, customerName, customerID) {
this._customerID = customerID;
this._marketNmae = marketName;
this._customerName = customerName;
this._basket = [];
}
get marketName() {
return this.marketName;
}
get customerName() {
return this.customerName;
}
get basket() {
return this._basket;
}
addToBasket(itemName, itemPrice) {
this._basket.push({ itemName: itemName, itemPrice: itemPrice });
}
get total() {
let sum = this._basket.map(e => e.itemPrice).reduce((a, b) => a + b);
return `Your total is: $${sum}`;
}
get numItems() {
console.log(`Your have ${this._basket.length} item(s) in your basket: \n`);
let itemsList = this._basket.forEach((e, i) =>
console.log(`${i + 1}- ${e.itemName}: $${e.itemPrice}`)
);
console.log(this.total);
}
}
module.exports = Market;
/* const FoodMart = new Market('Food Mart', 'James');
FoodMart.addToBasket('Bananas', 4.25);
FoodMart.addToBasket('Onions', 1.55);
FoodMart.addToBasket('Tomatos', 2.25);
FoodMart.addToBasket('Pickels', 5.45);
FoodMart.total;
console.log(FoodMart.total);
FoodMart.numItems; */
<file_sep>/market/Customer.js
class Customer {
constructor(name) {
this._name = name;
this._customerID =
'_' +
Math.random()
.toString(36)
.substr(2, 9);
}
get name() {
return this._name;
}
get id() {
return this._customerID;
}
get customerInformation() {
return `Customer: ${this._name}\nCustomer ID:${this._customerID}`;
}
}
module.exports = Customer;
/* const frank = new Customer('Frank');
console.log(frank.customerInformation);
const jenny = new Customer('Jenny');
console.log(jenny.customerInformation); */
<file_sep>/weather-app/app.js
//http request
<file_sep>/School Program/Middle.js
const School = require('./School');
class MiddleSchool extends School {
constructor(name, level, numberOfStudents) {
super(name, level, numberOfStudents);
}
}
module.exports = MiddleSchool;
<file_sep>/Library program/libraby.js
/*
BOOK:
*author *title *pages *isCheckedOut= false *ratings = []
Methods: .getAverageRating(), .toggleCheckOutStatus(), and .addRating()
MOVIES:
*director *title *runTime *isCheckedOut = false *ratings = []
Methods: .getAverageRating(), .toggleCheckOutStatus(), and .addRating()
CD:
*artist *title * isCheckedOut = false * ratings = [] * songs = ['song 1','song 2']
Methods: .getAverageRating(), .toggleCheckOutStatus(), and .addRating()
*/
class Catalog {
constructor(title) {
this._title = title;
this._mediaType = { book: [], movie: [], cd: [] };
}
addMedia(type, info) {
this._mediaType[type].push(info);
}
}
class Media {
constructor(title) {
this._title = title;
this._isCheckedOut = false;
this._ratings = [];
}
get title() {
return this._title;
}
get isCheckedOut() {
return this._isCheckedOut;
}
get ratings() {
return this._ratings;
}
toggleCheckOutStatus() {
this._isCheckedOut = !this._isCheckedOut;
}
get averageRating() {
let sumValues = this._ratings.reduce(
(previous, current) => (current += previous)
);
let avg = sumValues / this._ratings.length;
return avg.toFixed(2);
}
addRating(value) {
this._ratings.push(value);
}
set isCheckedOut(bool) {
return (this._isCheckedOut = bool);
}
}
class Book extends Media {
constructor(author, title, pages) {
super(title);
this._author = author;
this._pages = pages;
}
get author() {
return this._ratings;
}
get pages() {
return this._pages;
}
}
class Movie extends Media {
constructor(director, title, runtime) {
super(title);
this._director = director;
this._runtime = runtime;
}
get director() {
return this._director;
}
get runtime() {
return this._runtime;
}
}
class CD extends Media {
constructor(artist, title) {
super(title);
this._artist = artist;
this._songs = [];
}
shuffle() {
const result = this._songs.sort(() => Math.random() - 0.5);
return result;
}
addSong(songName) {
this._songs.push(songName);
}
}
/*
Create a Book instance with the following properties:
Author: '<NAME>'
Title: 'A Short History of Nearly Everything'
pages: 544
Save the instance to a constant variable named historyOfEverything.
*/
const historyOfEverything = new Book(
'<NAME>',
'A Short History of Nearly Everything',
544
);
historyOfEverything.toggleCheckOutStatus();
console.log(historyOfEverything.isCheckedOut);
historyOfEverything.addRating(4);
historyOfEverything.addRating(5);
historyOfEverything.addRating(5);
console.log(historyOfEverything.averageRating);
const speed = new Movie('<NAME>', 'Speed', 116);
speed.toggleCheckOutStatus();
console.log(speed.isCheckedOut);
speed.addRating(1);
speed.addRating(1);
speed.addRating(5);
console.log(speed.averageRating);
const jessyReyes = new CD('<NAME>', 'Far Away');
jessyReyes.addSong('Risk it all.');
jessyReyes.addSong('Easy breazy.');
jessyReyes.addSong('Come trhoug.');
jessyReyes.addSong('Summer walk.');
jessyReyes.addSong('Walk by my side.');
jessyReyes.addRating(2);
jessyReyes.addRating(5);
jessyReyes.addRating(3);
jessyReyes.addRating(4.2);
console.log(jessyReyes.averageRating);
console.log(jessyReyes.shuffle());
<file_sep>/Promises /01.js
// import { resolve } from 'dns';
// import { rejects } from 'assert';
// /*
// 3 stages of promise
// Pending: The initial state— the operation has not completed yet.
// Fulfilled: The operation has completed successfully and the promise now has a resolved value. For example,
// a request’s promise might resolve with a JSON object as its value.
// Rejected: The operation has failed and the promise has a reason for the failure. This reason is usually an Error of some kind.
// */
// const inventory = {
// sunglasses: -1900,
// pants: -1088,
// bags: -1344
// };
// const executorFunction = (resolve, reject) => {
// Object.values(inventory).forEach(value => {
// if (value > 0) {
// resolve('Sunglasses order processed.');
// } else {
// reject('That item is sold out.');
// }
// });
// };
// const firstPromise = new Promise(executorFunction);
// firstPromise;
const items = [{ Bananas: 4.25 }, { Onions: 1.55 }, { Tomatos: 2.25 }];
Object.values(items).forEach(value => {
value += value;
});
| 245fa59b7723ff0a8aede25b265f81add0d378d9 | [
"Markdown",
"JavaScript"
] | 8 | Markdown | e-rojas/Library | 580f12dae0ecf2cc5b728493535861281c0756cd | d3c9509e3bbd8b2fd5b087b42b8f6c418c55eeba |
refs/heads/master | <file_sep>from selenium import webdriver
from selenium.webdriver.common.keys import Keys
from django.test import LiveServerTestCase
import time
import unittest
class NewVisitorTest(LiveServerTestCase):
chromepath = "/home/michael/Downloads/chromedriver"
def setUp(self):
self.browser = webdriver.Chrome(self.chromepath)
self.browser.implicitly_wait(3)
def tearDown(self):
self.browser.quit()
def check_for_row_in_list_table(self,row_text):
table = self.browser.find_element_by_id('id_list_table')
rows = table.find_elements_by_tag_name('tr')
self.assertIn(row_text, [row.text for row in rows])
def test_layout_and_styling(self):
self.browser.get(self.live_server_url)
self.browser.set_window_size(1024, 768)
inputbox = self.browser.find_element_by_id('id_new_name')
self.assertAlmostEqual(
inputbox.location['x'] + inputbox.size['width'] / 2, 512,
delta = 5
)
def test_can_start_a_list_and_retrieve_it_later(self):
#Jim will visit the website and check to see it is a todo site
self.browser.get(self.live_server_url)
self.assertIn('To-Do lists', self.browser.title)
header_text = self.browser.find_element_by_tag_name('h1').text
self.assertIn('To-Do', header_text)
#First Jim will add an item to his grocery list
inputbox = self.browser.find_element_by_id('id_new_item')
self.assertEqual(inputbox.get_attribute('placeholder'), 'Enter a to-do item')
inputbox.send_keys('Buy peacock feathers')
#When Jim presses enter he will see his list item added to the list and the url
#will reflect his change to a new specific unique url for his list
inputbox.send_keys(Keys.ENTER)
jim_list_url = self.browser.current_url
self.assertRegex(jim_list_url, '/lists/.+')
self.check_for_row_in_list_table('1: Buy peacock feathers')
#Then Jim will add another item to his list
inputbox = self.browser.find_element_by_id('id_new_item')
inputbox.send_keys('Use peacock feathers to make a fly')
inputbox.send_keys(Keys.ENTER)
#Now Jim checks to see the two items are displayed
self.check_for_row_in_list_table('1: Buy peacock feathers')
self.check_for_row_in_list_table('2: Use peacock feathers to make a fly')
#Jim quits and a new person, Joe opens the website
self.browser.quit()
self.browser = webdriver.Chrome(self.chromepath)
self.browser.implicitly_wait(3)
#Joe visits the website
self.browser.get(self.live_server_url)
page_text = self.browser.find_element_by_tag_name('body').text
self.assertNotIn('Buy peacock feathers',page_text)
self.assertNotIn('make a fly', page_text)
#Joe starts a new list with the following items: 1. Buy milk
inputbox = self.browser.find_element_by_id('id_new_item')
inputbox.send_keys('Buy milk')
inputbox.send_keys(Keys.ENTER)
#Joe has a unique URL
joe_url = self.browser.current_url
self.assertRegex(joe_url, '/lists/.+')
self.assertNotEqual(jim_list_url, joe_url)
#Again check there is not any residual list text
page_text = self.browser.find_element_by_tag_name('body').text
self.assertNotIn('Buy peacock feathers',page_text)
self.assertNotIn('make a fly', page_text)
#lastly he will exit
self.browser.quit() | a10b9615d2a2f91e96c5d8f55f43b2299dac7441 | [
"Python"
] | 1 | Python | mckerley/djangotestbed | e504e7243d2a45bff42c1b97db2ed6d2151b5ee0 | b9c4c6f8fa71301ab19bf34fabf7aef74234a2be |
refs/heads/master | <file_sep>/******************************************************************************
*
* DdEditorDialog.hh
*
* Author: msatyam
*
* November, 2016
*
* Dialog box which allows user to to edit Default destination of OSS server
*
* ***************************************************************************/
#if !defined(DD_EDITOR_DIALOG_HH)
#define DD_EDITOR_DIALOG_HH
#include <gtk/gtk.h>
#include <iostream>
#include <string>
#include <Helper.hh>
using namespace std;
class DdEditorDialog {
private:
// wans config file
string wansConfFile;
// dialog window
GtkWidget* dialog;
// hbox that contain ip address label and entry
GtkWidget* hbox1;
// hbox that contain ip port label and entry
GtkWidget* hbox2;
// label for IP address
GtkWidget* ipLabel;
// label for port
GtkWidget* portLabel;
// entry(textbox)widgets to hold IP
GtkWidget* ipTextBox;
// entry(textbox)widgets to hold port
GtkWidget* portTextBox;
public:
// intializes the dialog box
DdEditorDialog(string confFile);
// edits Default Destination as entered by user
void editDefaultDestination();
// returns the wans conf file path
string getConfFile();
};
#endif
<file_sep>/******************************************************************************
*
* MMLResponse.hh
*
* Author: msatyam
*
* August, 2016
*
* Stores responses for the MML commands after they are processed.
*
* ***************************************************************************/
#if !defined(MMLRESPONSE_HH)
#define MMLRESPONSE_HH
#include "Response.hh"
class MMLResponse : public Response {
private:
// stores the autocompleted command
string delayedOutput;
// states whether autocompletion has been done or not
bool delayed;
// states whether the user has requested to shift to APLOC mode
bool modeChanged;
public:
// intialize data members
MMLResponse();
// sets the delayed output
void setDelayedOutput(string a);
// sets the delayed flag
void setDelayed(bool b);
// sets the modeChanged flag
void setModeChanged(bool b);
// gets the delayed output
string getDelayedOutput();
// true if command has a delayed output too, false otherwise
bool isDelayed();
// true if user wants to shift to APLOC mode, false otherwise
bool isModeChanged();
};
#endif
<file_sep>/******************************************************************************
*
* MoTree.cc
*
* Author: mSatyam
*
* 2016, September
*
* File defines the operations one can perform on MO Tree which is represented
* in a XML format. MO Tree has a root NODE with child and sub-child NODES.
*
* ***************************************************************************/
#include "MoTree.hh"
// loads XML files as specified in the argument
MoTree::MoTree(string xmlFile)
{
parser = new XercesDOMParser();
// parse the default MO file
try
{
parser->parse(xmlFile.c_str());
}
catch (const XMLException& ex)
{
cerr << ex.getMessage() << endl;
exit(1);
}
// get the document
doc = parser->getDocument();
// get root element
root = doc->getDocumentElement();
}
// returns root MO from the MO Tree
Mo* MoTree::getRootMo()
{
DOMNode* node = dynamic_cast<DOMNode*>(root);
Mo* mo = new Mo(node);
return mo;
}
// returns all MO's in our MO Tree represented by XML file
MoList* MoTree::getAllMos()
{
// TODO
return NULL;
}
// returns MO with the Name specified (except the root MO)
Mo* MoTree::getMoByName(string name)
{
DOMNodeList* list = root->getElementsByTagName(XMLString::transcode(name.c_str()));
// most probably we have only one match thus for now returning first
// element only which will be the only element with that name
Mo* mo = new Mo(dynamic_cast<DOMElement*>(list->item(0)));
return mo;
}
<file_sep>/**********************************************************************
*
* APLOCProcessor.cc
*
* Author: mSatyam
*
* 2016, August
*
* Processes APLOC mode commands
*
* ********************************************************************/
#include "APLOCProcessor.hh"
// intialize the APLOCProcessor
APLOCProcessor::APLOCProcessor(string mo_xml_file)
{
try
{ // init xerces XML Parser library
XMLPlatformUtils::Initialize();
}
catch (const XMLException& toCatch)
{
cout << toCatch.getMessage() << endl;
exit(1);
}
// set xml file name
if (mo_xml_file.empty())
{
xmlFile = DEFAULT_MO_XML_FILE_PATH;
}
else
{
xmlFile = mo_xml_file;
}
// init MoTree
currentMoTree = new MoTree(xmlFile);
// init Mo
currentMo = currentMoTree->getRootMo();
// set config mode as false initially
configMode = false;
// set the default APLOC prompt
prompt = APLOC_PROMPT;
}
APLOCProcessor::~APLOCProcessor()
{
// de-allocate xerces XML library resources
XMLPlatformUtils::Terminate();
}
// returns response for an APLOC command
APLOCResponse APLOCProcessor::getResponse(string command)
{
APLOCResponse resp;
// return immediately with only prompt as a response if command is empty
if (command.length() == 0)
{
resp.setPrompt(getPrompt());
return resp;
}
// do autocompletion if it's a TAB appended command
if (command[command.length() - 1] == TAB)
{
command = Helper::stripSpace(command);
resp = processTab(command);
}
// process complete command
else
{
command = Helper::stripSpace(command);
resp = processEnter(command);
}
return resp;
}
// handles TAB character autocompletion functionality
APLOCResponse APLOCProcessor::processTab(string command)
{
APLOCResponse resp;
// get all child Mo's starting with text in command
MoList* list = currentMo->getChildMoNameStartsWith(command);
// no match found return empty object just with the prompt
// and the half command entered by user
if (list->getLength() == 0)
{
resp.setPrompt(getPrompt());
resp.setAutoCompletedCommand(command);
return resp;
}
// if only one match is found then
if (list->getLength() == 1)
{
// get the complete command
command = list->getMoAtIndex(0)->getName();
// set the prompt
resp.setPrompt(getPrompt());
// set the complete command in response
resp.setAutoCompletedCommand(command);
// indicate terminal about autocompletion
resp.setAutoCompleted(true);
}
// else many Mo's are begining with text in command then
else
{
stringstream out;
// then list each Mo in a newline
for (int i = 0; i < list->getLength(); i++)
{
out << list->getMoAtIndex(i)->getName() << endl;
}
// set the prompt and output
resp.setPrompt(getPrompt());
// keep the half typed user command in response
resp.setAutoCompletedCommand(command);
// set the available Mo list
resp.setOutput(out.str());
}
return resp;
}
// handles complete commands i.e. commands ending with ENTER key
APLOCResponse APLOCProcessor::processEnter(string command)
{
if (isNonMoCommand(command))
return handleNonMoCommand(command);
APLOCResponse resp;
// get child Mo of currentMo which has name as user
// typed in command
Mo* newMo = currentMo->getChildMoByName(command);
// if Mo not found then
if (newMo == NULL)
{
// keep the old prompt intact no need to change
resp.setPrompt(prompt);
// set error message as invalid MO entered
resp.setOutput("ERROR: MO not found.");
// and return.
return resp;
}
// when found make currentMo as new Mo
currentMo = newMo;
// update the prompt
updatePrompt();
// make respose and return
resp.setPrompt(getPrompt());
return resp;
}
// checks whether the command is a non-MO command or not
// from non-MO command list
bool APLOCProcessor::isNonMoCommand(string command)
{
// non-MO command list
string list[10] = {"up", "top", "end", "abort -s", "abort", "commit", "commit -s", "show" , "mml", "quit"};
// check if user typed command is one of the non-MO command
for (int i = 0; i < 10; i++)
{
if (list[i] == command)
{
return true;
}
}
return false;
}
// handles non-MO commands
APLOCResponse APLOCProcessor::handleNonMoCommand(string command)
{
if (command == "mml")
{
return processMml();
}
else if (command == "up")
{
return processUp();
}
else if (command == "end")
{
return processEnd();
}
else
{
APLOCResponse resp;
resp.setPrompt(getPrompt());
resp.setOutput("Command Not Supported by this version of NE Simulator");
return resp;
}
}
// handles switching from APLOC to MML mode
APLOCResponse APLOCProcessor::processMml()
{
APLOCResponse resp;
if (currentMo->getName() != "APLOC")
{
resp.setPrompt(getPrompt());
resp.setOutput("Error: Invalid command");
return resp;
}
resp.setExit(true);
return resp;
}
// switches from current MO to parent MO
APLOCResponse APLOCProcessor::processUp()
{
APLOCResponse resp;
// send back error message when already at configure or APLOC MO
if (currentMo->getName() == "configure" ||
currentMo->getName() == "APLOC")
{
resp.setPrompt(getPrompt());
resp.setOutput("Error: Already at root");
return resp;
}
// shift to parent MO
currentMo = currentMo->getParentMo();
// update prompt with new MO
updatePrompt();
// only need to send the new prompt back to terminal
resp.setPrompt(getPrompt());
return resp;
}
// switch to APLOC mode root level
APLOCResponse APLOCProcessor::processEnd()
{
APLOCResponse resp;
currentMo = currentMoTree->getRootMo();
// disable the config mode
configMode = false;
// update prompt with APLOC default prompt
updatePrompt();
resp.setPrompt(getPrompt());
return resp;
}
// updates the APLOC commandline prompt w.r.t. MO name
void APLOCProcessor::updatePrompt()
{
// if Mo is "configure" then
if (currentMo->getName() == "configure")
{
// set config mode as true
configMode = true;
// update the prompt
prompt = string("(config)") + APLOC_PROMPT;
return;
}
else if (currentMo->getName() == "APLOC")
{
prompt = APLOC_PROMPT;
}
// got som other MO name
else
{
// config mode is set then
if (configMode)
{
// append MO name to config prompt
prompt = string("(config-") + currentMo->getName() + string(")") + APLOC_PROMPT;
}
else
{
// just set MO name as prompt
prompt = string("(") + currentMo->getName() + string(")") + APLOC_PROMPT;
}
}
}
// returns the current prompt
string APLOCProcessor::getPrompt()
{
return prompt;
}
// returns the default prompt
string APLOCProcessor::getDefaultPrompt()
{
return APLOC_PROMPT;
}<file_sep>/******************************************************************************
*
* EventHandler.cc
*
* Author: msatyam
*
* November, 2016
*
* Implements the event handlers for processing signals emitted by
* different widgets only from Main Window
*
* ***************************************************************************/
#include "EventHandler.hh"
#include "MoPathEditorDialog.hh"
#include "MmlPathEditorDialog.hh"
#include "DdEditorDialog.hh"
// launches edit MO path dialog
void EventHandler::editMOPath(GtkWidget *widget, gpointer data)
{
cout << "Edit MO Path Handler" << endl;
MainWindow* mainWin = static_cast<MainWindow*>(data);
MoPathEditorDialog moEditor(mainWin->getConfFile());
}
// launches dialog for editing MML reponse path directory
void EventHandler::editMMLPath(GtkWidget *widget, gpointer data)
{
cout << "Edit MML Path Handler" << endl;
MainWindow* mainWin = static_cast<MainWindow*>(data);
MmlPathEditorDialog mmlEditor(mainWin->getConfFile());
}
// launches dialog for editing default destination
void EventHandler::editDefaultDestination(GtkWidget *widget, gpointer data)
{
cout << "Edit Default Destination Handler" << endl;
MainWindow* mainWin = static_cast<MainWindow*>(data);
DdEditorDialog ddEditor(mainWin->getConfFile());
}
// launches dialog to send custom alarms
void EventHandler::customAlarmHandler(GtkWidget *widget, gpointer data)
{
cout << "Send Custom Alarm Handler" << endl;
}
// launches help dialog
void EventHandler::helpHandler(GtkWidget *widget, gpointer data)
{
cout << "Help Handler" << endl;
}
// starts the Simulated NODE
void EventHandler::startNE(GtkWidget *widget, gpointer data)
{
MainWindow* mainWin = static_cast<MainWindow*>(data);
// disable the start button
mainWin->disableStartButton();
// enable the stop button
mainWin->enableStopButton();
// start the NE using start script
string binDir = Helper::getVar(mainWin->getConfFile(), "BIN_DIR");
string cmd = binDir + "/startNE.sh" + " " + binDir;
system(cmd.c_str());
// change NODE status
mainWin->toggleNodeStatus();
cout << "NE Started" << endl;
}
// stops the Simulated NODE
void EventHandler::stopNE(GtkWidget *widget, gpointer data)
{
MainWindow* mainWin = static_cast<MainWindow*>(data);
// disable the stop button
mainWin->disableStopButton();
// enable the start button
mainWin->enableStartButton();
// stop the NE using stop script
string binDir = Helper::getVar(mainWin->getConfFile(), "BIN_DIR");
string cmd = binDir + "/stopNE.sh";
system(cmd.c_str());
// change NODE status
mainWin->toggleNodeStatus();
cout << "NE Stopped" << endl;
}
// sends default alarm using alarm initiator
void EventHandler::sendAlarmHandler(GtkWidget *widget, gpointer data)
{
MainWindow* mainWin = static_cast<MainWindow*>(data);
// send alarm using alarmInitiator binary
string binDir = Helper::getVar(mainWin->getConfFile(), "BIN_DIR");
string cmd = binDir + "/alarmInitiator " + mainWin->getConfFile();
// send the alarm
system(cmd.c_str());
cout << "Alarm Sent" << endl;
}
<file_sep>/******************************************************************************
*
* APLOCResponse.cc
*
* Author: msatyam
*
* August, 2016
*
* Stores responses for the APLOC commands after they are processed.
*
* ***************************************************************************/
#include "APLOCResponse.hh"
// intialize data members
APLOCResponse::APLOCResponse()
{
autoCompletedCommand = "";
autoCompleted = false;
}
// sets the autocompleted command
void APLOCResponse::setAutoCompletedCommand(string a)
{
autoCompletedCommand = a;
}
// true if command autocompletion has been done, false otherwise
void APLOCResponse::setAutoCompleted(bool b)
{
autoCompleted = b;
}
// gets the autocompleted command
string APLOCResponse::getAutoCompletedCommand()
{
return autoCompletedCommand;
}
// gets the autocompletion flag
bool APLOCResponse::isAutoCompleted()
{
return autoCompleted;
}
<file_sep>/******************************************************************************
*
* Mo.cc
*
* Author: mSatyam
*
* 2016, September
*
* This class represents a single MO from a specific MO Tree one can say a
* single NODE of a MO Tree XML file and opertions that can be perfomed on it.
*
* ***************************************************************************/
#include "Mo.hh"
#include "MoList.hh"
// creates a MO with the specified Node of the XML file
Mo::Mo(DOMNode* node)
{
this->ourMo = node;
if (node != NULL)
{
name = XMLString::transcode(node->getNodeName());
}
}
// returns all the child MO's of this MO
MoList* Mo::getChildMos()
{
DOMNodeList* list = ourMo->getChildNodes();
MoList* moList = new MoList(list);
return moList;
}
// returns the next MO immediately following this MO
Mo* Mo::getChildMo()
{
DOMNode* next = ourMo->getFirstChild();
while (next && next->getNodeType() != DOMNode::ELEMENT_NODE)
{
/* MO's are equivalent to ELEMENT_NODE if something else found
* most probably a TEXT_NODE then we need to call getNextSibling
* instead see example below.
* Example XML is: <root>some_text<myMO></myMO></root>
* In above case if we call getFirstChild on <root> MO we will
* get TEXT_NODE("some_text") but we need child MO which is equivalent
* to ELEMENT_NODE so calling getFirstChild on TEXT_NODE
* will return NULL thus we need to call getNextSibling in order
* to get <myMo> MO as it is a sibling of TEXT_NODE and not a child of TEXT_NODE
* As a matter of fact TEXT_NODE do not have child NODES.
*/
next = next->getNextSibling();
}
if (next == NULL)
{
return NULL;
}
Mo* mo = new Mo(next);
return mo;
}
// returns the child Mo as the name specified in argument (if any)
// exact name should match
Mo* Mo::getChildMoByName(string moName)
{
// Mo to return
Mo* matchedMo = NULL;
// get all child Mos
MoList *list = getChildMos();
// iterate over each Mo
for (int i = 0; i < list->getLength(); i++)
{
// compare Mo name with passed name ignoring case
// store if match found and break
if (Helper::equalsIgnoreCase(moName,
list->getMoAtIndex(i)->getName()))
{
matchedMo = list->getMoAtIndex(i);
break;
}
}
return matchedMo;
}
// returns MoList of all child Mo's whose name starts with
// the name given in arguments
MoList* Mo::getChildMoNameStartsWith(string moName)
{
// to store new list which has matching Mos
MoList* matchingMoList = new MoList();
// get all child Mo's of the current Mo
MoList* list = getChildMos();
// check in child list which Mo has name starting
// with user typed name that is passed here as argument
for (int i = 0; i < list->getLength(); i++)
{
if (Helper::isStartingWith(moName, list->getMoAtIndex(i)->getName()))
{
matchingMoList->add(list->getMoAtIndex(i));
}
}
return matchingMoList;
}
// return parent Mo of this MO
Mo* Mo::getParentMo()
{
DOMNode* parent = ourMo->getParentNode();
while (parent && parent->getNodeType() != DOMNode::ELEMENT_NODE)
{
parent = parent->getParentNode();
}
if (parent == NULL)
{
return NULL;
}
Mo* mo = new Mo(parent);
return mo;
}
// checks whether Mo is an variable like other Mo's for variables Mo's are
// one with which one value is associated which can be set by the user.
// Also variables won't have any child Mo's.
bool Mo::isVariable()
{
// TODO
return false;
}
// returns name of this MO
string Mo::getName()
{
return name;
}
// states whether this MO is an interactive command MO
bool Mo::isInteractive()
{
// TODO
return false;
}
<file_sep>#!/bin/bash
# inetd configuration files
INETD_CONF=/etc/inet/inetd.conf
SERVICES=/etc/inet/services
# give write permission to both conf files
chmod 755 $INETD_CONF
chmod 755 $SERVICES
# remove the wans entries from both conf files
sed '/wans_5000/d' $INETD_CONF > /tmp/inetd.new
cp /tmp/inetd.new $INETD_CONF
sed '/wans_5000/d' $SERVICES > /tmp/services.new
cp /tmp/services.new $SERVICES
# re-generate inetd configuration
inetconv -f
# remove the service entry from svcs
svcadm disable wans_5000/tcp
svccfg delete wans_5000/tcp
<file_sep>/******************************************************************************
*
* AlarmInitiator.cc
*
* Author: msatyam
*
* November, 2016
*
* Implements alarm generation feature in order to send alarms to OSS
* applications.
*
* ***************************************************************************/
#include "AlarmInitiator.hh"
// intializes required data
AlarmInitiator::AlarmInitiator(string confFile)
{
// store the wans conf file path
wansConfFile = confFile;
// fetch IP and Port from wans conf file
ip = Helper::getVar(wansConfFile, "DD_IP");
port = Helper::getVar(wansConfFile, "DD_PORT");
ossServerfd = 0;
alarm = "";
alarmData.push_back(":type=alarm");
alarmData.push_back("cpside=ex");
alarmData.push_back("device=AD-0");
alarmData.push_back("prca=42");
alarmData.push_back("prseqno=0");
alarmData.push_back("altype=new");
alarmData.push_back("alcls=2");
alarmData.push_back("alcat=8");
alarmData.push_back("alseqno=0");
alarmData.push_back("alno=111");
alarmData.push_back("alvisno=0");
alarmData.push_back(";");
alarmData.push_back(ALARM_HEADER1);
alarmData.push_back(ALARM_HEADER2);
alarmData.push_back("SATYAM");
alarmData.push_back("\r\nEND\r\n\r\n\04\00");
}
// makes a TCP connection with the OSS server
void AlarmInitiator::connectToOss()
{
// stores address of the remote server to connect
struct sockaddr_in server_addr;
// create the socket
ossServerfd = socket(AF_INET, SOCK_STREAM, 0);
if (ossServerfd == -1)
{
cerr << "Error: Creating Socket" << endl;
exit(-1);
}
// initialize the sockaddr
memset(&server_addr, 0, sizeof(server_addr));
// store server deatils as passed in arguments
server_addr.sin_family = AF_INET;
server_addr.sin_addr.s_addr = inet_addr(ip.c_str());
server_addr.sin_port = htons(atoi(port.c_str()));
// make connection to the OSS server
if (connect(ossServerfd, (struct sockaddr*) &server_addr, sizeof(server_addr)) == -1)
{
cerr << "Error: Connecting to OSS Server" << endl;
exit(-1);
}
}
// building the as a one string from all alarm attributes
void AlarmInitiator::buildAlarm()
{
alarm = "";
for (int i = 0; i < ATTRIBUTE_COUNT; i++)
{
alarm += alarmData[i];
if (i < separator)
{
alarm +=",";
}
}
}
// sends alarm to the OSS server
bool AlarmInitiator::sendAlarm()
{
int result = write(getfd(), getAlarm().c_str(), getAlarm().length());
if (result == getAlarm().length())
{
return true;
}
return false;
}
// disconnect the connection
void AlarmInitiator::disconnect()
{
close(ossServerfd);
}
// returns oss server file descriptor
int AlarmInitiator::getfd()
{
return ossServerfd;
}
// return alarm that need to be sent to OSS server
string AlarmInitiator::getAlarm()
{
return alarm;
}
<file_sep>#include "AlarmInitiator.hh"
int main(int argc, char* argv[])
{
// validate proper usage
if (argc != 2 )
{
cerr << "Usage:" << argv[0] << "<wans conf file path>" << endl;
exit(-1);
}
// intantiate the alarm initiator object
AlarmInitiator alarmGenerator(argv[1]);
// build the alarm
alarmGenerator.buildAlarm();
// connect to the OSS server
alarmGenerator.connectToOss();
// send the alarm
alarmGenerator.sendAlarm();
// disconnect
alarmGenerator.disconnect();
return 0;
}
<file_sep>/******************************************************************************
*
* MoPathEditorDialog.hh
*
* Author: msatyam
*
* November, 2016
*
* Dialog box which allows user to to edit MO file path
*
* ***************************************************************************/
#if !defined(MO_PATH_EDITOR_DIALOG_HH)
#define MO_PATH_EDITOR_DIALOG_HH
#include <gtk/gtk.h>
#include <iostream>
#include <string>
#include <cstdlib>
#include <Helper.hh>
using namespace std;
class MoPathEditorDialog {
private:
// wans config file
string wansConfFile;
// dialog window
GtkWidget* dialog;
// hbox that contain other widgets
GtkWidget* hbox;
// label for MO path
GtkWidget* moPathLabel;
// entry(textbox)widgets to hold MO file path
GtkWidget* moPathTextBox;
public:
// intializes the dialog box
MoPathEditorDialog(string confFile);
// edits MO File Path as entered by user
void editMoFilePath();
// returns the wans conf file path
string getConfFile();
};
#endif
<file_sep>/******************************************************************************
*
* Helper.hh
*
* Author: mSatyam
*
* August, 2016
*
* Some Utility functions.
*
* ***************************************************************************/
#if !defined(HELPER_HH)
#define HELPER_HH
#define DELIMITER "="
#include <iostream>
#include <cctype>
#include <string>
#include <fstream>
#include <cstdlib>
using namespace std;
class Helper {
public:
// compares two strings ignoring case
static bool equalsIgnoreCase(string str1, string str2);
// checks if string str2 has a substring str1 at index 0
// ignoring case
static bool isStartingWith(string str1, string str2);
// strip spaces from the string
static string stripSpace(string& str);
// strip semi-colon from the end of the command
static string stripSemicolon(string& str);
// reads contents of a flat file
static string getFileContents(string filename);
// reads the variable value from wans config file
static string getVar(string configFile, string var);
};
#endif
<file_sep>/******************************************************************************
*
* MoList.cc
*
* Author: mSatyam
*
* 2015, August
*
* This class provides a way to store and retreive ordered collection of MOS,
* basically a wrapper to DOMNodeList.
*
* ***************************************************************************/
#include "MoList.hh"
// creates an empty Mo list
MoList::MoList()
{
}
// create a list of MO's from DOMNodeList
MoList::MoList(DOMNodeList* nodeList)
{
Mo* temp;
// MO List consists of only ELEMENT_NODES
for (int i = 0; i < nodeList->getLength(); i++)
{
if (nodeList->item(i)->getNodeType() == DOMNode::ELEMENT_NODE)
{
temp = new Mo(nodeList->item(i));
this->list.push_back(temp);
}
}
}
// appends Mo to the end of the MoList
void MoList::add(Mo* mo)
{
// add to list end
list.push_back(mo);
}
// return MO at specified index
Mo* MoList::getMoAtIndex(size_t index)
{
return list.at(index);
}
// returns number of MO's in the list
size_t MoList::getLength()
{
return list.size();
}
<file_sep>/*********************************************************************
*
* xercesc.hh
*
* Author: mSatyam
*
* 2016, August
*
* Contains all XERCES XML API headers required by our MO parser.
*
* *******************************************************************/
#if !defined(XERCESC_HH)
#define XERCESC_HH
#include <xercesc/util/PlatformUtils.hpp>
#include <xercesc/parsers/XercesDOMParser.hpp>
#include <xercesc/dom/DOMDocument.hpp>
#include <xercesc/dom/DOMNode.hpp>
#include <xercesc/dom/DOMElement.hpp>
#include <xercesc/util/XMLString.hpp>
#include <xercesc/dom/DOMNodeList.hpp>
// namespace for XML parsing
using namespace xercesc;
#endif
<file_sep>/******************************************************************************
*
* EventHandler.hh
*
* Author: msatyam
*
* November, 2016
*
* Implements the event handlers for processing signals emitted by
* different widgets only from Main Window
*
* ***************************************************************************/
#if !defined(EVENT_HANDLER_HH)
#define EVENT_HANDLER_HH
#include <iostream>
#include <cstdlib>
#include <gtk/gtk.h>
#include "MainWindow.hh"
using namespace std;
class EventHandler {
public:
// launches edit MO path dialog
static void editMOPath(GtkWidget *widget, gpointer data);
// launches dialog for editing MML reponse path directory
static void editMMLPath(GtkWidget *widget, gpointer data);
// launches dialog for editing default destination
static void editDefaultDestination(GtkWidget *widget, gpointer data);
// launches dialog to send custom alarms
static void customAlarmHandler(GtkWidget *widget, gpointer data);
// launches help dialog
static void helpHandler(GtkWidget *widget, gpointer data);
// starts the Simulated NODE
static void startNE(GtkWidget *widget, gpointer data);
// stops the Simulated NODE
static void stopNE(GtkWidget *widget, gpointer data);
// sends default alarm using alarm initiator
static void sendAlarmHandler(GtkWidget *widget, gpointer data);
};
#endif
<file_sep>/******************************************************************************
*
* MoTree.hh
*
* Author: mSatyam
*
* 2016, September
*
* File defines the operations one can perform on MO Tree which is represented
* in a XML format. MO Tree has a root NODE with child and sub-child NODES.
*
* ***************************************************************************/
#if !defined(MO_TREE_HH)
#define MO_TREE_HH
#include <iostream>
#include "MoList.hh"
class MoTree {
private:
// Parses the MO Tree XML file
XercesDOMParser* parser;
// Represents the XML document
DOMDocument* doc;
// Represents the root element
DOMElement* root;
public:
// loads XML files as specified in the argument
MoTree(string xmlFile);
// returns root MO from the MO Tree
Mo* getRootMo();
// returns all MO's in our MO Tree represented by XML file
MoList* getAllMos();
// returns MO with the Name specified (except the root MO)
Mo* getMoByName(string name);
};
#endif
<file_sep>/******************************************************************************
*
* Response.cc
*
* Author: msatyam
*
* August, 2016
*
* Stores responses for the command after they are processed.
*
* ***************************************************************************/
#include "Response.hh"
// intialize data members
Response::Response()
{
output = "";
prompt = "";
isExit = false;
}
// sets the output
void Response::setOutput(string o)
{
output = o;
}
// sets the promt
void Response::setPrompt(string p)
{
prompt = p;
}
// true if exit command found, false otherwise
void Response::setExit(bool b)
{
isExit = b;
}
// gets the output
string Response::getOutput()
{
return output;
}
// gets the prompt
string Response::getPrompt()
{
return prompt;
}
// should terminal exit or not
bool Response::doExit()
{
return isExit;
}
<file_sep>/******************************************************************************
*
* main.cc
*
* Author: mSatyam
*
* October, 2016
*
* Initializes GTKMM toolkit and launches the NE simulator's main window
*
* ***************************************************************************/
#include <gtk/gtk.h>
#include "MainWindow.hh"
int main(int argc, char* argv[])
{
// validate proper usage
if (argc != 2)
{
cerr << "Usage: " << argv[0] << " <WANS_CONFIG_FILE_PATH>" << endl;
exit(-1);
}
// initialize the GTKMM toolkit
gtk_init(&argc, &argv);
// create the main window instance
MainWindow win(argv[1]);
// launch the window and start the main loop
gtk_main();
return 0;
}
<file_sep>CC=clang++
INCLUDE_DIRS= -I ../../mo_parser \
-I../../utils
LIBS=`pkg-config --libs xerces-c`
CLASSES= ../../mo_parser/MoTree.cc ../../mo_parser/Mo.cc ../../mo_parser/MoList.cc ../../utils/Helper.cc
default:
$(CC) -o testMoTree testMoTree.cc $(CLASSES) $(INCLUDE_DIRS) $(LIBS)
<file_sep>#!/bin/bash
# current user
USER=$(whoami)
# WANS root directory
ROOT=$(pwd)
# directory containing binaries
BIN_DIR=$ROOT/bin
# path to telnetd
TELNETD=$BIN_DIR/emt_tgw_telnetd
# path to MO XML file
MO_FILE=$ROOT/etc/mo.xml
# term script file
TERM_SCRIPT=$BIN_DIR/term
# path to WANS config file
WANS_CONFIG=$ROOT/etc/wans.config
# path to MML command output files directory
MML_PATH=$ROOT/mml_command_output
# default destination default IP
DD_IP=127.0.0.1
# default destination default PORT
DD_PORT=65505
# creates config file with default data
create_conf_file()
{
echo "Creating config file"
echo "ROOT=$ROOT" > $WANS_CONFIG
echo "BIN_DIR=$BIN_DIR" >> $WANS_CONFIG
echo "MO_FILE=$MO_FILE" >> $WANS_CONFIG
echo "MML_PATH=$MML_PATH" >> $WANS_CONFIG
echo "DD_IP=$DD_IP" >> $WANS_CONFIG
echo "DD_PORT=$DD_PORT" >> $WANS_CONFIG
}
# creates term script file which will be executed by inetd
create_term_script()
{
echo "#!/bin/bash" > $TERM_SCRIPT
echo "" >> $TERM_SCRIPT
echo "# set the library path" >> $TERM_SCRIPT
echo "export LD_LIBRARY_PATH=/opt/ericsson/lib" >> $TERM_SCRIPT
echo "" >> $TERM_SCRIPT
echo "# start the actual binary" >> $TERM_SCRIPT
echo "$BIN_DIR/vterm $WANS_CONFIG" >> $TERM_SCRIPT
# provide execute permission
chmod 755 $TERM_SCRIPT
}
# WANS should be started as root user
if [ "$USER" != "root" ]
then
echo "You need to be root to start WANS GUI!";
exit -1;
fi
# create config file only if it does not exists
if [ ! -e $WANS_CONFIG ]
then
create_conf_file
create_term_script
fi
# launch the WANS GUI
$BIN_DIR/main $WANS_CONFIG
<file_sep>/******************************************************************************
*
* MainWindow.cc
*
* Author: msatyam
*
* October, 2016
*
* Main window of the Network Simulator GUI
*
* ***************************************************************************/
#include "MainWindow.hh"
// sets up GUI main window
MainWindow::MainWindow(string confFile)
{
// store wans config file path
wansConfFile = confFile;
// create toplevel window
window = gtk_window_new(GTK_WINDOW_TOPLEVEL);
gtk_window_set_position(GTK_WINDOW(window), GTK_WIN_POS_CENTER);
gtk_window_set_default_size(GTK_WINDOW(window), 400, 200);
gtk_window_set_title(GTK_WINDOW(window), "NE Simulator");
// create scrolled window
mainScrolledWindow = gtk_scrolled_window_new(NULL,NULL);
// add main scrolled window to toplevel window
gtk_container_add(GTK_CONTAINER(window), mainScrolledWindow);
// scrolled window only visible when required
gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(mainScrolledWindow),
GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC);
// create vbox which contains all hboxes
vbox = gtk_vbox_new(FALSE, 5);
// create all the hboxes
hbox1 = gtk_hbox_new(FALSE, 0);
hbox2 = gtk_hbox_new(FALSE, 0);
hbox3 = gtk_hbox_new(FALSE, 0);
hbox4 = gtk_hbox_new(FALSE, 0);
// add vbox to the main scrolled window
gtk_scrolled_window_add_with_viewport(GTK_SCROLLED_WINDOW(mainScrolledWindow), vbox);
// add all the hboxes into the vbox
gtk_box_pack_start(GTK_BOX(vbox), hbox1, FALSE, FALSE, 0);
gtk_box_pack_start(GTK_BOX(vbox), hbox2, FALSE, FALSE, 0);
gtk_box_pack_start(GTK_BOX(vbox), hbox3, FALSE, FALSE, 0);
// create menubar and different menus in it with menu items
menubar = gtk_menu_bar_new();
fileMenu = gtk_menu_new();
editMenu = gtk_menu_new();
optionsMenu = gtk_menu_new();
helpMenu = gtk_menu_new();
fileMenuItem = gtk_menu_item_new_with_mnemonic("_File");
quitMenuItem = gtk_menu_item_new_with_label("Quit");
editMenuItem = gtk_menu_item_new_with_mnemonic("_Edit");
moPathMenuItem = gtk_menu_item_new_with_mnemonic("_MO File Path");
mmlPathMenuItem = gtk_menu_item_new_with_mnemonic("MM_L Response Directory Path");
defaultDestinationMenuItem = gtk_menu_item_new_with_mnemonic("_Default Destination");
optionsMenuItem = gtk_menu_item_new_with_mnemonic("_Options");
customAlarmMenuItem = gtk_menu_item_new_with_mnemonic("Send Custom _Alarms");
helpMenuItem = gtk_menu_item_new_with_mnemonic("_Help");
helpContentsMenuItem = gtk_menu_item_new_with_label("Contents");
gtk_menu_item_set_submenu(GTK_MENU_ITEM(fileMenuItem), fileMenu);
gtk_menu_shell_append(GTK_MENU_SHELL(fileMenu), quitMenuItem);
gtk_menu_shell_append(GTK_MENU_SHELL(menubar), fileMenuItem);
gtk_menu_item_set_submenu(GTK_MENU_ITEM(editMenuItem), editMenu);
gtk_menu_shell_append(GTK_MENU_SHELL(editMenu), moPathMenuItem);
gtk_menu_shell_append(GTK_MENU_SHELL(editMenu), mmlPathMenuItem);
gtk_menu_shell_append(GTK_MENU_SHELL(editMenu), defaultDestinationMenuItem);
gtk_menu_shell_append(GTK_MENU_SHELL(menubar), editMenuItem);
gtk_menu_item_set_submenu(GTK_MENU_ITEM(optionsMenuItem), optionsMenu);
gtk_menu_shell_append(GTK_MENU_SHELL(optionsMenu), customAlarmMenuItem);
gtk_menu_shell_append(GTK_MENU_SHELL(menubar), optionsMenuItem);
gtk_menu_item_set_submenu(GTK_MENU_ITEM(helpMenuItem), helpMenu);
gtk_menu_shell_append(GTK_MENU_SHELL(helpMenu), helpContentsMenuItem);
gtk_menu_shell_append(GTK_MENU_SHELL(menubar), helpMenuItem);
// add menubar to first hbox
gtk_box_pack_start(GTK_BOX(hbox1), menubar, FALSE, FALSE, 10);
// create start and stop button
startButton = gtk_button_new_with_label("Start NODE");
stopButton = gtk_button_new_with_label("Stop NODE");
// send default alarm button
sendAlarmButton = gtk_button_new_with_label("Send Alarm");
// add the start stop and send alarm button to the hbox2 container
gtk_box_pack_start(GTK_BOX(hbox2), startButton, TRUE, TRUE, 10);
gtk_box_pack_start(GTK_BOX(hbox2), stopButton, TRUE, TRUE, 10);
gtk_box_pack_start(GTK_BOX(hbox2), sendAlarmButton, TRUE, TRUE, 10);
// create NODE status frame
nodeStatusFrame = gtk_frame_new("NODE Status");
gtk_widget_set_size_request(nodeStatusFrame, -1, 100);
// add frame to hbox3
gtk_box_pack_start(GTK_BOX(hbox3), nodeStatusFrame, TRUE, TRUE, 10);
// check NODE status should be called before adding icon and label to hbox
checkNodeStatus();
// add NODE status icon and label to hbox4
gtk_box_pack_start(GTK_BOX(hbox4), nodeStatusIcon, FALSE, FALSE, 10);
gtk_box_pack_start(GTK_BOX(hbox4), nodeStatusLabel, FALSE, FALSE, 10);
// add NODE staus in node status frame
gtk_container_add(GTK_CONTAINER(nodeStatusFrame), hbox4);
// setup signal handlers for widgets
setEventHandlers();
// display all the widgets
gtk_widget_show_all(window);
}
// sets up signal handlers for widgets
void MainWindow::setEventHandlers()
{
// set close button signal handler for main window
g_signal_connect(G_OBJECT(window), "destroy", G_CALLBACK(gtk_main_quit), NULL);
// set menu items signal handers
g_signal_connect(G_OBJECT(quitMenuItem), "activate",
G_CALLBACK(gtk_main_quit), NULL);
g_signal_connect(G_OBJECT(moPathMenuItem), "activate",
G_CALLBACK(EventHandler::editMOPath), this);
g_signal_connect(G_OBJECT(mmlPathMenuItem), "activate",
G_CALLBACK(EventHandler::editMMLPath), this);
g_signal_connect(G_OBJECT(defaultDestinationMenuItem), "activate",
G_CALLBACK(EventHandler::editDefaultDestination), this);
g_signal_connect(G_OBJECT(customAlarmMenuItem), "activate",
G_CALLBACK(EventHandler::customAlarmHandler), this);
g_signal_connect(G_OBJECT(helpContentsMenuItem), "activate",
G_CALLBACK(EventHandler::helpHandler), this);
// buttons signal handler
g_signal_connect(G_OBJECT(startButton), "clicked",
G_CALLBACK(EventHandler::startNE), this);
g_signal_connect(G_OBJECT(stopButton), "clicked",
G_CALLBACK(EventHandler::stopNE), this);
g_signal_connect(G_OBJECT(sendAlarmButton), "clicked",
G_CALLBACK(EventHandler::sendAlarmHandler), this);
}
// return true when simulator running else false
bool MainWindow::checkNodeStatus()
{
string contents = Helper::getFileContents(ETC_SERVICES);
// see if NE simulator settings already installed in inetd conf
if (contents.find(NE_MAGIC_TEXT) == string::npos)
{
// Simulator not started yet
// set the NODE status icon and label as stopped
nodeStatusIcon = gtk_image_new_from_stock(GTK_STOCK_NO, GTK_ICON_SIZE_BUTTON);
nodeStatusLabel = gtk_label_new("STOPPED");
// disable stop button
disableStopButton();
return false;
}
// Simulator already running
// change NODE status label and icon
nodeStatusIcon = gtk_image_new_from_stock(GTK_STOCK_YES, GTK_ICON_SIZE_BUTTON);
nodeStatusLabel = gtk_label_new("RUNNING");
// disable the start button
disableStartButton();
return true;
}
// enable start button
void MainWindow::enableStartButton()
{
gtk_widget_set_sensitive(startButton, TRUE);
}
// disable start button
void MainWindow::disableStartButton()
{
gtk_widget_set_sensitive(startButton, FALSE);
}
// enable stop button
void MainWindow::enableStopButton()
{
gtk_widget_set_sensitive(stopButton, TRUE);
}
// disable stop button
void MainWindow::disableStopButton()
{
gtk_widget_set_sensitive(stopButton, FALSE);
}
// toggle node status
void MainWindow::toggleNodeStatus()
{
string status = gtk_label_get_text((GtkLabel*) nodeStatusLabel);
if (status == "RUNNING")
{
gtk_label_set_text((GtkLabel*) nodeStatusLabel, "STOPPED");
gtk_image_set_from_stock((GtkImage*) nodeStatusIcon, GTK_STOCK_NO, GTK_ICON_SIZE_BUTTON);
}
else
{
gtk_label_set_text((GtkLabel*) nodeStatusLabel, "RUNNING");
gtk_image_set_from_stock((GtkImage*) nodeStatusIcon, GTK_STOCK_YES, GTK_ICON_SIZE_BUTTON);
}
}
// returns wans config file path
string MainWindow::getConfFile()
{
return wansConfFile;
}
<file_sep>CC=g++
INCLUDE_DIRS= -I../../mo_parser -I../../utils
LIBS=`pkg-config --libs xerces-c`
CLASSES= ../../mo_parser/*.cc ../../utils/Helper.cc
default:
$(CC) -o testMoList testMoList.cc $(CLASSES) $(INCLUDE_DIRS) $(LIBS)
<file_sep>/******************************************************************************
*
* APLOCResponse.hh
*
* Author: msatyam
*
* August, 2016
*
* Stores responses for the APLOC commands after they are processed.
*
* ***************************************************************************/
#if !defined(APLOCRESPONSE_HH)
#define APLOCRESPONSE_HH
#include "Response.hh"
class APLOCResponse : public Response {
private:
// stores the autocompleted command
string autoCompletedCommand;
// states whether autocompletion has been done or not
bool autoCompleted;
public:
// intialize data members
APLOCResponse();
// sets the autocompleted command
void setAutoCompletedCommand(string a);
// true if command autocompletion has been done, false otherwise
void setAutoCompleted(bool b);
// gets the autocompleted command
string getAutoCompletedCommand();
// gets the autocompletion flag
bool isAutoCompleted();
};
#endif
<file_sep>/******************************************************************************
*
* AlarmInitiator.hh
*
* Author: msatyam
*
* November, 2016
*
* Implements alarm generation feature in order to send alarms to OSS
* applications.
*
* ***************************************************************************/
#if !defined(ALARM_INITIATOR_HH)
#define ALARM_INITIATOR_HH
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <unistd.h>
#include <cstring>
#include <string>
#include <iostream>
#include <vector>
using namespace std;
#include <Helper.hh>
#define ATTRIBUTE_COUNT 16
#define ALARM_HEADER1 "\r\nWO SSC01/GSM/BSC/G15B-APG43/ AD-0 TIME 160830 1244 PAGE 1\r\n"
#define ALARM_HEADER2 "*** ALARM 111 A3/POWER \"SSC01\"U 160830 1244\r\n"
enum AlarmAttributes {type, cpside, device, prca, prseqno, altype, alcls,
alcat, alseqno, alno, alvisno, separator, header1,
header2, alarmtext, footer};
class AlarmInitiator {
private:
vector<string> alarmData;
// alarm to send
string alarm;
// path to wans conf file
string wansConfFile;
// IP address to connect with
string ip;
// Port to connect with
string port;
// OSS server socket file descriptor
int ossServerfd;
public:
// intializes required data
AlarmInitiator(string confFile);
// makes a TCP connection with the OSS server
void connectToOss();
// building the as a one string from all alarm attributes
void buildAlarm();
// sends alarm to the OSS server
bool sendAlarm();
// disconnect the connection
void disconnect();
// returns oss server file descriptor
int getfd();
// return alarm that need to be sent to OSS server
string getAlarm();
};
#endif
<file_sep>CXX := g++
INCLUDES := -I ../mo_parser \
-I ../utils
OBJDIR := objs
OBJS := $(addprefix $(OBJDIR)/, Terminal.o MMLProcessor.o APLOCProcessor.o \
Response.o MMLResponse.o APLOCResponse.o)
all: $(OBJS)
$(OBJS): | $(OBJDIR)
$(OBJDIR)/Terminal.o: Terminal.cc Terminal.hh MMLProcessor.hh MMLResponse.hh \
Response.hh ../utils/Helper.hh APLOCProcessor.hh \
../mo_parser/MoTree.hh ../mo_parser/MoList.hh \
../mo_parser/Mo.hh ../mo_parser/xercesc.hh \
../mo_parser/MoList.hh ../mo_parser/Mo.hh \
APLOCResponse.hh
$(CXX) -ggdb -o $@ -c $< $(INCLUDES)
$(OBJDIR)/MMLProcessor.o: MMLProcessor.cc MMLProcessor.hh MMLResponse.hh \
Response.hh ../utils/Helper.hh
$(CXX) -ggdb -o $@ -c $< $(INCLUDES)
$(OBJDIR)/APLOCProcessor.o: APLOCProcessor.cc APLOCProcessor.hh \
../mo_parser/MoTree.hh ../mo_parser/MoList.hh \
../mo_parser/Mo.hh ../utils/Helper.hh ../mo_parser/xercesc.hh \
../mo_parser/MoList.hh \
../mo_parser/Mo.hh APLOCResponse.hh Response.hh
$(CXX) -ggdb -o $@ -c $< $(INCLUDES)
$(OBJDIR)/Response.o: Response.cc Response.hh
$(CXX) -ggdb -o $@ -c $< $(INCLUDES)
$(OBJDIR)/MMLResponse.o: MMLResponse.cc MMLResponse.hh Response.hh
$(CXX) -ggdb -o $@ -c $< $(INCLUDES)
$(OBJDIR)/APLOCResponse.o: APLOCResponse.cc APLOCResponse.hh Response.hh
$(CXX) -ggdb -o $@ -c $< $(INCLUDES)
$(OBJDIR):
mkdir $(OBJDIR)
.PHONY: clean
clean:
rm -rf $(OBJDIR)
<file_sep>/******************************************************************************
*
* Terminal.cc
*
* Author: mSatyam
*
* 2016, September
*
* Represents our virtual terminal which accepts user input in non-canonical
* mode , processes it and displays desired output to the user.
*
* ***************************************************************************/
#include "Terminal.hh"
// initializes required stuff for our terminal
Terminal::Terminal(string conf)
{
// set wans conf file path
wansConf = conf;
// set root directory
root = Helper::getVar(wansConf, "ROOT");
// set MO xml file name
xmlFile = Helper::getVar(wansConf, "MO_FILE");
// set mml command response directory
mmlRespDir = Helper::getVar(wansConf, "MML_PATH");
// store the initial terminal settings
tcgetattr(fileno(stdin), &initial_settings);
// make empty strings
command = "";
//config mode off by default
aplocMode = false;
// exit command false by default
isExitCommand = false;
// init APLOCProcessor
aplocProcessor = new APLOCProcessor(xmlFile);
// init MMLProcessor
mmlProcessor = new MMLProcessor(mmlRespDir);
}
Terminal::~Terminal()
{
// free up the aploc and mml processor objects
delete aplocProcessor;
delete mmlProcessor;
}
// logins the user to the NODE
bool Terminal::login()
{
string usercode, password, domain;
// Ask for USERCODE
cout << "USERCODE: ";
getline(cin, usercode);
// clean up the string
Helper::stripSpace(usercode);
// Ask for Password
cout << "Password: ";
getline(cin, password);
// clean up the string
Helper::stripSpace(password);
// validate and send header plus MML prompt
// also set the prompt value
if (usercode.compare("abc") == 0 &&
password.compare("abc") == 0)
{
cout << mmlProcessor->getDefaultPrompt();
}
// exit if invalid login
else
{
cerr << "Invalid Login" << endl;
return false;
}
// set terminal to non-canonical mode
setTerminalAttributes();
return true;
}
// main loop of our terminal which keeps on accepting user input
// processes it and displays desired results
void Terminal::main()
{
char ch = '\0';
// main loop
while (isExitCommand != true)
{
// read character
ch = getchar();
// ignore characters below BACKSPACE
if (ch < BACKSPACE)
{
continue;
}
// process user input
processInput(ch);
}
// reset terminal attributes before exiting
resetTerminalAttributes();
}
// each input character is forwarded here for processing
// then this function further decides what other input
// processing functions to call
void Terminal::processInput(char c)
{
// switch on character
switch(c)
{
// backspace pressed
case BACKSPACE:
case DELETE:
processBackspace();
break;
// tab pressed
case TAB:
if (aplocMode)
{
command += c;
processCommand();
}
break;
// enter pressed
case ENTER:
processCommand();
// clean up the command
setCommand("");
break;
// default
default:
// append character to command string
command += c;
// we need to manually display characters
// to the user as we have made echo off in terminal
// attributes.
cout << c << flush;
}
}
// sends command for processing to respective processor
// and gets the output
void Terminal::processCommand()
{
if (aplocMode)
{
APLOCResponse resp = aplocProcessor->getResponse(getCommand());
// process and display response
processAndDisplay(resp);
}
else
{
MMLResponse resp = mmlProcessor->getResponse(getCommand());
// process and display response
processAndDisplay(resp);
}
}
// processes response and displays output if any for MML commands
void Terminal::processAndDisplay(MMLResponse resp)
{
if (resp.doExit() && aplocMode == false)
isExitCommand = true;
// shift from MML to APLOC mode
if (resp.isModeChanged())
{
aplocMode = true;
cout << endl << aplocProcessor->getDefaultPrompt();
return;
}
// print output if available
if (resp.getOutput() != "")
cout << endl << resp.getOutput();
// print the prompt
cout << endl << resp.getPrompt();
fflush(stdout);
// send the delayed output also if it is a delayed command
if (resp.isDelayed())
{
sleep(5);
cout << endl << resp.getDelayedOutput();
// print the prompt again
cout << endl << EOT << endl;
}
}
// processes response and displays output if any for APLOC commands
void Terminal::processAndDisplay(APLOCResponse resp)
{
// exit from APLOC mode and shift to MML mode
if (resp.doExit())
{
aplocMode = false;
cout << endl << mmlProcessor->getDefaultPrompt();
return;
}
// update the terminal command with autocompleted command (if any)
setCommand(resp.getAutoCompletedCommand());
if (resp.isAutoCompleted())
{
cout << CR << resp.getPrompt() << getCommand();
return;
}
// print output if available
if (resp.getOutput() != "")
{
cout << endl << resp.getOutput();
}
// print the prompt
cout << endl << resp.getPrompt() << resp.getAutoCompletedCommand();
}
// removes one character from the end from our command when backspace
// key is pressed
void Terminal::processBackspace()
{
// remove one character from the prompt if typed
// and update the command accordingly
if (command.length() > 0)
{
command = command.substr(0, command.length() - 1);
// update the terminal
cout << '\b' << ' ' << '\b' << flush;
}
}
// sets the terminal in non-canonical mode
void Terminal::setTerminalAttributes()
{
// get the initial attributes
struct termios new_settings = initial_settings;
// set the new attributes for non-canonical mode
new_settings.c_lflag &= ~(ICANON | ECHO);
new_settings.c_cc[VMIN] = 1;
new_settings.c_cc[VTIME] = 0;
// set it
if (tcsetattr(fileno(stdin), TCSAFLUSH, &new_settings))
{
cerr << "Error Setting Terminal Attributes:" << endl;
if (errno == ENOTTY)
{
cerr << "Not a terminal." << endl;
}
}
}
// resets the terminal to its original state
void Terminal::resetTerminalAttributes()
{
// set the terminal settings back to canonical mode
tcsetattr(fileno(stdin), TCSAFLUSH, &initial_settings);
}
// gets the command entered by user
string Terminal::getCommand()
{
return command;
}
// set the command programatically if required
void Terminal::setCommand(string cmd)
{
command = cmd;
}
<file_sep>/******************************************************************************
*
* Response.hh
*
* Author: msatyam
*
* August, 2016
*
* Stores responses for the command after they are processed.
*
* ***************************************************************************/
#if !defined(RESPONSE_HH)
#define RESPONSE_HH
#include <string>
using namespace std;
class Response {
private:
// stores the output of the command
string output;
// prompt of the terminal
string prompt;
// states whether the command was a exit command
bool isExit;
public:
// intialize data members
Response();
// sets the output
void setOutput(string o);
// sets the promt
void setPrompt(string p);
// true if exit command found, false otherwise
void setExit(bool b);
// gets the output
string getOutput();
// gets the prompt
string getPrompt();
// should terminal exit or not
bool doExit();
};
#endif
<file_sep>/**********************************************************************
*
* APLOCProcessor.hh
*
* Author: mSatyam
*
* 2016, August
*
* Processes APLOC mode commands
*
* ********************************************************************/
#if !defined(APLOCPROCESSOR_HH)
#define APLOCPROCESSOR_HH
#define APLOC_PROMPT "\03> "
#define TAB '\t'
#define DEFAULT_MO_XML_FILE_PATH "./etc/mo.xml"
#include <sstream>
#include <MoTree.hh>
#include <MoList.hh>
#include <Mo.hh>
#include "APLOCResponse.hh"
class APLOCProcessor {
private:
// XML file name
string xmlFile;
// MO Tree
MoTree* currentMoTree;
// current MO
Mo* currentMo;
// prompt string
string prompt;
// states whether term is in config mode or not
bool configMode;
public:
// intialize the APLOCProcessor
APLOCProcessor(string mo_xml_file = "");
// de-allocates resources
~APLOCProcessor();
// returns response for an APLOC command
APLOCResponse getResponse(string command);
// handles TAB character autocompletion functionality
APLOCResponse processTab(string command);
// handles complete commands i.e. commands ending with ENTER key
APLOCResponse processEnter(string command);
// checks whether the command is a non-MO command or not
// from non-MO command list
bool isNonMoCommand(string command);
// handles non-MO commands
APLOCResponse handleNonMoCommand(string command);
// updates the APLOC commandline prompt w.r.t. MO name
void updatePrompt();
// handles switching from APLOC to MML mode
APLOCResponse processMml();
// switches from current MO to parent MO
APLOCResponse processUp();
// switch to APLOC mode root level
APLOCResponse processEnd();
// returns the current prompt
string getPrompt();
// returns the default prompt
string getDefaultPrompt();
};
#endif
<file_sep>CXX := g++
DEBUG_FLAGS := -ggdb
LIBS := `pkg-config --libs xerces-c`
BINDIR := bin
DIRS := cmd_handler utils mo_parser
INCLUDES := $(addprefix -I , $(DIRS))
OBJS := $(addsuffix /objs/*.o, $(DIRS))
$(BINDIR)/vterm: subdirs | $(BINDIR)
$(CXX) $(DEBUG_FLAGS) -o $@ main.cc $(OBJS) $(INCLUDES) $(LIBS)
@echo -e "\nCompilation Successful!"
subdirs:
@for dir in $(DIRS); do \
$(MAKE) -C $$dir; \
if [ $$? -ne 0 ]; then \
exit 1; \
fi; \
done
# make the ui and alarm initiator code separately
$(MAKE) -C ui
$(MAKE) -C alarm_initiator
install:
rm -rf wans
mkdir wans
mkdir wans/bin
mkdir wans/etc
mkdir wans/mml_command_output
cp $(BINDIR)/vterm deps/emt_tgw_telnetd ui/$(BINDIR)/main wans/bin
cp ui/scripts/* wans/bin
cp alarm_initiator/$(BINDIR)/alarmInitiator wans/bin
cp etc/scripts/launch_gui.sh wans
cp etc/mo.xml wans/etc
cp etc/wans_5000-tcp.xml.template wans/etc
tar -cvf wans.tar wans
rm -rf wans
@echo -e "\nWANS Tarball Successfully prepared!"
$(BINDIR):
mkdir $(BINDIR)
clean:
$(foreach dir, $(DIRS), cd $(dir); make clean; cd ..;)
$(MAKE) clean -C ui
$(MAKE) clean -C alarm_initiator
rm -rf $(BINDIR) wans.tar
<file_sep>CXX := g++
OBJDIR := objs
OBJS := $(addprefix $(OBJDIR)/, Mo.o MoList.o MoTree.o)
INCLUDES := -I ../utils
all: $(OBJS)
$(OBJS): | $(OBJDIR)
$(OBJDIR)/Mo.o: Mo.cc Mo.hh MoList.hh xercesc.hh ../utils/Helper.hh
$(CXX) -o $@ -c $< $(INCLUDES)
$(OBJDIR)/MoList.o: MoList.cc MoList.hh Mo.hh ../utils/Helper.hh xercesc.hh
$(CXX) -o $@ -c $< $(INCLUDES)
$(OBJDIR)/MoTree.o: MoTree.cc MoTree.hh MoList.hh Mo.hh ../utils/Helper.hh \
xercesc.hh
$(CXX) -o $@ -c $< $(INCLUDES)
$(OBJDIR):
mkdir $(OBJDIR)
.PHONY: clean
clean:
rm -rf $(OBJDIR)
<file_sep>#!/bin/bash
# validate proper usage
if [ $# -ne 3 ]
then
echo "Usage: $0 <wans_conf_file> <VAR_NAME> <VAR_VALUE>"
exit -1;
fi
# store passed arguments
WANS_CONF=$1
VAR_NAME=$2
VAR_VALUE=$3
# add escape sequence for forward slashes (if any in var name)
VAR_VALUE=$(echo $VAR_VALUE | sed 's/\//\\\//g')
# update the wans conf file with new values
sed "s/^$VAR_NAME=.*$/$VAR_NAME=$VAR_VALUE/" $WANS_CONF > /tmp/wans_conf.new
cp /tmp/wans_conf.new $WANS_CONF
<file_sep>/********************************************************************
*
* MMLProcessor.cc
*
* Author: mSatyam
*
* 2016, September
*
* Processes MML mode commands
*
* ******************************************************************/
#include "MMLProcessor.hh"
// initialize the required stuff
MMLProcessor::MMLProcessor(string mmlDir)
{
// store mml directory path
mmlRespDir = mmlDir;
}
// returns response of MML command
MMLResponse MMLProcessor::getResponse(string command)
{
// clean up the command string
command = Helper::stripSpace(command);
// return immediately with only prompt as a response if command is empty
if (command.length() == 0)
{
MMLResponse resp;
resp.setPrompt(getDefaultPrompt());
return resp;
}
// in case of invalid commands
if (validateCommand(command) == false)
{
// send error response
MMLResponse resp;
resp.setDelayed(false);
resp.setModeChanged(false);
resp.setOutput("Error: Invalid command");
resp.setPrompt(MML_PROMPT);
return resp;
}
// remove the semi-colon from the end of command now
command = Helper::stripSemicolon(command);
if (command == "APLOC")
return handleAPLOC();
if (command == "EXIT")
return handleExit();
return processMML(command);
}
// handles MML to APLOC mode change
MMLResponse MMLProcessor::handleAPLOC()
{
MMLResponse resp;
// shift to aploc mode
resp.setModeChanged(true);
return resp;
}
// handles exit command
MMLResponse MMLProcessor::handleExit()
{
MMLResponse resp;
resp.setExit(true);
return resp;
}
// validate command syntax
bool MMLProcessor::validateCommand(string command)
{
// commands ending with semi-colon are valid
if (command[command.length() - 1] == ';')
return true;
return false;
}
// reads the MML response from file and embeds into response object
MMLResponse MMLProcessor::processMML(string command)
{
MMLResponse resp;
// make path to mml command response file
string path = mmlRespDir + "/" + command;
// get command response from file
string response = Helper::getFileContents(path);
// create delayed respose for delayed command
if (isDelayed(response))
{
resp.setDelayed(true);
resp.setDelayedOutput(response);
// create immediate part of delayed command
resp.setOutput("ORDERED");
resp.setPrompt(MML_PROMPT);
}
else
{
// else create immediate response
resp.setOutput(response);
resp.setPrompt(MML_PROMPT);
}
return resp;
}
// check if response is delayed or not
bool MMLProcessor::isDelayed(string & response)
{
if (response.find("DELAYED") != string::npos)
{
response = response.substr(8);
return true;
}
return false;
}
// gets the default MML prompt
string MMLProcessor::getDefaultPrompt()
{
return MML_PROMPT;
}
<file_sep>/******************************************************************************
*
* Helper.cc
*
* Author: mSatyam
*
* August, 2016
*
* Some Utility functions.
*
* ***************************************************************************/
#include "Helper.hh"
// compares two strings ignoring case
bool Helper::equalsIgnoreCase(string str1, string str2)
{
if (str1.length() != str2.length())
{
return false;
}
for (int i = 0; i < str1.length(); i++)
{
if (tolower(str1.at(i)) != tolower(str2.at(i)))
{
return false;
}
}
return true;
}
// checks if string str2 has a substring str1 at index 0
// ignoring case
bool Helper::isStartingWith(string str1, string str2)
{
if (str2.length() < str1.length())
{
return false;
}
for (int i = 0; i < str1.length(); i++)
{
if (tolower(str1.at(i)) != tolower(str2.at(i)))
{
return false;
}
}
return true;
}
// strip spaces from begining and end of the string (if any)
string Helper::stripSpace(string& str)
{
string temp = str;
// remove space from begining
for (int i = 0; (i < str.length()) && isspace(str[i]); i++)
{
temp = str.substr(i + 1 , string::npos);
}
// update the str
str = temp;
// remove space from end
for (int i = str.length() - 1; (i >= 0) && isspace(str[i]); i--)
{
temp = str.substr(0, str.length() - (str.length() - i));
}
// update the str
str = temp;
return str;
}
string Helper::stripSemicolon(string& str)
{
// see if last character is ';'
if ( str[str.length() - 1] == ';')
{
// remove it
str = str.substr(0, str.length() - 1);
}
return str;
}
// reads contents of a flat file
string Helper::getFileContents(string filename)
{
string contents = "";
int length = 0;
ifstream inFile(filename.c_str(), ifstream::in);
if (inFile)
{
// get the length of file
inFile.seekg(0, inFile.end);
length = inFile.tellg();
// move back to file begining
inFile.seekg(0, inFile.beg);
// allocate memory to hold file contents
char* buffer = new char[length + 1];
// read data as a block
inFile.read(buffer, length);
inFile.close();
contents = buffer;
delete[] buffer;
}
return contents;
}
// reads the variable value from wans config file
string Helper::getVar(string configFile, string var)
{
string line, value;
size_t index;
// open config file to read
ifstream inFile(configFile.c_str(), ifstream::in);
if (inFile)
{
while (inFile >> line)
{
index = line.find(var);
// get the var value if found
if (index != string::npos)
{
index = line.find(DELIMITER);
value = line.substr(index+1);
// strip extra space character if any
value = stripSpace(value);
}
}
}
else
{
cerr << "Error: Can't read WANS conf file!" << endl;
exit(-1);
}
return value;
}
<file_sep># NE Simulator (vterm)
vterm project simulates behaviour of a real telecom network element majorily it simulates the terminal behaviour therefore this short name vterm (virtual terminal).
It also has features like to send alarm (A Telecom thing).
Operating System Supported:
LINUX / Solaris
Compile Time pre-requistes:
- g++ - C++ compiler.
- pkg-config - Too to retrieve information about installed libraries in the system.
- xerces-c - Library for parsing, generating, manipulating, and validating XML documents.
- GTK+ 2.0 - Library to build graphical user interfaces (GUIs).
Runtime pre-requisites:
- inetd - inetd daemon provides Internet service management for a network. (Present by default in Solaris)
- inetd.conf path - /etc/inet/inetd.conf
- services path - /etc/inet/services
Compilation and Package Building Steps for Solaris:
```sh
$ make -f Makefile.sol
$ make -f Makefile.sol install
```
Compilation and Package Building Steps for LINUX:
```sh
$ make
$ make install
```
Above will create package named "wans.tar" in the code base directory.
Setup Guidelines:
- Copy the package "wans.tar" in the test server.
- Extract the package using below command:
```sh
$ tar -xvf wans.tar
```
- Move to the directory where package got extracted:
```sh
$ cd wans
```
- Start Simulator using the GUI with below command:
```sh
$ ./launch_gui.sh
```
<file_sep>/********************************************************************
*
* MMLProcessor.hh
*
* Author: mSatyam
*
* 2016, September
*
* Processes MML mode commands
*
* ******************************************************************/
#if !defined(MMLPROCESSOR_HH)
#define MMLPROCESSOR_HH
#define MML_PROMPT "\03< "
#include <string>
using namespace std;
#include "MMLResponse.hh"
#include "Helper.hh"
class MMLProcessor {
private:
string mmlRespDir;
public:
// initialize the required stuff
MMLProcessor(string mmlDir);
// returns response of MML command
MMLResponse getResponse(string command);
// handles MML to APLOC mode change
MMLResponse handleAPLOC();
// handles exit command
MMLResponse handleExit();
// validate command syntax
bool validateCommand(string command);
// reads the MML response from file and embeds into response object
MMLResponse processMML(string command);
// check if response is delayed or not
bool isDelayed(string & response);
// gets the default MML prompt
string getDefaultPrompt();
};
#endif
<file_sep>/******************************************************************************
*
* main.cc
*
* Author: mSatyam
*
* September, 2016
*
* Starting point of the vterm application.
*
* ***************************************************************************/
#include "Terminal.hh"
int main(int argc, char* argv[])
{
// validate proper usage
if ( argc != 2)
{
cerr << "Usage: " << argv[0] << " <NE Simulator wans.conf file path>" << endl;
exit(0);
}
// store the wans config file path
string configFile = argv[1];
// our terminal
Terminal term(configFile);
// login the user
if (term.login() == true)
{
// listen for user requests
term.main();
}
return 0;
}
<file_sep>/******************************************************************************
*
* Terminal.hh
*
* Author: mSatyam
*
* 2016, September
*
* Represents our virtual terminal which accepts user input in non-canonical
* mode , processes it and displays desired output to the user.
*
* ***************************************************************************/
#if !defined(TERMINAL_HH)
#define TERMINAL_HH
#define TAB '\t'
#define BACKSPACE 8
#define DELETE 127
#define ENTER '\n'
#define CR '\r'
#define EOT "\004"
#include <sys/termios.h>
#include <unistd.h>
#include <errno.h>
#include <cstdio>
#include "MMLProcessor.hh"
#include "APLOCProcessor.hh"
#include "MMLResponse.hh"
#include "APLOCResponse.hh"
class Terminal {
private:
// WANS conf file
string wansConf;
// WANS root directory
string root;
// MO XML file name
string xmlFile;
// MML command response directory
string mmlRespDir;
// represents command text till now typed on our terminal
string command;
// states whether config mode is on or off
bool aplocMode;
// processes APLOC commands
APLOCProcessor* aplocProcessor;
// processes MML commands
MMLProcessor* mmlProcessor;
// states whether user want to exit or not
bool isExitCommand;
// initial terminal settings
struct termios initial_settings;
public:
// initializes required stuff for our terminal
Terminal(string conf);
// de-allocates necessary stuff
~Terminal();
// logins the user to the NODE
bool login();
// main loop of our terminal which keeps on accepting user input
// processes it and displays desired results
void main();
// each input character is forwarded here for processing
// then this function further decides what other input
// processing functions to call
void processInput(char c);
// sends command for processing to respective processor
// and gets the output
void processCommand();
// processes response and displays output if any for MML commands
void processAndDisplay(MMLResponse resp);
// processes response and displays output if any for APLOC commands
void processAndDisplay(APLOCResponse resp);
// removes one character from the end from our command when backspace
// key is pressed
void processBackspace();
// sets the terminal in non-canonical mode
void setTerminalAttributes();
// resets the terminal to its original state
void resetTerminalAttributes();
// gets the command entered by user
string getCommand();
// set the command programatically if required
void setCommand(string cmd);
};
#endif
<file_sep>/******************************************************************************
*
* testMo.cc
*
* Author: mSatyam
*
* 2015, August
*
* Tests the functionality of Mo class.
*
* ***************************************************************************/
#include <Mo.hh>
#include <MoTree.hh>
#include <MoList.hh>
int main()
{
try
{ // init xerces XML Parser library
XMLPlatformUtils::Initialize();
}
catch (const XMLException& toCatch)
{
cout << toCatch.getMessage() << endl;
return 1;
}
// create the base Mo Tree
string xmlfile = "../data/test.xml";
MoTree* tree = new MoTree(xmlfile);
// get the root Mo
Mo* root = tree->getRootMo();
// test get all childs and print their count
MoList* list = root->getChildMos();
cout << "Root Child count is: " << list->getLength() << endl;
// print next Mo's followed by root
Mo* next = root;
Mo* last = next;
while (next != NULL)
{
cout << "Name: " << next->getName() << endl;
last = next;
next = next->getChildMo();
}
// print MO's in reverse order
while (last != NULL)
{
cout << "Last MO: " << last->getName() << endl;
last = last->getParentMo();
}
// print child Mo with name "second"
Mo* child = root->getChildMoByName("Second");
if (child != NULL)
{
cout << "child: " << child->getName() << endl;
}
else
{
cout << "No child with that name" << endl;
}
// search for Mo which is not a child of root
child = root->getChildMoByName("nameNotInXML");
if (child != NULL)
{
cout << "child: " << child->getName() << endl;
}
else
{
cout << "No child with that name" << endl;
}
XMLPlatformUtils::Terminate();
return 0;
}
<file_sep>/******************************************************************************
*
* TestMoTree.cc
*
* Author: mSatyam
*
* 2015, August
*
* Tests MoTree functionality.
*
* ***************************************************************************/
#include <xercesc.hh>
#include <MoTree.hh>
#include <Mo.hh>
int main()
{
try
{ // init xerces XML Parser library
XMLPlatformUtils::Initialize();
}
catch (const XMLException& toCatch)
{
cout << toCatch.getMessage() << endl;
return 1;
}
string xmlfile = "../data/test.xml";
MoTree* tree = new MoTree(xmlfile);
// get root MO and print its name
Mo* root = tree->getRootMo();
cout << "Root MO Name: " << root->getName() << endl;
// get MO by name
Mo* inner_one = tree->getMoByName("inner_one");
cout << "Mo Name: " << inner_one->getName() << endl;
XMLPlatformUtils::Terminate();
return 0;
}
<file_sep>/******************************************************************************
*
* Mo.hh
*
* Author: mSatyam
*
* 2016, September
*
* This class represents a single MO from a specific MO Tree one can say a
* single NODE of a MO Tree XML file and opertions that can be perfomed on it.
*
* ***************************************************************************/
#if !defined(MO_HH)
#define MO_HH
#include <string>
#include <vector>
using namespace std;
#include "MoList.hh"
#include "Helper.hh"
#include "xercesc.hh"
class MoList;
class Mo {
private:
// Mo Name
string name;
// this mo
DOMNode* ourMo;
public:
// creates a MO with the specified Node of the XML file
Mo(DOMNode* ourMo);
// returns all the child MO's of this MO
MoList* getChildMos();
// returns the next MO immediately following this MO
Mo* getChildMo();
// returns the child Mo as the name specified in argument (if any)
Mo* getChildMoByName(string name);
// returns MoList of all Mo's whose name starts with
// the name given in arguments
MoList* getChildMoNameStartsWith(string name);
// return parent Mo of this MO
Mo* getParentMo();
// checks whether Mo is an variable like other Mo's for variables Mo's are
// one with which one value is associated which can be set by the user.
// Also variables won't have any child Mo's.
bool isVariable();
// returns name of this MO
string getName();
// states whether this MO is an interactive command MO
bool isInteractive();
};
#endif
<file_sep>/******************************************************************************
*
* MMLResponse.cc
*
* Author: mSatyam
*
* August, 2016
*
* Stores responses for the MML commands after they are processed.
*
* ***************************************************************************/
#include "MMLResponse.hh"
// intialize data members
MMLResponse::MMLResponse()
{
delayedOutput = "";
delayed = false;
modeChanged = false;
}
// sets the delayed output
void MMLResponse::setDelayedOutput(string a)
{
delayedOutput = a;
}
// sets the delayed flag
void MMLResponse::setDelayed(bool b)
{
delayed = b;
}
// sets the modeChanged flag
void MMLResponse::setModeChanged(bool b)
{
modeChanged = b;
}
// gets the delayed output
string MMLResponse::getDelayedOutput()
{
return delayedOutput;
}
// true if command has a delayed output too, false otherwise
bool MMLResponse::isDelayed()
{
return delayed;
}
// true if user wants to shift to APLOC mode, false otherwise
bool MMLResponse::isModeChanged()
{
return modeChanged;
}
<file_sep>/******************************************************************************
*
* testMoList.cc
*
* Author: mSatyam
*
* 2015, August
*
* Tests functionality of MoList class.
*
*****************************************************************************/
#include <Mo.hh>
#include <MoTree.hh>
#include <MoList.hh>
int main()
{
try
{
// init xerces XML Parser library
XMLPlatformUtils::Initialize();
}
catch (const XMLException& ex)
{
cerr << ex.getMessage() << endl;
return 1;
}
// create the base MoTree
string xmlfile = "../data/test.xml";
MoTree* tree = new MoTree(xmlfile);
// get the root Mo
Mo* root = tree->getRootMo();
// create child MoList from root Mo
MoList* list = root->getChildMos();
// print each child Mo
for (int i = 0; i < list->getLength(); i++)
{
cout << i << " Mo Name: " << list->getMoAtIndex(i)->getName() << endl;
}
return 0;
}
<file_sep>/******************************************************************************
*
* MmlPathEditorDialog.hh
*
* Author: msatyam
*
* November, 2016
*
* Dialog box which allows user to to edit MML response directory path
*
* ***************************************************************************/
#if !defined(MML_PATH_EDITOR_DIALOG_HH)
#define MML_PATH_EDITOR_DIALOG_HH
#include <gtk/gtk.h>
#include <iostream>
#include <string>
#include <Helper.hh>
using namespace std;
class MmlPathEditorDialog {
private:
// wans config file
string wansConfFile;
// dialog window
GtkWidget* dialog;
// hbox that contain other widgets
GtkWidget* hbox;
// label for MO path
GtkWidget* mmlPathLabel;
// entry(textbox)widgets to hold MO file path
GtkWidget* mmlPathTextBox;
public:
// intializes the dialog box
MmlPathEditorDialog(string confFile);
// edits MML Directory Path as entered by user
void editMmlDirectoryPath();
// returns the wans conf file path
string getConfFile();
};
#endif
<file_sep>/******************************************************************************
*
* MoList.hh
*
* Author: mSatyam
*
* 2016, September
*
* This class provides a way to store and retreive ordered collection of MOS,
* basically a wrapper to DOMNodeList.
*
* ***************************************************************************/
#if !defined(MO_LIST_HH)
#define MO_LIST_HH
#include "Mo.hh"
#include "xercesc.hh"
class Mo;
typedef vector<Mo*> List;
class MoList {
private:
// represents our MO list
List list;
public:
// creates an empty Mo list
MoList();
// create a list of MO's from DOMNodeList
MoList(DOMNodeList* list);
// appends Mo to the MoList
void add(Mo* mo);
// return MO at specified index
Mo* getMoAtIndex(size_t index);
// returns number of MO's in the list
size_t getLength();
};
#endif
<file_sep>CXX := g++
CXXFLAGS := -ggdb
INCLUDES := -I../utils
LIBS := `pkg-config gtk+-2.0 --cflags --libs`
BINDIR := bin
OBJDIR := objs
OBJS := $(addprefix $(OBJDIR)/, MainWindow.o EventHandler.o \
MoPathEditorDialog.o MmlPathEditorDialog.o DdEditorDialog.o main.o)
HELPER_OBJ := ../utils/$(OBJDIR)/*.o
$(BINDIR)/main: $(OBJS) | $(BINDIR)
$(CXX) -o $@ $(OBJS) $(HELPER_OBJ) $(INCLUDES) $(LIBS) $(CXXFLAGS)
$(OBJS): | $(OBJDIR)
$(OBJDIR)/MainWindow.o: MainWindow.cc MainWindow.hh EventHandler.hh ../utils/Helper.hh
$(CXX) $(CXXFLAGS) -o $@ -c $< $(INCLUDES) $(LIBS)
$(OBJDIR)/MoPathEditorDialog.o: MoPathEditorDialog.cc MoPathEditorDialog.hh ../utils/Helper.hh
$(CXX) $(CXXFLAGS) -o $@ -c $< $(INCLUDES) $(LIBS)
$(OBJDIR)/MmlPathEditorDialog.o: MmlPathEditorDialog.cc MmlPathEditorDialog.hh ../utils/Helper.hh
$(CXX) $(CXXFLAGS) -o $@ -c $< $(INCLUDES) $(LIBS)
$(OBJDIR)/EventHandler.o: EventHandler.cc EventHandler.hh MainWindow.hh MoPathEditorDialog.hh MmlPathEditorDialog.hh
$(CXX) $(CXXFLAGS) -o $@ -c $< $(INCLUDES) $(LIBS)
$(OBJDIR)/DdEditorDialog.o: DdEditorDialog.cc DdEditorDialog.hh ../utils/Helper.hh
$(CXX) $(CXXFLAGS) -o $@ -c $< $(INCLUDES) $(LIBS)
$(OBJDIR)/main.o: main.cc MainWindow.hh EventHandler.hh ../utils/Helper.hh
$(CXX) $(CXXFLAGS) -o $@ -c $< $(INCLUDES) $(LIBS)
$(BINDIR):
mkdir $(BINDIR)
$(OBJDIR):
mkdir $(OBJDIR)
.PHONY: clean
clean:
rm -rf $(OBJDIR) $(BINDIR)
<file_sep>/******************************************************************************
*
* MmlPathEditorDialog.cc
*
* Author: msatyam
*
* November, 2016
*
* Dialog box which allows user to to edit MML response directory path
*
* ***************************************************************************/
#include "MmlPathEditorDialog.hh"
// intializes the dialog box
MmlPathEditorDialog::MmlPathEditorDialog(string confFile)
{
// store wans conf file path
wansConfFile = confFile;
// create the MO path editor main dialog window
dialog = gtk_dialog_new_with_buttons("Edit MML Response Directory Path",
NULL,
GTK_DIALOG_MODAL,
GTK_STOCK_OK,
GTK_RESPONSE_OK,
GTK_STOCK_CANCEL,
GTK_RESPONSE_CANCEL,
NULL);
gtk_window_set_default_size(GTK_WINDOW(dialog), 400, 200);
hbox = gtk_hbox_new(FALSE, 0);
gtk_container_set_border_width(GTK_CONTAINER(hbox), 0);
gtk_box_pack_start(GTK_BOX(GTK_DIALOG(dialog)->vbox),
hbox, FALSE, FALSE, 30);
// create the MO path label
mmlPathLabel = gtk_label_new("MML Directory Path:");
// create the MO file path text box
mmlPathTextBox = gtk_entry_new();
gtk_widget_set_size_request(mmlPathTextBox, 300, 30);
// set current MO file path
gtk_entry_set_text(GTK_ENTRY(mmlPathTextBox), Helper::getVar(wansConfFile, "MML_PATH").c_str());
// add label and textbox to hbox
gtk_box_pack_start(GTK_BOX(hbox), mmlPathLabel, TRUE, TRUE, 10);
gtk_box_pack_start(GTK_BOX(hbox), mmlPathTextBox, TRUE, TRUE, 10);
// display all widgets in dialog
gtk_widget_show_all(hbox);
gint response = gtk_dialog_run(GTK_DIALOG(dialog));
if (response == GTK_RESPONSE_OK)
{
editMmlDirectoryPath();
}
gtk_widget_destroy (dialog);
}
// returns the wans conf file path
string MmlPathEditorDialog::getConfFile()
{
return wansConfFile;
}
// edits MML Directory Path as entered by user
void MmlPathEditorDialog::editMmlDirectoryPath()
{
// get the bin dir path
string binDir = Helper::getVar(getConfFile(), "BIN_DIR");
// get the textbox value
string textBoxValue = gtk_entry_get_text(GTK_ENTRY(mmlPathTextBox));
// create the command
string cmd = binDir + "/" + "editConf.sh " + getConfFile() + " MML_PATH " + textBoxValue;
// execute the command
system(cmd.c_str());
cout << "MML Directory Path Updated" << endl;
}
<file_sep>/******************************************************************************
*
* DdEditorDialog.cc
*
* Author: msatyam
*
* November, 2016
*
* Dialog box which allows user to to edit Default destination of OSS server
*
* ***************************************************************************/
#include "DdEditorDialog.hh"
// intializes the dialog box
DdEditorDialog::DdEditorDialog(string confFile)
{
// store wans conf file path
wansConfFile = confFile;
// create the MO path editor main dialog window
dialog = gtk_dialog_new_with_buttons("Edit Default Destination",
NULL,
GTK_DIALOG_MODAL,
GTK_STOCK_OK,
GTK_RESPONSE_OK,
GTK_STOCK_CANCEL,
GTK_RESPONSE_CANCEL,
NULL);
gtk_window_set_default_size(GTK_WINDOW(dialog), 400, 200);
hbox1 = gtk_hbox_new(FALSE, 0);
hbox2 = gtk_hbox_new(FALSE, 0);
// add both hboxex in dailog content area
gtk_box_pack_start(GTK_BOX(GTK_DIALOG(dialog)->vbox),
hbox1, FALSE, FALSE, 20);
gtk_box_pack_start(GTK_BOX(GTK_DIALOG(dialog)->vbox),
hbox2, FALSE, FALSE, 20);
// create the IP label
ipLabel = gtk_label_new("IP Address:");
// create the port label
portLabel = gtk_label_new("Port:");
// create the ip adress text box
ipTextBox = gtk_entry_new();
// create the port text box
portTextBox = gtk_entry_new();
// set current default IP in ip text box
gtk_entry_set_text(GTK_ENTRY(ipTextBox), Helper::getVar(wansConfFile, "DD_IP").c_str());
// set current default port in port text box
gtk_entry_set_text(GTK_ENTRY(portTextBox), Helper::getVar(wansConfFile, "DD_PORT").c_str());
// add ip label and textbox to hbox1
gtk_box_pack_start(GTK_BOX(hbox1), ipLabel, TRUE, TRUE, 10);
gtk_box_pack_start(GTK_BOX(hbox1), ipTextBox, TRUE, TRUE, 10);
// add port label and textbox to hbox2
gtk_box_pack_start(GTK_BOX(hbox2), portLabel, TRUE, TRUE, 10);
gtk_box_pack_start(GTK_BOX(hbox2), portTextBox, TRUE, TRUE, 10);
// display all widgets in dialog
gtk_widget_show_all(GTK_DIALOG(dialog)->vbox);
gint response = gtk_dialog_run(GTK_DIALOG(dialog));
if (response == GTK_RESPONSE_OK)
{
editDefaultDestination();
}
gtk_widget_destroy (dialog);
}
// returns the wans conf file path
string DdEditorDialog::getConfFile()
{
return wansConfFile;
}
// edits MO File Path as entered by user
void DdEditorDialog::editDefaultDestination()
{
// get the bin dir path
string binDir = Helper::getVar(getConfFile(), "BIN_DIR");
// get ip text box value
string ip = gtk_entry_get_text(GTK_ENTRY(ipTextBox));
// get port text box value
string port = gtk_entry_get_text(GTK_ENTRY(portTextBox));
// create the command to update wans conf file DD_IP
string cmd = binDir + "/" + "editConf.sh " + getConfFile() + " DD_IP " + ip;
// update ip
system(cmd.c_str());
// create the command to update wans conf file DD_PORT
cmd = binDir + "/" + "editConf.sh " + getConfFile() + " DD_PORT " + port;
// update port
system(cmd.c_str());
cout << "Default Destination Updated" << endl;
}
<file_sep>CXX := g++
OBJDIR := objs
OBJS:= $(addprefix $(OBJDIR)/, Helper.o)
all: $(OBJS)
$(OBJS): | $(OBJDIR)
$(OBJDIR)/Helper.o: Helper.cc Helper.hh
$(CXX) -o $@ -c $<
$(OBJDIR):
mkdir $(OBJDIR)
.PHONY: clean
clean:
rm -rf $(OBJDIR)
<file_sep>CXX := g++
INCLUDES := -I ../utils
OBJDIR := objs
BINDIR := bin
OBJS := $(addprefix $(OBJDIR)/, AlarmInitiator.o main.o)
HELPER_OBJ := ../utils/$(OBJDIR)/*.o
$(BINDIR)/alarmInitiator: $(OBJS) | $(BINDIR)
$(CXX) -o $@ $(OBJS) $(HELPER_OBJ) $(INCLUDES) $(LIBS) $(CXXFLAGS)
$(OBJS): | $(OBJDIR)
$(OBJDIR)/AlarmInitiator.o: AlarmInitiator.cc AlarmInitiator.hh ../utils/Helper.hh
$(CXX) -ggdb -o $@ -c $< $(INCLUDES)
$(OBJDIR)/main.o: main.cc AlarmInitiator.hh ../utils/Helper.hh
$(CXX) -ggdb -o $@ -c $< $(INCLUDES)
$(OBJDIR):
mkdir $(OBJDIR)
$(BINDIR):
mkdir $(BINDIR)
.PHONY: clean
clean:
rm -rf $(OBJDIR) $(BINDIR)
<file_sep>/******************************************************************************
*
* MainWindow.hh
*
* Author: msatyam
*
* October, 2016
*
* Main window of the Network Simulator GUI
*
* ***************************************************************************/
#if !defined(MAIN_WINDOW_HH)
#define MAIN_WINDOW_HH
#define ETC_SERVICES "/etc/inet/services"
#define NE_MAGIC_TEXT "wans_5000"
#include <gtk/gtk.h>
#include <iostream>
#include <Helper.hh>
#include "EventHandler.hh"
using namespace std;
class MainWindow {
private:
// wans conf file
string wansConfFile;
// main window toplevel
GtkWidget* window;
// scrolled window
GtkWidget* mainScrolledWindow;
// holds all the hboxex
GtkWidget* vbox;
// holds the menu bar
GtkWidget* hbox1;
// holds the start stop button
GtkWidget* hbox2;
// holds the NE status label
GtkWidget* hbox3;
// holds the actual NE status
GtkWidget* hbox4;
// menubar, menus and all menu items
GtkWidget* menubar;
// menus
GtkWidget* fileMenu;
GtkWidget* editMenu;
GtkWidget* optionsMenu;
GtkWidget* helpMenu;
// menu items
GtkWidget* fileMenuItem;
GtkWidget* quitMenuItem;
GtkWidget* editMenuItem;
GtkWidget* moPathMenuItem;
GtkWidget* mmlPathMenuItem;
GtkWidget* defaultDestinationMenuItem;
GtkWidget* optionsMenuItem;
GtkWidget* customAlarmMenuItem;
GtkWidget* helpMenuItem;
GtkWidget* helpContentsMenuItem;
// NODE start button
GtkWidget* startButton;
// NODE stop button
GtkWidget* stopButton;
// Send alarm button
GtkWidget* sendAlarmButton;
// holds the NODE status icon and label
GtkWidget* nodeStatusFrame;
// node status icon
GtkWidget* nodeStatusIcon;
// node status label
GtkWidget* nodeStatusLabel;
public:
// sets up GUI main window
MainWindow(string confFile);
// sets up signal handlers for widgets
void setEventHandlers();
// checks whether the NODE is running or stopped
bool checkNodeStatus();
// enable start button
void enableStartButton();
// disable start button
void disableStartButton();
// enable stop button
void enableStopButton();
// disable stop button
void disableStopButton();
// toggle node status
void toggleNodeStatus();
// returns wans config file path
string getConfFile();
};
#endif
| 3dc05c295463ffeaec9486769508a1337e90d8b9 | [
"Markdown",
"Makefile",
"C++",
"Shell"
] | 50 | C++ | satyam1990/vterm | ec63cceb81ae5fd6da823c4c1a68d14d28ef3149 | 58114c4020b5bf17a9e05e2528e54a0f3f94c8af |
refs/heads/master | <file_sep># Nearby Players Tracker 1.3 release
NearbyPlayers aims to restore the tracker removed by Carbine in patch #13373. In addition, it will also display nearby PvPers and Role-players.
The add-on will display a window on the game HUD to track nearby players, and it can be dragged to a corner and resized at will.
The displayed list of players will show a limited number of useful information about each unit: player name, distance, level and class.
Role-players will only be shown if you're a member of LFRP or/and WSRP chat channels.
Left clicking on an unit name will show an arrow in their direction. Right click will trigger a chat whisper with the selected player.
The tracker window is closable. To bring it back, type "/nearby" in chat window.
### Colors code
* Red: Enemy PvPer.
* Orange: Enemy non-PvPer.
* Yellow: Ally PvPer.
* Green: Ally RPer.
* White: Ally non-PvPer, non-RPer.

### Known issues
* For performance sake, the refresh rate of the nearby players list is automatically reduced in populated areas, therefore the list may not be accurate at times.
* Due to chat lag and code imperfection, the RPers list may take a moment to update.
### Credits
* QuestLog and Who: Widlstar built-in addons by Carbine
* LFRP: Widlstar addon by baslack
http://mods.curse.com/ws-addons/wildstar/236288-lfrp
### Change Log
* 1.0: Initial release
* 1.1: Ergonomic improvements:
- Removed Players path icon.
- Scroll bar will auto-hide if the players list is too short.
- Window background is transparent by default.
- Window Title becomes red if a flagged enemy player shows up.
- Added an resize indicator
* 1.2:
- Add the ability to track RPers.
- Reduced the refresh rate in populated areas.
- Removed few unneeded api call.
* 1.3:
- Fixed a minor issue.
<file_sep>---------------------------------------------------------------------------------------------------
-- NearbyPlayers:
--
-- NearbyPlayers aims to restore a feature removed by Carbine in Patch 1.5.1 #13373. In addition,
-- this add-on will also display nearby PvPers and Role-players.
--
-- The add-on will display a window on the game HUD to track nearby players, and it can be dragged
-- to a corner and resized at will.
--
-- The displayed list of players will show a limited number of useful information about each unit:
-- player name, distance, level, class and path.
--
-- Left clicking on an unit name will show an arrow in their direction. Right click will trigger a
-- chat whisper with the selected player.
--
-- The tracker window is closable. To bring it back, type "/nearby" in chat window.
--
-- Credits:
--
-- * QuestLog and Who: Widlstar built-in add-ons by Carbine, copyrighted to NCSoft.
-- * LFRP: Widlstar add-on by baslack
---------------------------------------------------------------------------------------------------
require "Window"
require "Unit"
require "ICComm"
require "ICCommLib"
require "GameLib"
-----------------------------------------------------------------------------------------------
-- NearbyPlayers Module Definition
-----------------------------------------------------------------------------------------------
local NearbyPlayers = {}
-----------------------------------------------------------------------------------------------
-- Constants
-----------------------------------------------------------------------------------------------
local ktClassToIconPanel =
{
[GameLib.CodeEnumClass.Warrior] = "IconSprites:Icon_Windows_UI_CRB_Warrior",
[GameLib.CodeEnumClass.Engineer] = "IconSprites:Icon_Windows_UI_CRB_Engineer",
[GameLib.CodeEnumClass.Esper] = "IconSprites:Icon_Windows_UI_CRB_Esper",
[GameLib.CodeEnumClass.Medic] = "IconSprites:Icon_Windows_UI_CRB_Medic",
[GameLib.CodeEnumClass.Stalker] = "IconSprites:Icon_Windows_UI_CRB_Stalker",
[GameLib.CodeEnumClass.Spellslinger] = "IconSprites:Icon_Windows_UI_CRB_Spellslinger",
}
-----------------------------------------------------------------------------------------------
-- Initialization
-----------------------------------------------------------------------------------------------
function NearbyPlayers:new(o)
o = o or {}
setmetatable(o, self)
self.__index = self
o.nTimestamp = 0
o.tTracked = {}
o.tRPTracked = {}
o.tPlayerUnit = nil
o.bShow = true
return o
end
function NearbyPlayers:Initialize()
local bHasConfigureFunction = false
local strConfigureButtonText = ""
local tDependencies = {}
Apollo.RegisterAddon(self, bHasConfigureFunction, strConfigureButtonText, tDependencies)
end
-----------------------------------------------------------------------------------------------
-- NearbyPlayers OnLoad
-----------------------------------------------------------------------------------------------
function NearbyPlayers:OnLoad()
self.xmlDoc = XmlDoc.CreateFromFile("NearbyPlayers.xml")
self.xmlDoc:RegisterCallback("OnDocLoaded", self)
Apollo.RegisterEventHandler("UnitCreated" , "OnUnitCreated", self)
Apollo.RegisterEventHandler("UnitDestroyed", "OnUnitDestroyed", self)
Apollo.RegisterEventHandler("WhoResponse" , "OnWhoResponse", self)
Apollo.RegisterEventHandler("ChangeWorld" , "OnChangeWorld", self)
end
function NearbyPlayers:OnDocLoaded()
if self.xmlDoc == nil then
Print('NearbyPlayers: Could not load main window.')
return
end
self.wndMain = Apollo.LoadForm(self.xmlDoc, "NearbyPlayersForm", nil, self)
if self.wndMain == nil then
Print('NearbyPlayers: Could not load main window.')
return
end
self.wndPlayerList = self.wndMain:FindChild("PlayerList")
self.wndMainTimer = ApolloTimer.Create(1, true, "OnwndMainTimer", self)
self.UpdateTimer = ApolloTimer.Create(1, true, "OnUpdateTimer" , self)
Apollo.RegisterSlashCommand("nearby", "ShowNearbyPlayers", self)
self.wndMain:Show(self.bShow)
end
-----------------------------------------------------------------------------------------------
-- NearbyPlayers Saved Settings
-----------------------------------------------------------------------------------------------
function NearbyPlayers:OnSave(eLevel)
if eLevel ~= GameLib.CodeEnumAddonSaveLevel.Character then
return nil
end
local tSave = {}
tSave['tLoc'] = self.wndMain:GetLocation():ToTable()
return tSave
end
function NearbyPlayers:OnRestore(eLevel, tData)
if eLevel ~= GameLib.CodeEnumAddonSaveLevel.Character then
return nil
end
if tData ~= nil then
self.tLoc = tData['tLoc']
end
end
function NearbyPlayers:OnwndMainTimer()
if self.wndMain == nil then
return
end
if self.tLoc ~= nil then
self.wndMain:MoveToLocation(WindowLocation.new(self.tLoc))
end
self:ChatLog_SuppressListing()
self:PollRPChannels()
self.wndMainTimer:Stop()
end
-----------------------------------------------------------------------------------------------
-- NearbyPlayers Functions
-----------------------------------------------------------------------------------------------
function NearbyPlayers:ShowNearbyPlayers()
self:PopulateNearbyPlayersList()
self.bShow = true
self.UpdateTimer:Start()
self.wndMain:Show(self.bShow)
end
function NearbyPlayers:OnUnitCreated(unitCreated)
if unitCreated:GetType() == "Player" then
self.tTracked[unitCreated:GetName()] = unitCreated
end
end
function NearbyPlayers:OnUnitDestroyed(unitDestroyed)
if unitDestroyed:GetType() == "Player" then
for this_name, this_unit in pairs(self.tTracked) do
if unitDestroyed:GetName() == this_name then
self.tTracked[this_name] = nil
end
end
end
end
function NearbyPlayers:OnWhoResponse(arResponse, eWhoResult, strResponse)
if eWhoResult == GameLib.CodeEnumWhoResult.OK or eWhoResult == GameLib.CodeEnumWhoResult.Partial then
local tWhoPlayers = arResponse
for _, this_unit in pairs(tWhoPlayers) do
this_name = this_unit.strName
self.tTracked[this_name] = this_unit
end
elseif eWhoResult == GameLib.CodeEnumWhoResult.UnderCooldown then
-- Print(Apollo.GetString("Who_UnderCooldown"))
end
end
function NearbyPlayers:OnChangeWorld()
self.tTracked = {}
end
function NearbyPlayers:OnUpdateTimer()
if self.bShow then
self.nTimestamp = os.time()
-- Poll rp channels once per minute.
if self.nTimestamp % 60 == 0 then
self:PollRPChannels()
end
-- local x = os.clock()
self:PopulateNearbyPlayersList()
-- Print(string.format("PopulateNearbyPlayersList took: %.6f\n", os.clock() - x))
end
end
-----------------------------------------------------------------------------------------------
-- NearbyPlayersForm Functions
-----------------------------------------------------------------------------------------------
function NearbyPlayers:OnClose( wndHandler, wndControl, eMouseButton )
self.wndMain:Close()
self.bShow = false
self.UpdateTimer:Stop()
end
function NearbyPlayers:OnPlayerListMouseEnter( wndHandler, wndControl, x, y )
if wndControl == wndHandler then
self.UpdateTimer:Stop()
end
end
function NearbyPlayers:OnPlayerListMouseExit( wndHandler, wndControl, x, y )
if wndControl == wndHandler then
self.UpdateTimer:Start()
end
end
function NearbyPlayers:OnHoverWindowMouseEnter( wndHandler, wndControl, x, y )
self.wndMain:FindChild("CloseButton"):Show(true)
self.wndMain:FindChild("Resize"):Show(true)
self.wndMain:SetSprite("AbilitiesSprites:spr_StatVertProgBase")
end
function NearbyPlayers:OnHoverWindowMouseExit( wndHandler, wndControl, x, y )
self.wndMain:FindChild("CloseButton"):Show(false)
self.wndMain:FindChild("Resize"):Show(false)
self.wndMain:SetSprite(nil)
end
-----------------------------------------------------------------------------------------------
-- PlayerList Functions
-----------------------------------------------------------------------------------------------
function NearbyPlayers:DistanceToUnit(unit)
self.tPlayerUnit = GameLib.GetPlayerUnit()
loc1 = self.tPlayerUnit:GetPosition()
loc2 = unit:GetPosition()
tVec = {}
for axis, value in pairs(loc1) do
tVec[axis] = loc1[axis] - loc2[axis]
end
vVec = Vector3.New(tVec['x'], tVec['y'], tVec['z'])
return math.floor(vVec:Length())+1
end
function NearbyPlayers:PopulateNearbyPlayersList()
local ntTracked = self:tablelength(self.tTracked)
-- reduce the refresh rate depending on players numbers
-- derp'in kind of trick, but it works.. kinda.
if ntTracked >= 32 and self.nTimestamp % 8 ~= 0 then
return
end
if ntTracked >= 16 and self.nTimestamp % 4 ~= 0 then
return
end
if ntTracked >= 8 and self.nTimestamp % 2 ~= 0 then
return
end
self.tPlayerUnit = GameLib.GetPlayerUnit()
if self.tPlayerUnit ~= nil then
self.tTracked[self.tPlayerUnit:GetName()] = nil
end
local tNearbyPlayers = {}
-- sort by distance
for strName, nearbyPlayer in pairs(self.tTracked) do
if nearbyPlayer then
table.insert(tNearbyPlayers, nearbyPlayer)
end
end
table.sort(tNearbyPlayers, function(a,b) return self:DistanceToUnit(a)<self:DistanceToUnit(b) end)
local nPlayerCount = #tNearbyPlayers
-- clear list
self:DestroyNearbyPlayersList()
-- draw new ui
for i, unit in ipairs(tNearbyPlayers) do
self:AddPlayerToList(unit)
end
self.wndPlayerList:ArrangeChildrenVert()
-- update Window title
self.wndMain:FindChild("WindowTitle"):SetText("Nearby Players (" .. nPlayerCount .. ")")
-- self.wndMain:FindChild("WindowTitle"):SetText("Nearby Players (" .. nPlayerCount .. ") : [" .. self.nTimestamp .. "]")
end
function NearbyPlayers:AddPlayerToList(unitAdded)
local strColor = "ffffffff"
self.wndMain:FindChild("WindowTitle"):SetTextColor("UI_TextHoloTitle")
if unitAdded:GetDispositionTo(self.tPlayerUnit) == Unit.CodeEnumDisposition.Hostile then
if unitAdded:IsPvpFlagged() then
strColor = "xkcdBrightRed"
self.wndMain:FindChild("WindowTitle"):SetTextColor("xkcdBrightRed")
else
strColor = "xkcdBrightOrange"
end
else
if unitAdded:IsPvpFlagged() then
strColor = "xkcdBrightYellow"
end
end
if self.tRPTracked[unitAdded:GetName()] ~= nill then
strColor = "xkcdAcidGreen"
end
btnPlayer = Apollo.LoadForm(self.xmlDoc, 'PlayerLine', self.wndPlayerList, self)
btnPlayer:SetData(unitAdded)
wndPlayerName = btnPlayer:FindChild('ListItemPlayerName')
wndPlayerName:SetText(unitAdded:GetName())
wndPlayerName:SetTextColor(strColor)
wndDist = btnPlayer:FindChild('ListItemDistance')
wndDist:SetText(string.format('%dm ', self:DistanceToUnit(unitAdded)))
wndDist:SetTextColor(strColor)
wndChannel = btnPlayer:FindChild('ListItemLevel')
wndChannel:SetText(string.format('%s', unitAdded:GetLevel()))
wndChannel:SetTextColor(strColor)
local strClassIconSprite = ktClassToIconPanel[unitAdded:GetClassId()] or ""
btnPlayer:FindChild("ListItemClassIcon"):SetSprite(strClassIconSprite)
end
function NearbyPlayers:DestroyNearbyPlayersList()
for i, this_btn in ipairs(self.wndPlayerList:GetChildren()) do
this_btn:Destroy()
end
end
---------------------------------------------------------------------------------------------------
-- Track role-players (members on RP chat channels WSRP or LFRP)
---------------------------------------------------------------------------------------------------
function NearbyPlayers:ChatLog_SuppressListing()
ChatLog = Apollo.GetAddon("ChatLog")
if ChatLog then
-- ikr? I'll fix it, prolly.
function ChatLog:OnChatList( channelSource )
return nil
end
end
end
function NearbyPlayers:PollRPChannels()
local channels = ChatSystemLib.GetChannels()
self.tRPTracked = {}
for i,this_chan in ipairs(channels) do
if this_chan:GetName() == "WSRP" or this_chan:GetName() == "LFRP" then
this_chan:RequestMembers()
local members = this_chan:GetMembers()
for j, this_member in ipairs(members) do
local strName = this_member['strMemberName']
self.tRPTracked[strName] = true
end
end
end
end
---------------------------------------------------------------------------------------------------
-- PlayerLine Functions
---------------------------------------------------------------------------------------------------
function NearbyPlayers:OnPlayerButton( wndHandler, wndControl, eMouseButton )
bLeft = eMouseButton == GameLib.CodeEnumInputMouse.Left
bMiddle = eMouseButton == GameLib.CodeEnumInputMouse.Middle
unit = wndControl:GetData()
GameLib.SetTargetUnit(unit)
if bLeft or bMiddle then
if type(unit) ~= "string" then
unit:ShowHintArrow()
end
else
ChatLog = Apollo.GetAddon("ChatLog")
for i, this_wnd in ipairs(ChatLog.tChatWindows) do
if this_wnd:IsVisible() then
input = this_wnd:FindChild('Input')
input:SetText(string.format('/w %s ', unit:GetName()))
ChatLog:OnInputChanged(input, input, input:GetText())
input:ClearFocus()
input:SetFocus()
end
end
end
end
-----------------------------------------------------------------------------------------------
-- Utilities & stuff
-----------------------------------------------------------------------------------------------
function NearbyPlayers:tablelength(T)
local count = 0
for _ in pairs(T) do count = count + 1 end
return count
end
-----------------------------------------------------------------------------------------------
-- NearbyPlayers Instance
-----------------------------------------------------------------------------------------------
local NearbyPlayersInstance = NearbyPlayers:new()
NearbyPlayersInstance:Initialize()
| 5bdbf9c292ae261ca0c565ae9a381cf14ac31893 | [
"Markdown",
"Lua"
] | 2 | Markdown | Juith/NearbyPlayers | ad924af272ec88dfcbe51ab76e7c0868bcd4bee0 | 64a24764757ce91003eb96eeb97e5b4723a075db |
refs/heads/master | <file_sep>var request = require('superagent')
module.exports = async function (list) {
do {
do {
num = Math.floor(Math.random() * list.pokemon.length)
} while (list.pokemon[num].pokemon.name.indexOf("-") !== -1)
pokemon = await request.get(list.pokemon[num].pokemon.url)
.then(function (res) {
return res
})
.catch(function (err) {
console.log(err)
return err.response
})
} while (pokemon.body.id > 721)
var nums = []
var moves = []
for (var i = 0; i < 4; i++) {
do {
num = Math.floor(Math.random() * pokemon.body.moves.length)
} while (nums.includes(num))
nums.push(num)
moves.push({
"name": pokemon.body.moves[num].move.name
})
}
pokemon = {
"height": pokemon.body.height,
"weight": pokemon.body.weight,
"name": pokemon.body.name,
"types": pokemon.body.types,
"stats": pokemon.body.stats,
"sprite": pokemon.body.sprites.front_default,
"moves": moves
}
return pokemon
}<file_sep>var modal = document.getElementById('pokemonModal')
var modal2 = document.getElementById('erroModal')
var button = document.getElementById("pokeInfo")
var close = document.getElementsByClassName("close")[0]
var close2 = document.getElementsByClassName("close")[1]
button.onclick = function() {
loadPoke(pokemonList.length - 1)
}
close.onclick = function() {
modal.style.display = "none"
document.body.style.overflow = 'auto'
}
close2.onclick = function() {
modal2.style.display = "none"
document.body.style.overflow = 'auto'
}
window.onclick = function(event) {
if (event.target == modal || event.target == modal2) {
modal.style.display = "none"
modal2.style.display = "none"
document.body.style.overflow = 'auto'
}
}<file_sep>const CACHE_NAME = 'poke-cache-v8'
var urlsToCache = [
'/assets/css/style.css',
'/assets/js/ajax.js',
'/assets/js/map.js',
'/assets/js/modal.js',
'/assets/js/moment-timezone-10.min.js',
'/assets/js/moment.min.js',
'/assets/js/poketomap.js',
'/assets/js/tz.js',
'/assets/font/pokemon_pixel_font.ttf'
]
self.addEventListener('install', function (event) {
event.waitUntil(
caches.open(CACHE_NAME)
.then(function (cache) {
return cache.addAll(urlsToCache)
})
)
})
self.addEventListener('activate', event => {
const cacheWhitelist = [CACHE_NAME];
event.waitUntil(
caches.keys().then(cacheNames => {
return Promise.all(
cacheNames.map(cacheName => {
if (cacheWhitelist.indexOf(cacheName) === -1) {
return caches.delete(cacheName);
}
})
);
})
);
});
self.addEventListener('fetch', function (event) {
event.respondWith(
caches.match(event.request)
.then(function (response) {
if (response) {
return response
}
return fetch(event.request)
.then(response => {
return caches.open(CACHE_NAME)
.then(cache => {
if (!event.request.url.includes('/buscar?lon')) {
cache.put(event.request.url, response.clone())
}
return response
})
})
})
)
})<file_sep>var resultados = require('./controller/weather')
module.exports = function (app) {
app.get('/', function (req, res) {
res.sendFile(__dirname + '/view/index.html')
})
app.get('/buscar', function (req, res) {
response = {
lon: req.query.lon,
lat: req.query.lat
}
resultados(response.lon, response.lat)
.then(result => {
res.end(JSON.stringify(result))
}).catch(function (err) {
console.log(err)
return err.response
})
})
}<file_sep>pokemons = []
pokeId = 0
function addPokeToMap(pokemon, lon, lat) {
map.loadImage(pokemon.sprite, function(error, image) {
if (error) {
pokemons.push({
"type": "Feature",
"properties": {
"description": "<strong style='text-transform: uppercase'>" + pokemon.name + "</strong>",
"pokeid": pokeId++
},
"geometry": {
"type": "Point",
"coordinates": [lon, lat]
}
})
map.getSource("pokemons").setData({
"type": "FeatureCollection",
"features": pokemons
})
} else {
if (!map.hasImage(pokemon.name)) {
map.addImage(pokemon.name, image)
}
pokemons.push({
"type": "Feature",
"properties": {
"description": "<strong style='text-transform: uppercase; font-size: 18px;'>" + pokemon.name + "</strong>",
"icon": pokemon.name,
"pokeid": pokeId++
},
"geometry": {
"type": "Point",
"coordinates": [lon, lat]
}
})
map.getSource("pokemons").setData({
"type": "FeatureCollection",
"features": pokemons
})
}
})
}<file_sep># TESTE POKEMON POR TEMPERATURA
## COMO USAR
Primeiro é necessário instalar as dependências utilizando o comando "**npm install**".
Depois, basta abrir o terminal e utilizar o comando "**node index**" estando na pasta raíz do projeto.
Após isso aparecerá no console o endereço onde o servidor foi inicializado, sendo provavelmente **<http://localhost:5000/>**.
Agora é só abrir o navegador no endereço acima e utilizar o sistema.
Para saber qual tipo de Pokemon pode ser encontrado em determinada cidade basta **pesquisar o nome da cidade** ou **clicar sobre ela no mapa**.
### DEMO
**<https://soaryn-poketemp.herokuapp.com/>**
## TECNOLOGIAS USADAS
- FRONTEND
- HTML
- CSS
- Javascript
- Mapbox GL JS
- BACKEND
- Node
- Express
- Superagent
## APIS UTILIZADAS
- [OpenWeatherMap](https://openweathermap.org/)
- [PokeAPI](https://pokeapi.co/)
## O DESAFIO
O objetivo é criar uma aplicação web seguindo os seguintes critérios:
- Em uma página HTML deve ser possível informar uma cidade de qualquer lugar do mundo;
- De acordo com as condições climáticas desta cidade deve-se exibir um Pokémon baseado em seu tipo (fogo, água, vento, elétrico, etc) seguindo as seguintes regras:
- Lugares onde a temperatura for menor que **5ºC**, deve-se retornar um pokémon de **gelo (ice)**.
- Lugares onde a temperatura estiver entre **5ºC e 10ºC**, deve-se retornar um pokémon do tipo **água (water)**.
- Lugares onde a temperatura estiver entre **12ºC e 15ºC**, deve-se retornar um pokémon do tipo **grama (grass)**.
- Lugares onde a temperatura estiver entre **15ºC e 21ºC**, deve-se retornar um pokémon do tipo **terra (ground)**.
- Lugares onde a temperatura estiver entre **23ºC e 27ºC**, deve-se retornar um pokémon do tipo **inseto (bug)**.
- Lugares onde a temperatura estiver entre **27ºC e 33ºC** inclusive, deve-se retornar um pokémon do tipo **pedra (rock)**.
- Lugares onde a temperatura for maior que **33ºC**, deve-se retornar um pokémon do tipo **fogo (fire)**.
- **Para qualquer outra temperatura**, deve-se retornar um pokémon do tipo **normal**.
- E, no caso em que **esteja chovendo na região** um pokémon **elétrico (electric)** deve ser retornado, independente da temperatura.
- Após a consulta deve-se exibir na tela:
- Temperatural atual da cidade em graus Celcius;
- Se está chovendo ou não;
- Nome do Pokémon seguindo as regras acima.<file_sep>var express = require('express')
var app = express()
var compression = require('compression')
const PORT = process.env.PORT || 5000
app.use(compression({
level: 9
}))
require('./src/routes')(app)
app.use(express.static(__dirname + '/public'))
var server = app.listen(PORT, function () {
var host = server.address().address
var port = server.address().port
console.log('App listening on %s port %s', host, port)
})
<file_sep>mapboxgl.accessToken =
'<KEY>'
onPokemon = false
var map = new mapboxgl.Map({
container: 'map',
style: 'mapbox://styles/soaryn/cjvybmcv307n41dn2aowj5oul',
center: [0, 0],
zoom: 0,
attributionControl: false,
logoPosition: "bottom-right"
})
var geocoder = new MapboxGeocoder({
accessToken: mapboxgl.accessToken,
language: 'en-US',
mapboxgl: mapboxgl,
zoom: 12,
types: "district, place, locality, country",
clearAndBlurOnEsc: true,
flyTo: {
bearing: 1,
speed: 10,
curve: 10,
easing: function (t) {
return t
}
},
limit: 20
})
document.getElementById('geocoder').appendChild(geocoder.onAdd(map))
/*
var geolocate = new mapboxgl.GeolocateControl({
positionOptions: {
enableHighAccuracy: true
},
trackUserLocation: true
})
map.addControl(geolocate)*/
var marker = new mapboxgl.Marker({
draggable: true
})
.setLngLat([0, 0])
.addTo(map)
map.on('click', e => {
if (onPokemon == false) {
marker.setLngLat(e.lngLat)
onDragEnd()
}
})
map.on('click', 'pokemons', e => {
loadPoke(e.features[0].properties.pokeid)
})
function onDragEnd() {
var lngLat = marker.getLngLat()
loadInfo(lngLat.lng, lngLat.lat)
}
marker.on('dragend', onDragEnd)
geocoder.on('result', function () {
marker.setLngLat(geocoder.mapMarker._lngLat)
geocoder.clear()
setTimeout(() => {
document.querySelector(".mapboxgl-ctrl-geocoder--input").blur()
onDragEnd()
}, 1000)
})
var popup = new mapboxgl.Popup({
closeButton: false,
closeOnClick: false,
className: "popup"
})
map.on('mousemove', 'pokemons', function (e) {
onPokemon = true
map.getCanvas().style.cursor = 'pointer'
var coordinates = e.features[0].geometry.coordinates.slice()
var description = e.features[0].properties.description
while (Math.abs(e.lngLat.lng - coordinates[0]) > 180) {
coordinates[0] += e.lngLat.lng > coordinates[0] ? 360 : -360
}
popup.setLngLat(coordinates)
.setHTML(description)
.addTo(map)
})
map.on('mouseleave', 'pokemons', function () {
onPokemon = false
map.getCanvas().style.cursor = ''
popup.remove()
})
map.on('load', () => {
document.querySelector(".mapboxgl-ctrl-geocoder--input").focus()
map.addSource("pokemons", {
"type": "geojson",
"data": {
"type": "FeatureCollection",
"features": []
}
})
map.addLayer({
"id": "pokemons",
"type": "symbol",
"source": "pokemons",
"layout": {
"icon-image": "{icon}",
"icon-allow-overlap": true,
"icon-size": 0.5,
"icon-padding": 0,
"icon-ignore-placement": true
}
})
loadUserLocation()
})<file_sep>var request = require('superagent')
var getType = require('./type')
var getPokemon = require('./pokemon')
module.exports = async (lon, lat) => {
const resWeather =
await request.get('http://api.openweathermap.org/data/2.5/weather')
.query({
appid: '29d7591100934bfe7603aad29eba1626'
})
.query({
lang: 'en'
})
.query({
units: 'metric'
})
.query({
lon: lon
})
.query({
lat: lat
})
.then(function (response) {
type = getType(response.body.main.temp, response.body.weather[0].main)
return response.body
})
.catch(function (err) {
type = 'normal'
console.log(err)
return err.response.body
})
resType = await request.get('https://pokeapi.co/api/v2/type/' + type)
.then(function (response) {
return response.body
})
.catch(function (err) {
console.log(err)
return err.response.body
})
resPokemon = await getPokemon(resType)
resType = resType.name
return {
resWeather,
resType,
resPokemon
}
} | 34d1d40ee58c5b5be1782cd6be0dd06175eb181a | [
"JavaScript",
"Markdown"
] | 9 | JavaScript | SoarynAC/weather-pokemon-test | f66742400a2ac1653c7dae326dbc440a7c60a1cf | 1c8e449d266497bdb761521bdc02d0e7da1478a8 |
refs/heads/master | <file_sep>import tag
import json
import os
ct = tag.ContentTagger()
#result = ct._tag_text("Most rugged luchadores from Mexico City agree that Donald Trump hates both the European Union and Mexico.")
#print(result)
#result = ct._tag_text("RT @J_Bloodworth: Wrong from the very first line >> Hilary Benn's Speech for Bombing Syria Was Disingenuous Bullshit https://t.co/cErkXsNDO\u2026")
#print(result)
#result = ct._tag_text("RT @RebeccaFMusic: Praying for the innocent children in Syria \ud83d\ude4f please god keep them poor babies safe \ud83d\udc94\ud83d\udc94\ud83d\udc94")
#print(result)
#with open(os.path.join(os.path.expanduser('~'),"python/new_tweets.json")) as file:
#tweets = json.load(file)
#result = ct._tag_multi_tweets(tweets)
with open(os.path.join(os.path.expanduser('~'),"Nate/new_tweets_sample.json")) as file:
tweets = json.load(file)
print(ct._return_tweets_with_tag(tweets, u'Syria'))
<file_sep>import nltk
import json
from nltk.tokenize import TweetTokenizer
#Traverse tagged word tree and identify named entities
def traverse(chunked):
entityList = []
for n in range(len(chunked)):
x = chunked[n]
l = ""
if isinstance(x, nltk.tree.Tree):
#I have no idea why this works
if x.label() == 'NNP':
print('0')
else:
for f in x.leaves():
l += f[0]
l += " "
l = l[:-1]
entityList.append(l)
return entityList
class ContentTagger:
#Breaks down input sentence and returns a list of all named entities
def _tag_text(self, tweet_text):
tokenizer = TweetTokenizer()
tokens = tokenizer.tokenize(tweet_text)
tagged = nltk.pos_tag(tokens)
entities = nltk.chunk.ne_chunk(tagged)
neList = traverse(entities)
return neList
#Takes tweet as json, identifies language, and calls _tag_text
#Todo: add support for multi-lingual tagging
def _tag_tweet(self, tweet_json):
if tweet_json['lang'] == "fr":
s = tweet_json['text_fr']
elif tweet_json['lang'] == "de":
s = tweet_json['text_de']
elif tweet_json['lang'] == "ar":
s = tweet_json['text_ar']
elif tweet_json['lang'] == "ru":
s = tweet_json['text_ru']
else:
s = tweet_json['text_en']
return self._tag_text(s)
#Iterates through a json containing multiple tweets and tags each one
#Returns a list of the list of returned _tag_text values
def _tag_multi_tweets(self, tweet_json):
l = []
for n in tweet_json:
entityList = self._tag_tweet(n)
l.append(entityList)
return l
#Iterates through a json containing multiple tweets and tags each one, then checks for the given tag
#Returns a list of tweets, represented by ids, that contain the given tag
#Painfully slow
def _return_tweets_with_tag(self, tweet_json, tag):
l = []
for n in tweet_json:
entityList = self._tag_tweet(n)
if tag in entityList:
l.append(n['id'])
return l
| 44f4b3832fda049babc0bfc03a17d20fb0adf7f8 | [
"Python"
] | 2 | Python | smilligan93/undergrad | 5737785e641318ecad4a12f79e702cd0640332d8 | 6cbc9d709d85c450196b9d728075a50a889b0fe2 |
refs/heads/master | <repo_name>minteemer/aml_classification_kaggle<file_sep>/pca.py
import numpy as np
import matplotlib.pyplot as plt
from mpl_toolkits.mplot3d import Axes3D
from sklearn.compose import make_column_transformer
from sklearn.decomposition import PCA, TruncatedSVD
from sklearn.feature_extraction.text import CountVectorizer, TfidfTransformer
from sklearn.pipeline import make_pipeline
from sklearn.preprocessing import StandardScaler
from data_preparation import get_train_data
X, y = get_train_data()
data_transformer = make_column_transformer(
('Title', make_pipeline(CountVectorizer(), TfidfTransformer())),
('BodyMarkdown', make_pipeline(CountVectorizer(), TfidfTransformer())),
('Tags', make_pipeline(CountVectorizer(), TfidfTransformer())),
(
['CountTags', 'ReputationAtPostCreation', 'OwnerUndeletedAnswerCountAtPostTime', 'OwnerCreationDate'],
StandardScaler()
),
)
X = data_transformer.fit_transform(X)
colors_map = {
'not a real question': 0.0,
'not constructive': 0.25,
'too localized': 0.5,
'off topic': 0.75,
'open': 1.0,
}
colors = [colors_map[c] for c in y]
def plot_2d():
X_2d = TruncatedSVD(n_components=2).fit_transform(X)
# Reorder the labels to have colors matching the cluster results
plt.scatter(X_2d[:, 0], X_2d[:, 1], s=20, c=colors, cmap='rainbow')
# plt.title(title)
plt.show()
def plot_3d():
fig = plt.figure(1, figsize=(4, 3))
plt.clf()
ax = Axes3D(fig, rect=[0, 0, .95, 1], elev=75, azim=135)
plt.cla()
X_3d = TruncatedSVD(n_components=3).fit_transform(X)
# Reorder the labels to have colors matching the cluster results
ax.scatter(X_3d[:, 0], X_3d[:, 1], X_3d[:, 2], s=10, c=colors, cmap="rainbow", edgecolor='k')
ax.w_xaxis.set_ticklabels([])
ax.w_yaxis.set_ticklabels([])
ax.w_zaxis.set_ticklabels([])
# plt.title(title)
plt.show()
if __name__ == '__main__':
plot_2d()
plot_3d()
<file_sep>/data_preparation.py
import pandas as pd
from datetime import datetime
def prepare(X):
# Drop useless parameters
X = X.drop(['PostCreationDate', 'OwnerUserId'], axis=1)
if 'PostClosedDate' in X.columns:
X = X.drop('PostClosedDate', axis=1)
# Convert account creation dates to numerical format (timestamp)
def date_string_to_timestamp(date):
try:
return datetime.strptime(date, "%m/%d/%Y %H:%M:%S").timestamp()
except ValueError: # a few dates are in different format
return datetime.strptime(date, "%Y-%m-%d").timestamp()
X["OwnerCreationDate"] = X["OwnerCreationDate"].map(date_string_to_timestamp)
# Replace NaN in TagN columns to empty string
tags_columns = ['Tag1', 'Tag2', 'Tag3', 'Tag4', 'Tag5']
for tag_index in tags_columns:
X[tag_index] = X[tag_index].map(lambda x: "" if isinstance(x, float) else x)
# Create column that contains all tags as one string
tags = (X['Tag1'] + " " + X['Tag2'] + " " + X['Tag3'] + " " + X['Tag4'] + " " + X['Tag5']).str.strip()
X['Tags'] = pd.Series(tags)
# Create column that contains number of tags
X['CountTags'] = tags.map(lambda tags_str: len(tags_str.split(" ")))
X = X.drop(tags_columns, axis=1)
return X
def get_train_data():
Z = pd.read_csv(r'data/train.csv', skipinitialspace=True, sep=',', index_col='PostId')
X = prepare(Z.drop('OpenStatus', axis=1))
Y = Z['OpenStatus']
return X, Y
def get_test_data():
return prepare(pd.read_csv(r'data/test.csv', skipinitialspace=True, sep=',', index_col='PostId'))
<file_sep>/solution.py
import numpy
from sklearn.feature_extraction.text import CountVectorizer, TfidfTransformer
from sklearn.model_selection import cross_val_score
from sklearn.pipeline import make_pipeline
from sklearn.linear_model import SGDClassifier, LogisticRegression
from sklearn.preprocessing import MinMaxScaler, StandardScaler
from sklearn.svm import LinearSVC
from sklearn.ensemble import VotingClassifier, AdaBoostClassifier
from sklearn.compose import make_column_transformer
import pandas as pd
import data_preparation
import testing
def ensemble_models():
testing.prepare_ensemble_data()
clf1 = make_pipeline(
make_column_transformer(
('Title', make_pipeline(CountVectorizer(min_df=0.00007), TfidfTransformer())),
('BodyMarkdown', make_pipeline(CountVectorizer(max_df=0.8, min_df=0.00007), TfidfTransformer())),
('Tags', make_pipeline(CountVectorizer(), TfidfTransformer())),
(['ReputationAtPostCreation', 'OwnerUndeletedAnswerCountAtPostTime', 'OwnerCreationDate'], MinMaxScaler()),
),
SGDClassifier(loss='log', alpha=0.0001, penalty='l2', power_t=0.15),
)
Y_hat1 = testing.ensemble_test_estimator(clf1)
print('--- SGD DONE ---')
clf2 = make_pipeline(
make_column_transformer(
('Title', make_pipeline(CountVectorizer(min_df=0.00007), TfidfTransformer())),
('BodyMarkdown', make_pipeline(CountVectorizer(min_df=0.00007), TfidfTransformer())),
('Tags', make_pipeline(CountVectorizer(), TfidfTransformer())),
(['ReputationAtPostCreation', 'OwnerUndeletedAnswerCountAtPostTime', 'OwnerCreationDate'], MinMaxScaler()),
),
LogisticRegression(penalty='l2', tol=0.0001, solver='liblinear', multi_class='ovr', C=0.3),
)
Y_hat2 = testing.ensemble_test_estimator(clf2)
print('--- Logistic DONE ---')
clf3 = make_pipeline(
make_column_transformer(
('Title', make_pipeline(CountVectorizer(min_df=0.00007), TfidfTransformer())),
('BodyMarkdown', make_pipeline(CountVectorizer(min_df=0.00007), TfidfTransformer())),
('Tags', make_pipeline(CountVectorizer(), TfidfTransformer())),
(['ReputationAtPostCreation', 'OwnerUndeletedAnswerCountAtPostTime', 'OwnerCreationDate'], MinMaxScaler()),
),
LinearSVC(C=0.1),
)
Y_hat3 = testing.ensemble_test_estimator(clf3)
print('--- SVC DONE ---')
Y_hat_matrix = pd.DataFrame(data={'Y_hat1': Y_hat1, 'Y_hat2': Y_hat2, 'Y_hat3': Y_hat3})
testing.ensemble_test_super_model(Y_hat_matrix, SGDClassifier())
print('--- Super model SGD DONE ---')
def voting():
clf1 = SGDClassifier(loss='hinge', alpha=0.0001, penalty='l2', power_t=0.15, n_jobs=-1)
clf2 = LogisticRegression(penalty='l2', tol=0.0001, solver='lbfgs', C=0.3, max_iter=300, n_jobs=-1)
clf3 = LinearSVC(C=0.1)
eclf = make_pipeline(
make_column_transformer(
('Title', make_pipeline(CountVectorizer(), TfidfTransformer(norm="l2"))),
('BodyMarkdown', make_pipeline(CountVectorizer(), TfidfTransformer(norm="l2"))),
('Tags', make_pipeline(CountVectorizer(), TfidfTransformer(norm="l2"))),
(
['ReputationAtPostCreation', 'OwnerUndeletedAnswerCountAtPostTime', 'OwnerCreationDate'], StandardScaler()),
),
VotingClassifier(estimators=[('sgd', clf1), ('lr', clf2), ('svc', clf3)], n_jobs=-1),
)
testing.cv_score(eclf)
testing.generate_solution(eclf)
def ada_boost():
sgd = SGDClassifier(loss='hinge', alpha=0.0001, penalty='l2', power_t=0.15, n_jobs=-1)
logistics = LogisticRegression(penalty='l2', tol=0.0001, solver='lbfgs', multi_class='ovr', C=0.3, max_iter=300,
n_jobs=-1)
svc = LinearSVC(C=0.1)
eclf = make_pipeline(
make_column_transformer(
('Title', make_pipeline(CountVectorizer(), TfidfTransformer())),
('BodyMarkdown', make_pipeline(CountVectorizer(), TfidfTransformer())),
('Tags', make_pipeline(CountVectorizer(), TfidfTransformer())),
(
['CountTags', 'ReputationAtPostCreation', 'OwnerUndeletedAnswerCountAtPostTime', 'OwnerCreationDate'],
StandardScaler()
),
),
AdaBoostClassifier(base_estimator=sgd, n_estimators=100, learning_rate=0.5, algorithm='SAMME'),
)
testing.cv_score(eclf)
if __name__ == '__main__':
# ensemble_models()
# ada_boost()
voting()
<file_sep>/testing.py
from sklearn.compose import make_column_transformer
from sklearn.feature_extraction.text import CountVectorizer, TfidfTransformer
from sklearn.model_selection import cross_val_score, train_test_split, GridSearchCV
from sklearn.linear_model import SGDClassifier, LogisticRegression
from sklearn.metrics import accuracy_score
from sklearn.pipeline import make_pipeline
from sklearn.preprocessing import StandardScaler
from sklearn.svm import LinearSVC
import pandas as pd
import numpy as np
import data_preparation
TEST_SIZE = 0.3
trans = make_column_transformer(
('Title', make_pipeline(CountVectorizer(), TfidfTransformer(norm="l2"))),
('BodyMarkdown', make_pipeline(CountVectorizer(), TfidfTransformer(norm="l2"))),
('Tags', make_pipeline(CountVectorizer(), TfidfTransformer(norm="l2"))),
(['ReputationAtPostCreation', 'OwnerUndeletedAnswerCountAtPostTime',
'OwnerCreationDate', 'CountTags'], StandardScaler()),
)
X, y = data_preparation.get_train_data()
X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=TEST_SIZE)
# Data used by ensemble
X_test_super_model, y_test_super_model = [], []
Y_hats_test = []
models = {
'sgd': {
"base_model": SGDClassifier(),
"params": {'loss': ['hinge', 'log', 'modified_huber'],
'penalty': ['none', 'l2', 'l1', 'elasticnet'],
'alpha': [0.01, 0.001, 0.0001],
}
},
'logistic': {
"base_model": LogisticRegression(),
"params": {'solver': ['liblinear', 'saga', 'lbfgs'],
'tol': [0.01, 0.001, 0.0001],
'penalty': ['l2', 'l1'],
'C': [0.7, 0.5, 0.3, 0.1],
'max_iter': [100, 200, 300]}
},
'svc': {
"base_model": LinearSVC(),
"params": {'C': [0.1, 0.2, 0.3, 0.4, 0.5]}
},
}
optimal_parameters = {
'sgd': {'loss': ['hinge'],
'penalty': ['l2'],
'alpha': [0.0001],
},
'logistic': {'solver': ['lbfgs'],
'tol': [0.0001],
'penalty': ['l2'],
'C': [0.3],
'max_iter': [300]},
'svc': {'C': [0.1]}
}
def prepare_ensemble_data():
"""
This method divides train data into 4 parts:
50% - X_train, y_train
25% - X_test, y_test for checking models fitted with X_train and y_train
25% - X_test_super_model, y_test_super_model - testing predictions of different models with super model predictions
"""
global X_train, X_test, y_train, y_test, X_test_super_model, y_test_super_model
X_train, X_test_half, y_train, y_test_half = train_test_split(X, y, test_size=0.5)
X_test, X_test_super_model, \
y_test, y_test_super_model = train_test_split(X_test_half, y_test_half, test_size=0.5)
def ensemble_test_estimator(model):
"""
Performs ensemble testing of the base estimator model (fit and predict),
prints accuracy results and saves them in Y_hats_test matrix.
:param model: given super model
:return: output predicted by base estimator model
"""
global Y_hats_test, X_test_super_model
model.fit(X_train, y_train)
Y_hat = model.predict(X_test)
accuracy = accuracy_score(Y_hat, y_test)
print('Accuracy: %.3f' % accuracy)
Y_hats_test.append(single_test(model, X_test_super_model))
return Y_hat
def single_test(model, x_test):
"""
Uses model to predict output
:param model: given model
:param x_test: input data on which prediction will be based
:return: predicted output
"""
Y_hat = model.predict(x_test)
return Y_hat
def cv_score(model):
"""
Performs cross validation on the chosen model and prints mean accuracy for each iteration.
"""
cros_val_sores = cross_val_score(model, X, y, cv=5, n_jobs=-1)
print("Average score: %.3f" % np.mean(cros_val_sores))
print(cros_val_sores)
def generate_solution(model):
"""
Uses given model to predict outputs and save them into 'solution.csv'.
:param model: chosen model
"""
X_test = data_preparation.get_test_data()
model.fit(X, y)
Y_hat = model.predict(X_test)
solution = pd.DataFrame(Y_hat, columns=['OpenStatus'], index=X_test.index)
solution.to_csv('solution.csv')
def grid_search(model, tuned_params_dict, print_results=True, results_to_csv=False):
"""
Performs grid search cross validation to find optimal parameters for the given model.
Prints cross validation results.
:param model: given model
:param tuned_params_dict: dictionary of parameters to check
:param print_results: if True - prints results to console (default: True)
"""
global X, y
# Use Grid Search
tuned_parameters = [tuned_params_dict]
clf = GridSearchCV(model, tuned_parameters, cv=5, scoring='accuracy', n_jobs=-1)
clf.fit(X, y)
# Assign results
means = clf.cv_results_['mean_test_score']
stds = clf.cv_results_['std_test_score']
parameters = clf.cv_results_['params']
# Print results if needed
if print_results:
print("Best parameters set found on development set:")
print()
print(clf.best_params_)
print()
print("Grid scores on development set:")
print()
for mean, std, params in zip(means, stds, clf.cv_results_['params']):
print("%0.3f (+/-%0.03f) for %r" % (mean, std * 2, params))
# Save into csv if needed
if results_to_csv:
model_csv = pd.DataFrame(data=parameters)
model_csv.insert(loc=0, column='STD', value=stds)
model_csv.insert(loc=0, column='Accuracy', value=means)
model_csv.to_csv(r'data/model_analysis.csv')
def ensemble_test_super_model(Y_hats, model):
"""
Performs ensemble method on the given y's that were taken from base estimator models.
Prints results of ensemble.
:param Y_hats: outputs taken from base estimator models.
:param model: chosen super model
"""
global y_test_super_model, y_test, Y_hats_test
# Y_hats = X_test_super
# One hot encode Y_hats
Y_hats = pd.get_dummies(Y_hats)
model.fit(Y_hats, y_test)
# Build and one hot encode testing data
Y_hats_test = {'Y_hat1': Y_hats_test[0], 'Y_hat2': Y_hats_test[1], 'Y_hat3': Y_hats_test[2]}
Y_hats_test = pd.DataFrame(Y_hats_test)
Y_hats_test = pd.get_dummies(Y_hats_test)
Y_hat = model.predict(Y_hats_test)
accuracy = accuracy_score(Y_hat, y_test_super_model)
print('Accuracy: %.3f' % accuracy)
if __name__ == '__main__':
# ---- Uncomment needed tool ----
grid_search(models['sgd']['base_model'], models['sgd']['params'], results_to_csv=True)
# cv_score(models['logistic']['base_model'])
pass
<file_sep>/models_test.py
from sklearn.compose import make_column_transformer
from sklearn.feature_extraction.text import CountVectorizer, TfidfTransformer
from sklearn.metrics import accuracy_score
from sklearn.linear_model import SGDClassifier, LogisticRegression
from sklearn.model_selection import train_test_split
from sklearn.neighbors import KNeighborsClassifier
from sklearn.pipeline import make_pipeline
from sklearn.preprocessing import StandardScaler
from sklearn.svm import SVC, LinearSVC
from sklearn.tree import DecisionTreeClassifier
from sklearn.ensemble import RandomForestClassifier
from sklearn.ensemble import GradientBoostingClassifier
from sklearn.neural_network import MLPClassifier
import data_preparation
X, Y = data_preparation.get_train_data()
data_transformer = make_column_transformer(
('Title', make_pipeline(CountVectorizer(), TfidfTransformer())),
('BodyMarkdown', make_pipeline(CountVectorizer(), TfidfTransformer())),
('Tags', make_pipeline(CountVectorizer(), TfidfTransformer())),
(
['CountTags', 'ReputationAtPostCreation', 'OwnerUndeletedAnswerCountAtPostTime', 'OwnerCreationDate'],
StandardScaler()
),
)
X = data_transformer.fit_transform(X)
X_train, X_test, Y_train, Y_test = train_test_split(X, Y, test_size=0.3)
m = SGDClassifier(loss='hinge', n_jobs=-1)
m.fit(X_train, Y_train)
Y_hat = m.predict(X_test)
accuracy = accuracy_score(Y_hat, Y_test)
print('Accuracy for SGD - %.3f' % accuracy)
m = LogisticRegression(n_jobs=-1)
m.fit(X_train, Y_train)
Y_hat = m.predict(X_test)
accuracy = accuracy_score(Y_hat, Y_test)
print('Accuracy for LogisticsRegression - %.3f' % accuracy)
m = LinearSVC(C=0.5)
m.fit(X_train, Y_train)
Y_hat = m.predict(X_test)
accuracy = accuracy_score(Y_hat, Y_test)
print('Accuracy for LinearSVC - %.3f' % accuracy)
m = KNeighborsClassifier(n_neighbors=17, p=2, n_jobs=8)
m.fit(X_train, Y_train)
Y_hat = m.predict(X_test)
accuracy = accuracy_score(Y_hat, Y_test)
print('Accuracy for KNN - %.3f' % accuracy)
m = DecisionTreeClassifier(max_depth=4)
m.fit(X_train, Y_train)
Y_hat = m.predict(X_test)
accuracy = accuracy_score(Y_hat, Y_test)
print('Accuracy for decision tree - %.3f' % accuracy)
# n_estimators: 1,3,100
# max_depth=None,1,2,5,10
m = RandomForestClassifier(max_features=0.5, n_estimators=100, bootstrap=True, max_depth=5)
m.fit(X_train, Y_train)
Y_hat = m.predict(X_test)
accuracy = accuracy_score(Y_hat, Y_test)
print('Accuracy for random forest regressor - %.3f' % accuracy)
# max_depth:1,2,
# n_estimators:1,3,2000
m = GradientBoostingClassifier(n_estimators=10, learning_rate=0.2, max_depth=4)
m.fit(X_train, Y_train)
Y_hat = m.predict(X_test)
accuracy = accuracy_score(Y_hat, Y_test)
print('Accuracy for gradient boosting - %.3f' % accuracy)
# solver: sgd, lbfgs, adam
# hidden_layer_sizes: [4],[40],[400],[50,50,50]
# activation: identity, logistic, tanh, relu
m = MLPClassifier(hidden_layer_sizes=[40], alpha=0.00100, max_iter=1000, activation='relu', solver='lbfgs')
m.fit(X_train, Y_train)
Y_hat = m.predict(X_test)
accuracy = accuracy_score(Y_hat, Y_test)
print('Accuracy for MLP - %.3f' % accuracy)
kernel = 'linear', 'rbf', 'poly'
m = SVC(C=100.01, kernel='rbf', degree=5, gamma=1, coef0=1)
m.fit(X_train, Y_train)
Y_hat = m.predict(X_test)
accuracy = accuracy_score(Y_hat, Y_test)
print('Accuracy for SVM - %.3f' % accuracy)
| 25b3eea651ba0950b9edbd83a0a74bde48c28779 | [
"Python"
] | 5 | Python | minteemer/aml_classification_kaggle | a7fe95e116bd052061db22dd524d2f67f18cab29 | 1d4533319492071e80c52017d9cf6ee5966f34e8 |
refs/heads/master | <repo_name>dbenjamin57/gitface<file_sep>/config/routes.rb
GitFace::Application.routes.draw do
get '/api/create_repository' => 'api#new_repository'
end
<file_sep>/app/controllers/api_controller.rb
class ApiController < ApplicationController
def new_repository
git_repository_name = params[:git]
end
end
| b1bcbda3dfd555c35299fa93637a67cb21d000e1 | [
"Ruby"
] | 2 | Ruby | dbenjamin57/gitface | 6a1aaef7e35a7dfb4398f4887517872d39edf48d | dea023e33bd3a774a0936317115ac8f16e2e0607 |
refs/heads/master | <repo_name>infamousbazooka/Platteratti-Android<file_sep>/app/src/main/java/com/amberzile/magnusfernandes/platteratti/Item.java
package com.amberzile.magnusfernandes.platteratti;
public class Item {
private String title, description;
private int price;
private byte[] image;
public Item() {
}
public Item(String title) {
this.title = title;
}
public Item(String description, byte[] image, int price, String title) {
this.description = description;
this.image = image;
this.price = price;
this.title = title;
}
public Item(String title, String description, int price, byte[] image) {
this.setTitle(title);
this.setDescription(description);
this.setPrice(price);
this.setImage(image);
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public byte[] getImage() {
return image;
}
public void setImage(byte[] image) {
this.image = image;
}
public int getPrice() {
return price;
}
public void setPrice(int price) {
this.price = price;
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
}
| bf765348e8f210022d3929ef3320e90dedc0f536 | [
"Java"
] | 1 | Java | infamousbazooka/Platteratti-Android | 53981f1dae89286c6f75352bf631c1ef2d53a4e1 | 35828e3c05f1b1f41707f71afca0b82816f8016f |
refs/heads/main | <repo_name>sjfcodes/Bobs-Burger-Database<file_sep>/public/assets/js/burgers.js
// Make sure we wait to attach our handlers until the DOM is fully loaded.
$(function () {
$(".devoure-status").on("click", function (event) {
var id = $(this).data("id");
// var devoured = $(this).data("newsleep");
var devoured = $(this).data("devoured");
var updateDevoured = {
devoured: devoured
};
// Send the PUT request.
$.ajax("/api/burgers/" + id, {
type: "PUT",
data: updateDevoured
}).then(
function () {
console.log("changed status to", devoured);
// Reload the page to get the updated list
location.reload();
}
);
});
$(".order-form").on("submit", function (event) {
// Make sure to preventDefault on a submit event.
event.preventDefault();
var newOrder = {
name: $("#order-name").val().trim(),
devoured: 0
};
// Send the POST request.
$.ajax("/api/burgers", {
type: "POST",
data: newOrder
}).then(
function () {
console.log("created new order");
// Reload the page to get the updated list
location.reload();
}
);
});
$(".delete-order").on("click", function (event) {
var id = $(this).data("id");
// Send the DELETE request.
$.ajax("/api/burgers/" + id, {
type: "DELETE"
}).then(
function () {
console.log("deleted order", id);
// Reload the page to get the updated list
location.reload();
}
);
});
});
$('.orders-btn').on('click', () => {
$('#history-items').addClass('hidden')
$('#order-items').removeClass('hidden')
})
$('.history-btn').on('click', () => {
$('#order-items').addClass('hidden')
$('#history-items').removeClass('hidden')
})
<file_sep>/db/seeds.sql
INSERT INTO burgers (name) VALUES ('Testing, 1, 2, Cheese');
INSERT INTO burgers (name) VALUES ('New Bacon-ings');
INSERT INTO burgers (name) VALUES ('If Looks Could Kale');
INSERT INTO burgers (name) VALUES ('The Say Cheese');
INSERT INTO burgers (name) VALUES ('Thank God its Fried Egg');
INSERT INTO burgers (name) VALUES ('Rest In Peas');
INSERT INTO burgers (name) VALUES ('Fig-eta Bout it');
INSERT INTO burgers (name) VALUES ('Summer Thyme');
INSERT INTO burgers (name) VALUES ('Beets Me');
INSERT INTO burgers (name) VALUES ('Sweet Chili O Mine'); | 4aeafa239bbcf1aaea4abee544b7069a299512b4 | [
"JavaScript",
"SQL"
] | 2 | JavaScript | sjfcodes/Bobs-Burger-Database | 50e87f6f05023a0f519ab78537d6ff73dcc70945 | 7f962afaf53af086beaa060911c829b40f02d828 |
refs/heads/master | <repo_name>imalka1/Doctor-Channeling-With-Realtime-Automatic-Time-Suggestion<file_sep>/Frontend/src/app/views/doctor/clinics/edit-clinic/edit-clinic.component.ts
import { Component, OnInit, Input } from '@angular/core';
import { ClinicDTO } from 'src/app/dtos/ClinicDTO';
import { Clinic } from 'src/app/dtos/Clinic';
import { ClinicsService } from 'src/app/services/clinics.service';
import { DatePipe } from '@angular/common';
@Component({
selector: 'app-edit-clinic',
templateUrl: './edit-clinic.component.html',
styleUrls: ['./edit-clinic.component.css']
})
export class EditClinicComponent implements OnInit {
@Input() edit_clinicDto: ClinicDTO;
constructor(private clinicsService: ClinicsService, private datePipe: DatePipe) { }
ngOnInit() {
}
cancelClinic() {
this.edit_clinicDto.edit = false;
this.edit_clinicDto.clinic.clinicTime = "00:00";
this.edit_clinicDto.clinic.patientsCount = 0;
}
saveClinic() {
if (this.edit_clinicDto.clinic.status != undefined && this.edit_clinicDto.clinic.clinicTime != undefined && this.edit_clinicDto.clinic.patientsCount != undefined) {
this.edit_clinicDto.clinic.status = "Pending";
if (this.edit_clinicDto.clinic._id != undefined) {
this.clinicsService.updateClinic(this.edit_clinicDto.clinic).subscribe(
(result) => {
if (result) {
this.edit_clinicDto.edit = false;
}
})
} else {
this.clinicsService.saveClinic(this.edit_clinicDto.clinic).subscribe(
(result) => {
if (result != undefined) {
this.edit_clinicDto.clinic._id = result._id;
this.edit_clinicDto.edit = false;
}
})
}
}
}
minDate() {
let latest_date = this.datePipe.transform(new Date(), 'yyyy-MM-dd');
return latest_date;
}
isToday() {
if (this.edit_clinicDto.isToday) {
return true;
} else {
return false;
}
}
isNext() {
if (this.edit_clinicDto.isNext) {
return true;
} else {
return false;
}
}
}
<file_sep>/Frontend/src/app/views/doctor/clinics/clinics.component.ts
import {Component, OnInit, AfterViewInit} from '@angular/core';
import {Router} from '@angular/router';
import {ClinicDTO} from 'src/app/dtos/ClinicDTO';
import {Clinic} from 'src/app/dtos/Clinic';
import {ClinicsService} from 'src/app/services/clinics.service';
import {DatePipe} from '@angular/common';
// declare var custom_gallery: any;
// declare var custom_flex: any;
// declare var custom_navigation: any;
// declare var custom_owl: any;
// declare var custom_date_picker: any;
@Component({
selector: 'app-clinics',
templateUrl: './clinics.component.html',
styleUrls: ['./clinics.component.css']
})
export class ClinicsComponent implements OnInit {
clinicDtos: Array<ClinicDTO> = new Array();
months: Array<String> = new Array();
years: Array<number> = new Array();
minutes: Array<number> = new Array();
monthIndex: number = 0;
yearIndex: number = 0;
date: Date;
selectedMonth;
selectedYear;
dropdownMonthWidth;
constructor(private router: Router, private clinicsService: ClinicsService, private datePipe: DatePipe) {
}
ngOnInit() {
this.setYearAndMonth();
this.loadAllClinics();
this.setWidthDropdownMonth();
this.setMinutes();
}
// addField() {
// let canAdd: boolean = true;
// for (let i = 0; i < this.clinicDtos.length; i++) {
// if (this.clinicDtos[i].edit == true) {
// canAdd = false;
// }
// }
// if (canAdd) {
// let con = new Clinic();
// let conDto = new ClinicDTO();
// conDto.edit = true;
// conDto.clinic = con;
// conDto.clinic.status = "Pending";
// conDto.clinicDtos = this.clinicDtos;
// this.clinicDtos.push(conDto);
// }
// }
loadAllClinics() {
var daysInMonth = this.daysInMonth();
this.clinicDtos = new Array();
for (let i = 0; i < daysInMonth; i++) {
let clinic: Clinic = new Clinic();
if (this.monthIndex + 1 < 10) {
if ((i + 1) < 10) {
clinic.clinicDate = new Date(this.yearIndex + '-0' + (this.monthIndex + 1) + '-0' + (i + 1));
} else {
clinic.clinicDate = new Date(this.yearIndex + '-0' + (this.monthIndex + 1) + '-' + (i + 1));
}
} else {
if ((i + 1) < 10) {
clinic.clinicDate = new Date(this.yearIndex + '-' + (this.monthIndex + 1) + '-0' + (i + 1));
} else {
clinic.clinicDate = new Date(this.yearIndex + '-' + (this.monthIndex + 1) + '-' + (i + 1));
}
}
clinic.clinicTime = "00:00";
clinic.patientsCount = 0;
clinic.status = "Not yet";
let conDto: ClinicDTO = new ClinicDTO();
let date1: Date = new Date(this.yearIndex + '-' + (this.monthIndex + 1) + '-' + (i + 1));
let date2: Date = new Date(this.date.getFullYear() + '-' + (this.date.getMonth() + 1) + '-' + this.date.getDate());
if (this.datePipe.transform((date1), 'yyyy-MM-dd') == this.datePipe.transform((date2), 'yyyy-MM-dd')) {
conDto.isToday = true;
} else if (date1 < date2) {
conDto.isPrevious = true;
} else if (date1 > date2) {
conDto.isNext = true;
}
conDto.edit = false;
conDto.clinic = clinic;
conDto.clinicDtos = this.clinicDtos;
this.clinicDtos.push(conDto)
}
let clinic: Clinic = new Clinic();
if (this.monthIndex + 1 < 10) {
clinic.clinicDate = new Date(this.yearIndex + '-0' + (this.monthIndex + 1));
} else {
clinic.clinicDate = new Date(this.yearIndex + '-' + (this.monthIndex + 1));
}
this.clinicsService.getAllClinicsViaYearAndMonth(clinic).subscribe(
(result) => {
for (let i = 0; i < result.length; i++) {
let clinic: Clinic = result[i];
for (let j = 0; j < this.clinicDtos.length; j++) {
if (this.clinicDtos[j].clinic.clinicDate.toISOString() == new Date(clinic.clinicDate).toISOString()) {
this.clinicDtos[j].clinic._id = clinic._id;
this.clinicDtos[j].clinic.status = clinic.status;
this.clinicDtos[j].clinic.clinicTime = clinic.clinicTime;
this.clinicDtos[j].clinic.patientsCount = clinic.patientsCount;
break;
}
}
}
}
)
}
daysInMonth() {
return new Date(this.yearIndex, this.monthIndex + 1, 0).getDate();
}
setYearAndMonth() {
this.date = new Date();
this.monthIndex = this.date.getMonth();
this.yearIndex = this.date.getFullYear();
this.months.push('January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December');
for (let i = this.yearIndex - 20; i < this.yearIndex + 6; i++) {
this.years.push(i);
}
this.selectedYear = this.yearIndex;
this.selectedMonth = this.months[this.monthIndex];
}
nextYear() {
if (this.date.getFullYear() + 5 > this.yearIndex) {
this.selectedYear = ++this.yearIndex;
}
this.loadAllClinics();
}
nextMonth() {
if (this.monthIndex < 11) {
this.selectedMonth = this.months[++this.monthIndex];
} else {
this.monthIndex = 0;
this.selectedMonth = this.months[this.monthIndex];
}
this.loadAllClinics();
this.setWidthDropdownMonth();
}
previousYear() {
if (this.date.getFullYear() - 20 < this.yearIndex) {
this.selectedYear = --this.yearIndex;
}
this.loadAllClinics();
}
previousMonth() {
if (this.monthIndex > 0) {
this.selectedMonth = this.months[--this.monthIndex];
} else {
this.monthIndex = 11;
this.selectedMonth = this.months[this.monthIndex];
}
this.loadAllClinics();
this.setWidthDropdownMonth();
}
changeMonth() {
this.monthIndex = this.months.indexOf((this.selectedMonth));
this.loadAllClinics();
this.setWidthDropdownMonth();
}
changeYear() {
this.yearIndex = this.selectedYear;
this.loadAllClinics();
}
setWidthDropdownMonth() {
switch (this.selectedMonth) {
case this.months[0]:
this.dropdownMonthWidth = '125px';
break;
case this.months[1]:
this.dropdownMonthWidth = '140px';
break;
case this.months[2]:
this.dropdownMonthWidth = '105px';
break;
case this.months[3]:
this.dropdownMonthWidth = '85px';
break;
case this.months[4]:
this.dropdownMonthWidth = '80px';
break;
case this.months[5]:
this.dropdownMonthWidth = '82px';
break;
case this.months[6]:
this.dropdownMonthWidth = '78px';
break;
case this.months[7]:
this.dropdownMonthWidth = '115px';
break;
case this.months[8]:
this.dropdownMonthWidth = '164px';
break;
case this.months[9]:
this.dropdownMonthWidth = '130px';
break;
case this.months[10]:
this.dropdownMonthWidth = '160px';
break;
case this.months[11]:
this.dropdownMonthWidth = '158px';
break;
default:
break;
}
}
setMinutes() {
for (let i = 0; i < 60; i++) {
this.minutes.push(i + 1);
}
}
}
<file_sep>/Frontend/src/app/views/patient/channelings/channelings.component.ts
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-channelings',
templateUrl: './channelings.component.html',
styleUrls: ['./channelings.component.css']
})
export class ChannelingsComponent implements OnInit {
constructor() { }
ngOnInit() {
}
}
<file_sep>/Frontend/src/app/views/doctor/clinics/fixed-clinic/fixed-clinic.component.ts
import {Component, OnInit, Input} from '@angular/core';
import {ClinicDTO} from 'src/app/dtos/ClinicDTO';
import {ClinicsService} from 'src/app/services/clinics.service';
import {Router} from '@angular/router';
import {DatePipe} from '@angular/common';
@Component({
selector: 'app-fixed-clinic',
templateUrl: './fixed-clinic.component.html',
styleUrls: ['./fixed-clinic.component.css']
})
export class FixedClinicComponent implements OnInit {
@Input() fixed_clinicDto: ClinicDTO;
constructor(private clinicsService: ClinicsService, private router: Router, private datePipe: DatePipe) {
}
ngOnInit() {
}
changeClinic() {
this.fixed_clinicDto.edit = true;
}
cancelClinic() {
if (this.fixed_clinicDto.clinic._id != undefined && this.fixed_clinicDto.clinic.status == "OK") {
this.fixed_clinicDto.clinic.status = "Cancel";
this.clinicsService.cancelClinic(this.fixed_clinicDto.clinic).subscribe(
(result) => {
if (result) {
this.fixed_clinicDto.clinic.status = "Cancel";
}
})
} else if (this.fixed_clinicDto.clinic._id != undefined) {
this.clinicsService.removeClinic(this.fixed_clinicDto.clinic).subscribe(
(result) => {
if (result) {
this.fixed_clinicDto.clinic.status = "Not yet";
this.fixed_clinicDto.clinic.clinicTime = "00:00";
this.fixed_clinicDto.clinic.patientsCount = 0;
}
})
}
}
isPrevious() {
if (this.fixed_clinicDto.isPrevious) {
return true;
} else {
return false;
}
}
isToday() {
if (this.fixed_clinicDto.isToday) {
return true;
} else {
return false;
}
}
isNext() {
if (this.fixed_clinicDto.isNext) {
return true;
} else {
return false;
}
}
patientsPanel(clinicDate) {
this.router.navigate(['/head/patients'], {queryParams: {clinicDate: clinicDate}});
}
}
<file_sep>/Frontend/src/app/services/login.service.ts
import {Injectable} from '@angular/core';
import {Subject} from 'rxjs';
@Injectable({
providedIn: 'root'
})
export class LoginService {
login: Subject<boolean> = new Subject<boolean>();
constructor() {
}
setLoginOrLogout(logged) {
this.login.next(logged)
}
isLoggedIn() {
return localStorage.getItem('login') != undefined ? localStorage.getItem('login') == 'true' ? true : false : false;
}
}
<file_sep>/Frontend/src/app/views/common/main-screen/main-screen.component.ts
import { Component, OnInit, AfterViewInit, AfterContentChecked, AfterContentInit } from '@angular/core';
import { Router } from '@angular/router';
declare var custom_gallery: any;
declare var custom_flex: any;
declare var custom_navigation: any;
declare var custom_owl: any;
declare var custom_date_picker: any;
@Component({
selector: 'app-main-screen',
templateUrl: './main-screen.component.html',
styleUrls: ['./main-screen.component.css']
})
export class MainScreenComponent implements OnInit {
constructor(private router: Router) { }
ngOnInit() {
// custom_navigation();
// custom_owl();
// custom_flex();
// custom_date_picker();
// custom_gallery();
}
isDoctor() {
if (this.router.url == '/') {
return true;
} else {
return false;
}
}
}
<file_sep>/Frontend/src/app/views/doctor/patients/patients.component.ts
import { Component, OnInit, Input } from '@angular/core';
import { ActivatedRoute } from '@angular/router';
import {DatePipe} from '@angular/common';
@Component({
selector: 'app-patients',
templateUrl: './patients.component.html',
styleUrls: ['./patients.component.css']
})
export class PatientsComponent implements OnInit {
clinicDate: String;
date: Date;
constructor(private route: ActivatedRoute,private datePipe:DatePipe) { }
ngOnInit() {
this.clinicDate = this.datePipe.transform(this.route.snapshot.queryParamMap.get('clinicDate'),'yyyy-MM-dd');
}
isToday() {
this.date = new Date();
if (this.clinicDate == this.date.toISOString().split('T')[0]) {
return true;
} else {
return false;
}
}
}
<file_sep>/README.md
# DoctorChannelingWithRealtimeAutomaticTimeSuggestion
Doctor channeling with realtime automatic time suggestion system for patients
<file_sep>/Frontend/src/app/views/common/header/header.component.ts
import {Component, OnInit, AfterViewInit, AfterContentChecked, AfterContentInit} from '@angular/core';
import {Router, ActivatedRoute, ActivatedRouteSnapshot} from '@angular/router';
import {LoginService} from "../../../services/login.service";
declare var custom_gallery: any;
declare var custom_flex: any;
declare var custom_navigation: any;
declare var custom_owl: any;
declare var custom_date_picker: any;
@Component({
selector: 'app-header',
templateUrl: './header.component.html',
styleUrls: ['./header.component.css']
})
export class HeaderComponent implements OnInit {
loginButtonText: String = '';
constructor(private router: Router, private route: ActivatedRoute, private loginService: LoginService) {
loginService.login.subscribe((value) => {
this.setLoginText(value)
})
}
ngOnInit() {
custom_navigation();
if (this.loginService.isLoggedIn()) {
this.setLoginText(true)
} else {
this.setLoginText(false)
}
// custom_owl();
// console.log(852)
// custom_flex();
// custom_date_picker();
// custom_gallery();
}
setLoginText(logged) {
if (logged) {
this.loginButtonText = 'Sign out'
} else {
this.loginButtonText = 'Sign in'
}
}
loginOrLogout() {
if (this.loginService.isLoggedIn()) {
localStorage.clear()
this.loginService.setLoginOrLogout(false)
this.router.navigate(['/head/main'])
} else {
this.router.navigate(['/log-head/signin'])
}
}
// headerColor(){
// if (this.router.url == '/head/main') {
// return "";
// } else {
// return "header-bottoms";
// }
// }
isHomeActive() {
if (this.router.url == '/head/main') {
return "active";
} else {
return "";
}
}
isLoginActive() {
if (this.router.url == '/log-head/signin' || this.router.url == '/log-head/signup' || this.router.url == '/log-head/forgot-password') {
return false;
} else {
return true;
}
}
isPatientsPanel() {
if (this.route.snapshot.queryParamMap.get('clinicDate') != undefined) {
return true;
} else {
return false;
}
}
}
<file_sep>/Frontend/src/app/views/common/auth/signin/signin.component.ts
import {Component, ElementRef, OnInit} from '@angular/core';
import {Router} from '@angular/router';
import {LoginService} from "../../../../services/login.service";
@Component({
selector: 'app-signin',
templateUrl: './signin.component.html',
styleUrls: ['./signin.component.css']
})
export class SigninComponent implements OnInit {
accountType: string = 'patient';
signupAllowed: boolean = false;
constructor(private router: Router, private loginService: LoginService) {
}
ngOnInit() {
this.checkForSignup(this.accountType)
}
login() {
localStorage.setItem('login', 'true');
this.router.navigate(['/head/main'])
}
checkForSignup(accountType) {
if (accountType == 'patient') {
this.signupAllowed = true;
} else {
this.signupAllowed = false;
}
}
}
<file_sep>/Frontend/src/app/app.module.ts
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { FormsModule } from '@angular/forms';
import { AppRoutingModule } from './app-routing.module';
import { AppComponent } from './app.component';
import { HospitalScreenComponent } from './views/hospital/hospital-screen/hospital-screen.component';
import { MainScreenComponent } from './views/common/main-screen/main-screen.component';
import { HeaderComponent } from './views/common/header/header.component';
import { FooterComponent } from './views/common/footer/footer.component';
import { ChannelingsComponent } from './views/patient/channelings/channelings.component';
import { ClinicsComponent } from './views/doctor/clinics/clinics.component';
import { EditClinicComponent } from './views/doctor/clinics/edit-clinic/edit-clinic.component';
import { FixedClinicComponent } from './views/doctor/clinics/fixed-clinic/fixed-clinic.component';
import { HttpClientModule } from '@angular/common/http';
import { ClinicsService } from './services/clinics.service';
import { DatePipe } from '@angular/common';
import { PatientsComponent } from './views/doctor/patients/patients.component';
import { SigninComponent } from './views/common/auth/signin/signin.component';
import { SignupComponent } from './views/common/auth/signup/signup.component';
import { ForgotPasswordComponent } from './views/common/auth/forgot-password/forgot-password.component';
@NgModule({
declarations: [
AppComponent,
HospitalScreenComponent,
MainScreenComponent,
HeaderComponent,
FooterComponent,
ChannelingsComponent,
ClinicsComponent,
EditClinicComponent,
FixedClinicComponent,
PatientsComponent,
SigninComponent,
SignupComponent,
ForgotPasswordComponent
],
imports: [
BrowserModule,
AppRoutingModule,
FormsModule,
HttpClientModule
],
providers: [
DatePipe,
ClinicsService
],
bootstrap: [AppComponent]
})
export class AppModule { }
<file_sep>/Frontend/src/app/services/clinics.service.ts
import { Injectable } from '@angular/core';
import { HttpClient } from "@angular/common/http";
import { Observable } from 'rxjs';
import { environment } from 'src/environments/environment';
import { Clinic } from '../dtos/Clinic';
import { ClinicDTO } from '../dtos/ClinicDTO';
const URL = "/clinics";
@Injectable({
providedIn: 'root'
})
export class ClinicsService {
constructor(private http: HttpClient) { }
saveClinic(clinic: Clinic): Observable<Clinic> {
return this.http.post<Clinic>(environment.backend_url + URL + "/addClinic", clinic);
}
updateClinic(clinic: Clinic): Observable<boolean> {
return this.http.post<boolean>(environment.backend_url + URL + "/updateClinic", clinic);
}
cancelClinic(clinic: Clinic): Observable<boolean> {
return this.http.post<boolean>(environment.backend_url + URL + "/cancelClinic", clinic);
}
removeClinic(clinic: Clinic): Observable<boolean> {
return this.http.post<boolean>(environment.backend_url + URL + "/removeClinic", clinic);
}
getAllClinicsViaYearAndMonth(clinic: Clinic): Observable<Array<Clinic>> {
return this.http.post<Array<Clinic>>(environment.backend_url + URL + "/getAllClinicsViaYearAndMonth", clinic);
}
// updateStudent(student: Student): Observable<boolean> {
// return this.http.post<boolean>(environment.backend_url + URL + "/updateStudent", student);
// }
}
<file_sep>/Backend/controllers/clinicController.js
const express = require('express');
var router = express.Router();
var { Clinic } = require('../models/clinic');
router.get('/add', (req, res) => {
var clinic = new Clinic();
clinic.clinicDate = new Date('2019-03-03');
clinic.clinicTime = '10:10';
clinic.patientsCount = 3;
clinic.status = "Pending";
clinic.save((err, doc) => {
if (!err) {
res.json(clinic)
} else {
res.json(undefined)
}
});
});
router.post('/addClinic', (req, res) => {
var clinic = new Clinic();
clinic.clinicDate = req.body.clinicDate;
clinic.clinicTime = req.body.clinicTime;
clinic.patientsCount = req.body.patientsCount;
clinic.status = req.body.status;
clinic.save((err, doc) => {
if (!err) {
res.json(clinic)
} else {
res.json(undefined)
}
});
});
router.post('/updateClinic', (req, res) => {
Clinic.findOneAndUpdate({ _id: req.body._id }, req.body, { useFindAndModify: false }, (err, doc) => {
if (!err) {
res.json(true)
} else {
console.log(err)
res.json(false)
}
})
});
router.post('/cancelClinic', (req, res) => {
Clinic.findOneAndUpdate({ _id: req.body._id }, { status: req.body.status }, { useFindAndModify: false }, (err, doc) => {
if (!err) {
res.json(true)
} else {
console.log(err)
res.json(false)
}
})
});
router.post('/removeClinic', (req, res) => {
Clinic.findByIdAndDelete({ _id: req.body._id }, (err, doc) => {
if (!err) {
res.json(true)
} else {
console.log(err)
res.json(false)
}
})
});
router.post('/getAllClinicsViaYearAndMonth', (req, res) => {
var yearIndex = parseInt(req.body.clinicDate.split('-')[0].trim());
var monthIndex = parseInt(req.body.clinicDate.split('-')[1].trim());
Clinic.aggregate([
{ $project: { clinicTime: 1, patientsCount: 1, status: 1, clinicDate: 1, month: { $month: '$clinicDate' }, year: { $year: '$clinicDate' } } },
{ $match: { month: monthIndex, year: yearIndex } }
], (err, docs) => {
if (!err) {
console.log(docs)
res.send(docs);
} else {
console.log(err)
}
})
});
function updateClinics() {
console.log('The world is going to end today.');
};
module.exports = {
router: router,
updateClinics: updateClinics
}<file_sep>/Backend/models/patient.js
const mongoose = require('mongoose');
var Patient = mongoose.model('Patient', {
fullName: { type: String },
email: { type: String }
})
module.exports = { Patient };<file_sep>/Frontend/src/app/app-routing.module.ts
import {NgModule} from '@angular/core';
import {Routes, RouterModule} from '@angular/router';
import {MainScreenComponent} from "./views/common/main-screen/main-screen.component";
import {ClinicsComponent} from './views/doctor/clinics/clinics.component';
import {HeaderComponent} from './views/common/header/header.component';
import {PatientsComponent} from './views/doctor/patients/patients.component';
import {SigninComponent} from "./views/common/auth/signin/signin.component";
import {SignupComponent} from "./views/common/auth/signup/signup.component";
import {ForgotPasswordComponent} from "./views/common/auth/forgot-password/forgot-password.component";
import {LoginGuard} from "./guards/login.guard";
const routes: Routes = [
{
path: 'log-head',
component: HeaderComponent,
children: [
{
path: 'signin',
component: SigninComponent
},
{
path: 'signup',
component: SignupComponent
},
{
path: 'forgot-password',
component: ForgotPasswordComponent
}
]
},
{
path: 'head',
component: HeaderComponent,
children: [
{
path: 'main',
component: MainScreenComponent
}
]
},
{
path: 'head',
component: HeaderComponent,
canActivate: [LoginGuard],
children: [
{
path: 'clinics',
component: ClinicsComponent
},
{
path: 'patients',
component: PatientsComponent
}
]
},
{path: '', pathMatch: "full", redirectTo: '/head/main'},
];
@NgModule({
imports: [RouterModule.forRoot(routes)],
exports: [RouterModule]
})
export class AppRoutingModule {
}
<file_sep>/Frontend/src/app/dtos/ClinicDTO.ts
import {Clinic} from "./Clinic";
export class ClinicDTO {
clinic: Clinic;
edit: boolean;
isToday: boolean;
isPrevious: boolean;
isNext: boolean;
clinicDtos: Array<ClinicDTO>;
}
<file_sep>/Frontend/src/app/dtos/Clinic.ts
export class Clinic {
_id: String;
clinicDate: Date;
clinicTime: String;
patientsCount: number;
status: String;
}
| 51cb87af321c0dd1dcfa154d15e3e9f671ecf1b3 | [
"Markdown",
"TypeScript",
"JavaScript"
] | 17 | TypeScript | imalka1/Doctor-Channeling-With-Realtime-Automatic-Time-Suggestion | 680d77472300ee0d5e7ec4c3bfed50cab12ab4f0 | d2065a757bae12bf22fd069af9a3a4f461934091 |
refs/heads/master | <file_sep>#!/usr/bin/env python
import rospy
from geometry_msgs.msg import Twist
from beginner_tutorials.msg import BallLocation
from tf.transformations import euler_from_quaternion
from nav_msgs.msg import Odometry
from kobuki_msgs.msg import BumperEvent
import math
import tf
import numpy
class Puppy:
def __init__(self):
self.pub = rospy.Publisher("/mobile_base/commands/velocity", Twist, queue_size=10)
rospy.Subscriber("/ball_detector/ball_location",BallLocation, self.ballLocate)
rospy.Subscriber("/mobile_base/events/bumper", BumperEvent, self.bumped)
rospy.Subscriber('/odom', Odometry, self.handle_pose)
self.listener = tf.TransformListener()
self.state = "search"
self.PID_bearing = PID(320.0,.002,0.0,0.0)
self.PID_range = PID(1.5,-.3, 0.0, 0.0)
self.PID_theta = PID(0.0, 0.75, 0.0, 0.0)
self.PID_rangeInter = PID(0.0, -.9, 0.0, 0.0)
self.bearing = -1.0
self.distance = -1.0
self.inter_x = 0.0
self.inter_y = 0.0
self.x = 0.0
self.y = 0.0
self.theta = 0.0
self.goal_x = 0.0
self.goal_y = 0.0
self.vector_x = 0.0
self.vector_y = 0.0
self.kick_x = 0.0
self.kick_y = 0.0
self.ball_x = 0.0
self.ball_y = 0.0
self.distance_goal_to_ball_x = 0.0
self.distance_goal_to_ball_y = 0.0
self.theta_goal_ball = 0.0
self.inter_x_neg = 0.0
self.inter_y_neg = 0.0
self.inter_x_pos = 0.0
self.inter_y_pos = 0.0
def bumped(self, msg):
# If the BumperEvent message says that we just hit something,
# and we are currently in the "go forward" state, change
# to the "go backward" state. Make a note of the time.
self.state = "backward"
self.time = rospy.get_time()
def handle_pose(self, msg):
self.x = msg.pose.pose.position.x
self.y = msg.pose.pose.position.y
q = (msg.pose.pose.orientation.x, msg.pose.pose.orientation.y,
msg.pose.pose.orientation.z, msg.pose.pose.orientation.w)
(_, _, self.theta) = euler_from_quaternion(q)
def get_vector(self, from_x, from_y, to_x, to_y):
bearing = math.atan2(to_y - from_y, to_x - from_x)
distance = math.sqrt((from_x - to_x)**2 + (from_y - to_y)**2)
return (bearing, distance)
def calibrate_angle(self, angle):
out_angle = angle
while out_angle < -math.pi:
out_angle += math.pi * 2
while out_angle > math.pi:
out_angle -= math.pi * 2
return out_angle
def ballLocate(self,msg):
self.bearing = msg.bearing
self.distance = msg.distance
#print self.bearing
def run(self):
rate = rospy.Rate(10)
twist = Twist()
while not rospy.is_shutdown():
try:
(trans, _) = self.listener.lookupTransform('odom', 'ar_marker_0', rospy.Time(0))
(self.goal_x, self.goal_y, _) = trans
except tf.LookupException:
pass
except tf.ConnectivityException:
pass
except tf.ExtrapolationException:
pass
if math.isnan(self.distance):
self.distance = -1
if self.state == "backward":
# Set twist.linear.x to a negative value >= -0.2
twist.angular.z = 0.0
twist.linear.x = -.3
# If enough time has elapsed, change to the "turn" state
if rospy.get_time() - self.time >= .5:
self.state = "turnBump"
self.time = rospy.get_time()
twist.angular.z = 0.0
elif self.state == "turnBump":
# Set twist.angular.z to a nonzero value
twist.angular.z = .5
# If enough time has elapsed, change to the "go forward" state
if rospy.get_time() - self.time >= 1:
self.state = "search"
twist.angular.z = 0.0
twist.linear.x = 0.0
if self.state == "search":
twist.angular.z = 1.0
twist.linear.x = 0
if self.bearing > 0 and self.distance > 0:
print "Approach"
print self.bearing
self.state = "approach"
else:
print "searching..."
elif self.state == "approach":
if self.bearing < 0:
self.state = "search"
twist.linear.x = 0
angular_speed = self.PID_bearing.get_output(self.bearing)
linear_speed = self.PID_range.get_output(self.distance)
if linear_speed > .2:
linear_speed = .2
if linear_speed < -.2:
linear_speed = -.2
if 1.0 <= self.distance <= 2.0 and 310 <= self.bearing <= 335:
twist.linear.x = 0
self.time = rospy.get_time()
#inter_bearing = theta + pi/4
#inter_distance = (3 * sqrt(2)) / 2
#inter_x = self.x + 1.5
#inter_y = self.y + 1.5
#self.inter_x_neg = self.x + math.cos(self.theta - math.pi/4.0) * ((3.0 * math.sqrt(2.0)) / 2.0)
#self.inter_y_neg = self.y + math.sin(self.theta - math.pi/4.0) * ((3.0 * math.sqrt(2.0)) / 2.0)
#self.inter_x_pos = self.x + math.cos(self.theta + math.pi/4.0) * ((3.0 * math.sqrt(2.0)) / 2.0)
#self.inter_y_pos = self.y + math.sin(self.theta + math.pi/4.0) * ((3.0 * math.sqrt(2.0)) / 2.0)
#self.goalkick_x = self.x + 3.0 * math.cos(self.theta)
#self.goalkick_y = self.y + 3.0 * math.sin(self.theta)
self.ball_x = (self.x + self.distance * math.cos(self.theta))
self.ball_y = (self.y + self.distance * math.sin(self.theta))
#self.distance_goal_to_ball_x = self.ball_x - self.goal_x
#self.distance_goal_to_ball_y = self.ball_y - self.goal_y
#self.theta_goal_ball = numpy.arctan2(self.distance_goal_to_ball_y, self.distance_goal_to_ball_x)
(self.theta_goal_ball, _) = self.get_vector(self.goal_x, self.goal_y, self.ball_x, self.ball_y)
(self.theta_reversed_goal_ball, _) = self.get_vector(self.ball_x, self.ball_y, self.goal_x, self.goal_y)
self.kick_x = self.ball_x + 1.0 * math.cos(self.theta_goal_ball)
self.kick_y = self.ball_y + 1.0 * math.sin(self.theta_goal_ball)
self.inter_x_neg = self.kick_x + (math.sqrt(2.0)) * math.cos(self.theta_reversed_goal_ball - math.pi/4.0)
self.inter_y_neg = self.kick_y + (math.sqrt(2.0)) * math.sin(self.theta_reversed_goal_ball - math.pi/4.0)
self.inter_x_pos = self.kick_x + (math.sqrt(2.0)) * math.cos(self.theta_reversed_goal_ball + math.pi/4.0)
self.inter_y_pos = self.kick_y + (math.sqrt(2.0)) * math.sin(self.theta_reversed_goal_ball + math.pi/4.0)
print "x" , self.x
print " y", self.y
if self.distance >= math.sqrt( (self.kick_x - self.x)**2 + (self.kick_y - self.y)**2):
twist.angular.z = 0.0
twist.linear.x = 0.0
print "to the kick pos"
self.state = "kickPos"
#self.vector_x = self.ball_x - self.goal_x
#self.vector_y = self.ball_y - self.goal_y
#self.unit_x = self.vector_x / math.sqrt(self.vector_x * self.vector_x + self.vector_y * self.vector_y)
#self.unit_y = self.vector_y / math.sqrt(self.vector_x * self.vector_x + self.vector_y * self.vector_y)
#self.kick_x = self.ball_x + 1.5 * (self.unit_x)
#self.kick_y = self.ball_y + 1.5 * (self.unit_y)
distanceSideBall1 = math.sqrt((self.inter_x_neg - self.x)**2 + (self.inter_y_neg - self.y)**2)
distanceSideBall2 = math.sqrt((self.inter_x_pos - self.x)**2 + (self.inter_y_pos - self.y)**2)
if distanceSideBall1 < distanceSideBall2:
self.inter_x = self.inter_x_neg
self.inter_y = self.inter_y_neg
elif distanceSideBall2 < distanceSideBall1:
self.inter_x = self.inter_x_pos
self.inter_y = self.inter_y_pos
if self.state != "kickPos":
self.state = "inter"
twist.angular.z = angular_speed
twist.linear.x = linear_speed
print "forward"
print 'twist'
print self.bearing
print self.distance
print "distance of robot to point" , math.sqrt( (self.kick_x - self.x) * (self.kick_x - self.x) + (self.kick_y - self.y) * (self.kick_y - self.y))
elif self.state == "inter":
#(bearing, distance) = self.get_vector(self.x, self.y, self.inter_x, self.inter_y)
(bearing, distance) = self.get_vector(self.x, self.y, self.inter_x, self.inter_y)
angle = self.calibrate_angle(self.theta - bearing)
angular_speed = self.PID_theta.get_output(angle)
linear_speed = self.PID_rangeInter.get_output(distance)
if linear_speed > .3:
linear_speed = .3
if linear_speed < -.2:
linear_speed = -.2
#if angular_speed > .2:
# angular_speed = .2
#if angular_speed < -.2:
# angular_speed = -.2
twist.linear.x = linear_speed
twist.angular.z = angular_speed
print angular_speed
print linear_speed
print "x1 ", self.x
print "y1 ", self.y
print "x2 ", self.inter_x
print "y2 ", self.inter_y
print "theta ", self.theta
print "Dis ", distance
print "Bear ", bearing
print "PID Value ", self.theta - distance
distanceError = abs(self.PID_range.previous_error)
print "error ", distanceError
if distance <= .2:
twist.linear.x = 0.0
twist.angular.z = 0.0
self.state = "kickPos"
elif self.state == "kickPos":
#(bearing, distance) = self.get_vector(self.x, self.y, self.goalkick_x, self.goalkick_y)
(bearing, distance) = self.get_vector(self.x, self.y, self.kick_x, self.kick_y)
angle = self.calibrate_angle(self.theta - bearing)
angular_speed = self.PID_theta.get_output(angle)
linear_speed = self.PID_rangeInter.get_output(distance)
if linear_speed > .3:
linear_speed = .3
if linear_speed < -.2:
linear_speed = -.2
#if angular_speed > .2:
# angular_speed = .2
twist.linear.x = linear_speed
twist.angular.z = angular_speed
print angular_speed
print linear_speed
print "x1dac ", self.x
print "y1adcd ", self.y
print "x2 ", self.goal_x
print "y2 ", self.goal_y
print "theta ", self.theta
print "Dis ", distance
print "Bear ", bearing
print "PID Value ", self.theta - distance
distanceError = abs(self.PID_range.previous_error)
print "error ", distanceError
if distance <= .1:
twist.linear.x = 0.0
self.time = rospy.get_time()
self.state = "turn"
elif self.state == "turn":
twist.angular.z = -1.3
if (rospy.get_time() - self.time) >= 7 or self.bearing > 0:
twist.angular.z = 0.0
self.state = "lineUp"
print "Stop"
elif self.state == "lineUp":
print "LINEUPPPPPPPP"
angular_speed = self.PID_bearing.get_output(self.bearing)
#linear_speed = self.PID_range.get_output(self.distance)
if linear_speed > .2:
linear_speed = .2
if linear_speed < -.2:
linear_speed = -.2
if .2 > angular_speed > .2:
angular_speed = .2
if 295 <= self.bearing <= 365:
twist.linear.x = 0
self.time = rospy.get_time()
self.state = "kick"
if self.bearing < 0:
self.state = "search"
twist.linear.x = 0
twist.angular.z = angular_speed
#twist.linear.x = linear_speed
print angular_speed
print self.bearing
print self.distance
elif self.state == "kick":
print "ASDASDSUIDHUIASDASDASDASASASAASDASD"
twist.linear.x = 1.3
if rospy.get_time() - self.time >= 3:
twist.linear.x = 0
self.state = "search"
self.pub.publish(twist)
rate.sleep()
class PID:
def __init__(self, goal, kp, ki, kd):
self.goal = goal
self.kp = kp
self.ki = ki
self.kd = kd
self.previous_error = 0.0
self.integral = 0.0
def get_output(self, measurement):
error = self.goal - measurement
self.integral = self.integral + error
derivative = error - self.previous_error
output = self.kp*error + self.ki*self.integral + self.kd*derivative
self.previous_error = error
return output
rospy.init_node('robot_puppy')
puppy = Puppy()
puppy.run()
<file_sep>#!/usr/bin/env python
import rospy
from geometry_msgs.msg import Twist
from kobuki_msgs.msg import BumperEvent
class Robot:
def __init__(self):
# Define an instance variable (self.pub, say) to hold the rospy.Publisher.
# It should publish Twist messages on the '/mobile_base/commands/velocity' topic.
self.pub = rospy.Publisher("/mobile_base/commands/velocity", Twist, queue_size=10)
# Subscribe to the BumperEvent messages that the robot driver publishes
# on the '/mobile_base/events/bumper' topic.
# It should identify the method to be called when a message arrives: self.bumped
rospy.Subscriber("/mobile_base/events/bumper", BumperEvent, self.bumped)
# Set up a variable to hold the robot's state (self.state, perhaps?)
# and a variable to keep track of the time of the last state change
self.state = "forward"
def bumped(self, msg):
# If the BumperEvent message says that we just hit something,
# and we are currently in the "go forward" state, change
# to the "go backward" state. Make a note of the time.
self.state = "backward"
self.time = rospy.get_time()
def run(self):
rate = rospy.Rate(10)
twist = Twist()
while not rospy.is_shutdown():
if self.state == "forward":
# Set twist.linear.x to a positive value <= 0.2
twist.linear.x = .2
twist.angular.z = 0
# Publish twist
self.pub.publish(twist)
elif self.state == "backward":
# Set twist.linear.x to a negative value >= -0.2
twist.linear.x = -.2
# Publish twist
self.pub.publish(twist)
# If enough time has elapsed, change to the "turn" state
if rospy.get_time() - self.time >= 2:
self.state = "turn"
self.time = rospy.get_time()
elif self.state == "turn":
# Set twist.angular.z to a nonzero value
twist.linear.x = 0
twist.angular.z = .5
# Publish twist
self.pub.publish(twist)
# If enough time has elapsed, change to the "go forward" state
if rospy.get_time() - self.time >= 2:
self.state = "forward"
rate.sleep()
rospy.init_node('prison_break')
robot = Robot()
robot.run()
<file_sep>#RobotSoccer
This repository contains code that controls a Roomba with a Kinect camera to play soccer.
I've also included code that was made in the process to test out certain features.
This was a class project.
The code was written in Python and the communcations to the robots were handled with ROS.
The "code" folder is where all of the actual python scripts for manipulating the robots. It should contain:
PrisonBreak.py
, BallFinder.py
, RobotPuppy.py
, Dodgeball.py
, RobotSoccer.py
RobotSoccer.py and BallFinder.py are both the finished product. They both need to be ran in order for the Roomba to play soccer.
1. PrisonBreak.py is the first code that I wrote. It basically has the Roomba moving straight until it hits an object. Then its bump sensors will tell the robot to back up then go forward and turn. This was name PrisonBreak because eventually it will bump and go forward until it finds the exit of the room.
2. BallFinder.py is used to find the ball with its camera. The ball was yellow, so this code checks an array of pixels in its camera feed to see which shade of yellow fits with the ball. This probably would've been better to use edge dectection or shape dectection, but finding color was the quick and dirty way.
3. RobotPuppy.py is used to have the Roomba come up to the ball and kick it. RobotPuppy.py would initially go into search mode (it spins in circles) until it finds the ball using BallFinder.py. Then the robot approaches and kicks.
4. Dodgeball.py is used to go around the ball and then kick it. This also goes into search mode and does everything RobotPuppy.py does except for kicking it. Instead, it goes around the ball then kicks it.
5. RobotSoccer.py combines elements from PrisonBreak.py and Dodgeball.py. RobotSoccer.py finds the goal, which is an AR tag. Then it goes into search mode(spins in circles) until BallFinder.py finds the ball. RobotSoccer.py then approaches, lines up, finds the shortest path around the ball, goes to that point, and lines up again and kicks the ball towards the AR tag.
In the end, I played soccer with other classmates and ended up in the finals. Sadly, I didn't win. I learned a lot though!
Also, I noticed that the comments in the code get sparser as development continued (PrisonBreak.py to RobotSoccer.py). This is a mistake on my part because I didn't think I'll be uploading it to GitHub. But if you read PrisonBreak.py to RobotSoccer.py you can see a lot of ideas are repeated, so code in RobotSoccer.py could've been already commented in RobotPuppy.py. Anyways, I know it should've been commented better. If you have any questions I'll be glad to answer them to make up for this mistake!
catkin_ws.zip was the actual ROS enviroment I worked in. The actual code that does everything important is in the "code" folder!
<file_sep>#!/usr/bin/env python
import roslib
roslib.load_manifest('beginner_tutorials')
import rospy
import math
import cv2
from sensor_msgs.msg import Image, LaserScan
from beginner_tutorials.msg import BallLocation
from cv_bridge import CvBridge, CvBridgeError
class Detector:
def __init__(self):
# The image publisher is for debugging and figuring out
# good color values to use for ball detection
self.impub = rospy.Publisher('/ball_detector/image', Image, queue_size=1)
self.locpub = rospy.Publisher('/ball_detector/ball_location', BallLocation,
queue_size=1)
self.bridge = CvBridge()
self.bearing = -1
self.distance = -1
rospy.Subscriber('/camera/rgb/image_raw', Image, self.handle_image, queue_size=1 , buff_size=2**24)
rospy.Subscriber('/scan', LaserScan, self.handle_scan)
def handle_image(self, msg):
try:
image = self.bridge.imgmsg_to_cv2(msg, "bgr8")
except CvBridgeError, e:
print e
# Find the average column of the bright yellow pixels
# and store as self.bearing. Store -1 if there are no
# bright yellow pixels in the image.
# Feel free to change the values in the image variable
# in order to see what is going on
(row, col, chan) = image.shape
lB = 20
hB = 70
lG = 120
hG = 250
lR = 120
hR = 250
colSum = 0
numOfYel = 0
for i in range(0, row, 3):
for j in range(0,col, 3):
if lB < image[i, j, 0] < hB and lG < image[i, j, 1] < hG and lR < image[i,j,2] < hR:
image[i,j,0] = 0
image[i,j,1] = 0
image[i,j,2] = 255
colSum = j + colSum
numOfYel = numOfYel + 1
if numOfYel >= 75: #***might have to adjust for soccer tournament
self.bearing = colSum/numOfYel
elif numOfYel < 75:
self.bearing = -1
print numOfYel
# Here we publish the modified image; it can be
# examined by running image_view
self.impub.publish(self.bridge.cv2_to_imgmsg(image, "bgr8"))
def handle_scan(self, msg):
# If the bearing is valid, store the corresponding range
# in self.distance. Decide what to do if range is NaN.
if self.bearing > 0:
self.distance = msg.ranges[self.bearing]
if math.isnan(self.distance):
print 'Ball not in range'
else:
print 'Bearing: ', self.bearing
print 'Range: ', self.distance
if self.bearing < 0:
self.distance = -1
print 'No ball found'
def start(self):
rate = rospy.Rate(10)
while not rospy.is_shutdown():
location = BallLocation()
location.bearing = self.bearing
location.distance = self.distance
self.locpub.publish(location)
rate.sleep()
rospy.init_node('ball_detector')
detector = Detector()
detector.start()
<file_sep>#!/usr/bin/env python
import rospy
from geometry_msgs.msg import Twist
from beginner_tutorials.msg import BallLocation
from tf.transformations import euler_from_quaternion
from nav_msgs.msg import Odometry
import math
class Puppy:
def __init__(self):
self.pub = rospy.Publisher("/mobile_base/commands/velocity", Twist, queue_size=10)
rospy.Subscriber("/ball_detector/ball_location",BallLocation, self.ballLocate)
rospy.Subscriber('/odom', Odometry, self.handle_pose)
self.state = "search"
self.PID_bearing = PID(320.0,.002,0.0,0.0)
self.PID_range = PID(1.5,-.4, 0.0, 0.0)
self.PID_theta = PID(0.0, 0.75, 0.0, 0.0)
self.PID_rangeInter = PID(0.0, -.9, 0.0, 0.0)
self.bearing = -1.0
self.distance = -1.0
self.inter_x = 0.0
self.inter_y = 0.0
self.x = 0.0
self.y = 0.0
self.theta = 0.0
def handle_pose(self, msg):
self.x = msg.pose.pose.position.x
self.y = msg.pose.pose.position.y
q = (msg.pose.pose.orientation.x, msg.pose.pose.orientation.y,
msg.pose.pose.orientation.z, msg.pose.pose.orientation.w)
(_, _, self.theta) = euler_from_quaternion(q)
def get_vector(self, from_x, from_y, to_x, to_y):
bearing = math.atan2(to_y - from_y, to_x - from_x)
distance = math.sqrt((from_x - to_x)**2 + (from_y - to_y)**2)
return (bearing, distance)
def calibrate_angle(self, angle):
out_angle = angle
while out_angle < -math.pi:
out_angle += math.pi * 2
while out_angle > math.pi:
out_angle -= math.pi * 2
return out_angle
def ballLocate(self,msg):
self.bearing = msg.bearing
self.distance = msg.distance
#print self.bearing
def run(self):
rate = rospy.Rate(10)
twist = Twist()
while not rospy.is_shutdown():
if math.isnan(self.distance):
self.distance = -1
if self.state == "search":
twist.angular.z = 0.25
twist.linear.x = 0
if self.bearing > 0 and self.distance > 0:
print "Approach"
print self.bearing
self.state = "approach"
else:
print "searching..."
elif self.state == "approach":
if self.bearing < 0:
self.state = "search"
twist.linear.x = 0
angular_speed = self.PID_bearing.get_output(self.bearing)
linear_speed = self.PID_range.get_output(self.distance)
if linear_speed > .2:
linear_speed = .2
if linear_speed < -.2:
linear_speed = -.2
if 1.4 <= self.distance <= 1.8 and 310 <= self.bearing <= 325:
twist.linear.x = 0
self.time = rospy.get_time()
#inter_bearing = theta + pi/4
#inter_distance = (3 * sqrt(2)) / 2
#inter_x = self.x + 1.5
#inter_y = self.y + 1.5
self.inter_x = self.x + math.cos(self.theta + math.pi/4.0) * ((3.0 * math.sqrt(2.0)) / 2.0)
self.inter_y = self.y + math.sin(self.theta + math.pi/4.0) * ((3.0 * math.sqrt(2.0)) / 2.0)
self.goal_x = self.x + 3.0 * math.cos(self.theta)
self.goal_y = self.y + 3.0 * math.sin(self.theta)
self.state = "inter"
twist.angular.z = angular_speed
twist.linear.x = linear_speed
print "forward"
print 'twist'
print self.bearing
print self.distance
elif self.state == "inter":
(bearing, distance) = self.get_vector(self.x, self.y, self.inter_x, self.inter_y)
angle = self.calibrate_angle(self.theta - bearing)
angular_speed = self.PID_theta.get_output(angle)
linear_speed = self.PID_rangeInter.get_output(distance)
if linear_speed > .2:
linear_speed = .2
#if linear_speed < .2:
# linear_speed = .2
if angular_speed > .2:
angular_speed = .2
if angular_speed < .2:
angular_speed = .2
twist.linear.x = linear_speed
twist.angular.z = angular_speed
print angular_speed
print linear_speed
print "x1 ", self.x
print "y1 ", self.y
print "x2 ", self.inter_x
print "y2 ", self.inter_y
print "theta ", self.theta
print "Dis ", distance
print "Bear ", bearing
print "PID Value ", self.theta - distance
distanceError = abs(self.PID_range.previous_error)
print "error ", distanceError
if distance <= .5:
twist.linear.x = 0.0
twist.angular.z = 0.0
self.state = "kickPos"
print "Stop"
elif self.state == "kickPos":
(bearing, distance) = self.get_vector(self.x, self.y, self.goal_x, self.goal_y)
angular_speed = self.PID_theta.get_output(self.theta - bearing)
linear_speed = self.PID_rangeInter.get_output(distance)
if linear_speed > .2:
linear_speed = .2
#if linear_speed < -.2:
# linear_speed = -.2
#if angular_speed > .2:
# angular_speed = .2
twist.linear.x = linear_speed
twist.angular.z = angular_speed
print angular_speed
print linear_speed
print "x1dac ", self.x
print "y1adcd ", self.y
print "x2 ", self.goal_x
print "y2 ", self.goal_y
print "theta ", self.theta
print "Dis ", distance
print "Bear ", bearing
print "PID Value ", self.theta - distance
distanceError = abs(self.PID_range.previous_error)
print "error ", distanceError
if distance <= .15:
twist.linear.x = 0.0
self.time = rospy.get_time()
self.state = "turn"
elif self.state == "turn":
twist.angular.z = -1.0
while (rospy.get_time() - self.time) <= 7:
twist.angular.z = 0.0
self.state = "lineUp"
print "Stop"
elif self.state == "lineUp":
print "LINEUPPPPPPPP"
angular_speed = self.PID_bearing.get_output(self.bearing)
#linear_speed = self.PID_range.get_output(self.distance)
if linear_speed > .2:
linear_speed = .2
if linear_speed < -.2:
linear_speed = -.2
#if self.bearing < 0:
# self.state = "search"
# twist.linear.x = 0
if 305 <= self.bearing <= 340:
twist.linear.x = 0
self.time = rospy.get_time()
self.state = "kick"
twist.angular.z = angular_speed
#twist.linear.x = linear_speed
print angular_speed
print self.bearing
print self.distance
elif self.state == "kick":
print "ASDASDSUIDHUIASDASDASDASASASAASDASD"
twist.linear.x = 1
if rospy.get_time() - self.time >= 2.5:
twist.linear.x = 0
self.state = "search"
self.pub.publish(twist)
rate.sleep()
class PID:
def __init__(self, goal, kp, ki, kd):
self.goal = goal
self.kp = kp
self.ki = ki
self.kd = kd
self.previous_error = 0.0
self.integral = 0.0
def get_output(self, measurement):
error = self.goal - measurement
self.integral = self.integral + error
derivative = error - self.previous_error
output = self.kp*error + self.ki*self.integral + self.kd*derivative
self.previous_error = error
return output
rospy.init_node('robot_puppy')
puppy = Puppy()
puppy.run()
<file_sep>#!/usr/bin/env python
import rospy
from geometry_msgs.msg import Twist
from beginner_tutorials.msg import BallLocation
from tf.transformations import euler_from_quaternion
from nav_msgs.msg import Odometry
import math
class Puppy:
def __init__(self):
self.pub = rospy.Publisher("/mobile_base/commands/velocity", Twist, queue_size=10)
rospy.Subscriber("/ball_detector/ball_location",BallLocation, self.ballLocate)
rospy.Subscriber('/odom', Odometry, self.handle_pose)
self.state = "search"
self.PID_bearing = PID(320.0,.002,0.0,0.0)
self.PID_range = PID(1.5,-.4,0.0,0.0)
self.bearing = -1
self.distance = -1
def handle_pose(self, msg):
self.x = msg.pose.pose.position.x
self.y = msg.pose.pose.position.y
q = (msg.pose.pose.orientation.x, msg.pose.pose.orientation.y,
msg.pose.pose.orientation.z, msg.pose.pose.orientation.w)
(_, _, self.theta) = euler_from_quaternion(q)
def ballLocate(self,msg):
self.bearing = msg.bearing
self.distance = msg.distance
#print self.bearing
def run(self):
rate = rospy.Rate(10)
twist = Twist()
while not rospy.is_shutdown():
if math.isnan(self.distance):
self.distance = -1
if self.state == "search":
twist.angular.z = 0.25
twist.linear.x = 0
if self.bearing > 0 and self.distance > 0:
print "Approach"
print self.bearing
self.state = "approach"
else:
print "searching..."
elif self.state == "approach":
if self.bearing < 0:
self.state = "search"
twist.linear.x = 0
angular_speed = self.PID_bearing.get_output(self.bearing)
linear_speed = self.PID_range.get_output(self.distance)
if linear_speed > .2:
linear_speed = .2
if linear_speed < -.2:
linear_speed = -.2
if 1.4 <= self.distance <= 1.8 and 310 <= self.bearing <= 325:
twist.linear.x = 0
self.time = rospy.get_time()
self.state = "kick"
twist.angular.z = angular_speed
twist.linear.x = linear_speed
print "forward"
print 'twist'
print self.bearing
print self.distance
elif self.state == "kick":
twist.linear.x = 1
if rospy.get_time() - self.time >= 2.2:
twist.linear.x = 0
self.state = "search"
self.pub.publish(twist)
rate.sleep()
class PID:
def __init__(self, goal, kp, ki, kd):
self.goal = goal
self.kp = kp
self.ki = ki
self.kd = kd
self.previous_error = 0.0
self.integral = 0.0
def get_output(self, measurement):
error = self.goal - measurement
self.integral = self.integral + error
derivative = error - self.previous_error
output = self.kp*error + self.ki*self.integral + self.kd*derivative
self.previous_error = error
return output
rospy.init_node('robot_puppy')
puppy = Puppy()
puppy.run()
| d15accddc78437da844c29d20825e0d6bf3d4842 | [
"Markdown",
"Python"
] | 6 | Python | GrayTurtle/RobotSoccer | 94709da0e68adbdede1018dd5455f5833728e9eb | 804d0220d547f60906e8a32690495d2d9cb21e7a |
refs/heads/master | <file_sep># Load/Install Packages
if (!require("tidyverse")) {
install.packages("tidyverse", dependencies = TRUE)
library(tidyverse)
}
if (!require("lubridate")) {
install.packages("lubridate", dependencies = TRUE)
library(lubridate)
}
if (!require("scales")) {
install.packages("scales", dependencies = TRUE)
library(scales)
}
if (!require("Cairo")) {
install.packages("Cairo", dependencies = TRUE)
library(Cairo)
}
# Alternatively you can put all this in a CSV file with the same columns and
# then load it with read_csv()
# tasks <- read_csv("path/to/the/file")
tasks <- tribble(
~Start, ~End, ~Project, ~Task,
"2015-11-15", "2015-11-20", "Data collection", "Use IssueCrawler to expand lists",
"2015-11-21", "2015-11-25", "Data collection", "Complete INGO databases",
"2015-11-16", "2015-12-15", "Data collection", "Find all INGO legislation",
"2015-12-15", "2015-12-25", "Data collection", "Code INGO restrictions",
"2015-11-15", "2015-11-25", "Data collection", "Develop general INGO survey",
"2015-11-25", "2015-12-31", "Data collection", "Administer survey",
"2015-12-25", "2015-12-31", "Data analysis", "Model stability and restrictions",
"2016-01-01", "2016-02-02", "Writing", "Chapter on formal restrictions (H1)",
"2016-01-15", "2016-02-15", "Writing", "Paper or chapter on survey results (H3 and H4)",
"2016-03-16", "2016-03-19", "Writing", "ISA conference in Atlanta",
"2016-02-01", "2016-03-01", "Data collection", "Historical INGO restrictions in China",
"2016-02-01", "2016-03-01", "Data collection", "Historical INGO restrictions in Egypt",
"2016-05-01", "2016-06-01", "Data collection", "Fieldwork in London and Beijing",
"2016-03-01", "2016-04-01", "Data analysis", "Analyze restrictions in China and Egypt",
"2016-04-01", "2016-06-01", "Data analysis", "Analyze INGO activities",
"2016-04-01", "2016-06-15", "Writing", "Chapter on application of restrictions (H2)",
"2016-05-01", "2016-07-01", "Writing", "Chapter on INGO ideal points (H3)",
"2016-05-01", "2016-07-01", "Writing", "Chapter on INGO flexibility (H4)",
"2016-07-01", "2016-08-01", "Writing", "Theory",
"2016-08-01", "2016-09-15", "Writing", "Conclusion",
"2016-08-01", "2016-09-15", "Writing", "Introduction"
)
# Convert data to long for ggplot
tasks.long <- tasks %>%
mutate(Start = ymd(Start),
End = ymd(End)) %>%
gather(date.type, task.date, -c(Project, Task)) %>%
arrange(date.type, task.date) %>%
mutate(Task = factor(Task, levels=rev(unique(Task)), ordered=TRUE))
# Custom theme for making a clean Gantt chart
theme_gantt <- function(base_size=11, base_family="Arial") {
ret <- theme_bw(base_size, base_family) %+replace%
theme(panel.background = element_rect(fill="#ffffff", colour=NA),
axis.title.x=element_text(vjust=-0.2), axis.title.y=element_text(vjust=1.5),
title=element_text(vjust=1.2, family="Arial"),
panel.border = element_blank(), axis.line=element_blank(),
panel.grid.minor=element_blank(),
panel.grid.major.y = element_blank(),
panel.grid.major.x = element_line(size=0.5, colour="grey80"),
axis.ticks=element_blank(),
legend.position="bottom",
axis.title=element_text(size=rel(0.8), family="Arial"),
strip.text=element_text(size=rel(1), family="Arial"),
strip.background=element_rect(fill="#ffffff", colour=NA),
panel.spacing.y=unit(1.5, "lines"),
legend.key = element_blank())
ret
}
# Calculate where to put the dotted lines that show up every three entries
x.breaks <- seq(length(tasks$Task) + 0.5 - 3, 0, by=-3)
# Build plot
timeline <- ggplot(tasks.long, aes(x=Task, y=task.date, colour=Project)) +
geom_line(size=6) +
geom_vline(xintercept=x.breaks, colour="grey80", linetype="dotted") +
guides(colour=guide_legend(title=NULL)) +
labs(x=NULL, y=NULL) + coord_flip() +
scale_y_date(date_breaks="2 months", labels=date_format("%b ‘%y")) +
theme_gantt() + theme(axis.text.x=element_text(angle=45, hjust=1))
timeline
# # Save plot as PDF with embedded fonts (the secret is "device=cairo_pdf")
# ggsave(timeline, filename="~/Desktop/timeline.pdf",
# width=6.5, height=6.5, units="in", device=cairo_pdf)
#
# # Save plot as high resolution PNG (the secret is 'type="cairo", dpi=300')
# ggsave(timeline, filename="~/Desktop/timeline.png",
# width=6.5, height=6.5, units="in", type="cairo", dpi=300)<file_sep>import pandas as pd
import numpy as np
titanic_train = pd.read_csv("Titanic_Dataset/test.csv")
<file_sep>import math
# ===== Generate the Full SQL Query ==============
# This section handles is a wrapper for the
# other functions making one function that will
# handle the creation of the entire SQL script.
# ------------------------------------------------
#Todo: Figure out why this doesn't work in the main script
def to_sql(TABLE_NAME, input_data_frame):
sql_statement = sql_create(TABLE_NAME, input_data_frame, "create")
sql_statement += sql_create(TABLE_NAME, input_data_frame, "insert")
return sql_statement
# ===== Generate the SQL Create Table Command ====
# This section handles the functions that build
# the start of either the CREATE TABLE section
# OR the INSERT INTO section of the SQL script.
# ------------------------------------------------
def sql_create(TABLE_NAME, input_data_frame, create_insert):
if create_insert == "create":
create_statement = '''CREATE TABLE IF NOT EXISTS {} ('''.format(TABLE_NAME)
create_statement += dtype_loop(input_data_frame)
return create_statement
elif create_insert == "insert":
create_statement = '''INSERT INTO {} VALUES '''.format(TABLE_NAME)
create_statement += insert_statement_loop(input_data_frame)
return create_statement
else:
return print("Error: Select either 'create' or 'insert' as option")
# ===== Generate the SQL Create Table Command ====
# This section handles the functions that build
# the CREATE TABLE section of the SQL script.
# ------------------------------------------------
def col_type(col_dtype):
if col_dtype == "int64":
return "INT"
if col_dtype == "float64":
return "FLOAT"
elif col_dtype == "object":
return "VARCHAR(255) CHARACTER SET utf8"
def dtype_loop(input_data_frame):
dtype_list = ''
for i in range(len(input_data_frame.columns)):
if i < len(input_data_frame.columns) - 1: # python indexing starts at 0
dtype_list += str('''`{}` {},'''.format(input_data_frame.columns[i],
col_type(input_data_frame.dtypes[i])))
if i == len(input_data_frame.columns) - 1: # python indexing starts at 0
dtype_list += str('''`{}` {} );'''.format(input_data_frame.columns[i],
col_type(input_data_frame.dtypes[i])))
return dtype_list
# ===== Generate the SQL insert data Command =====
# This section handles the functions that build
# the INSERT INTO TABLE section of the SQL
# script.
# todo: figure out a method to make 1Y keys
# ------------------------------------------------
def create_insert_row(input_data_frame, index):
statement = "("
for i in range(input_data_frame.shape[1]):
DF_ROW = input_data_frame.values[index, i]
if i < input_data_frame.shape[1] - 1:
try:
if math.isnan(DF_ROW) == True:
tmp = '''NULL, '''
statement += tmp
else:
tmp = ('''{}, '''.format(str(DF_ROW)))
statement += tmp
except:
tmp = ('''"{}", '''.format(str(DF_ROW)))
statement += tmp
if i == input_data_frame.shape[1] - 1:
try:
if math.isnan(DF_ROW) == True:
tmp = "NULL)"
statement += tmp
else:
tmp = ('''"{}")'''.format(str(DF_ROW)))
statement += tmp
except:
tmp = ('''"{}")'''.format(str(DF_ROW)))
statement += tmp
return statement
def insert_statement_loop(input_data_frame):
insert_statement = ""
for j in range(input_data_frame.shape[0]):
insert_statement += create_insert_row(input_data_frame, j)
if j < input_data_frame.shape[0] - 1:
insert_statement += ", "
if j == input_data_frame.shape[0] - 1:
insert_statement += ";"
return insert_statement<file_sep>library(tidyverse)
####### SECTION 7.2 ######
ggplot(data = diamonds) +
geom_bar(mapping = aes(x = cut))
ggplot(data = diamonds) +
geom_histogram(mapping = aes(x = carat), binwidth = 0.5)
diamonds %>%
count(cut_width(carat, 0.5)) #makes a table of the above histogram
smaller <- diamonds %>%
filter(carat < 3)
ggplot(data = smaller, mapping = aes(x = carat)) +
geom_histogram(binwidth = 0.1)
ggplot(data = smaller, mapping = aes(x = carat, colour = cut)) +
geom_freqpoly(binwidth = 0.1)
###### SECTION 7.3.2 #######
ggplot(data = smaller, mapping = aes(x = carat)) +
geom_histogram(binwidth = 0.01)
ggplot(diamonds) +
geom_histogram(mapping = aes(x = y), binwidth = 0.5)
ggplot(diamonds) +
geom_histogram(mapping = aes(x = y), binwidth = 0.5) +
coord_cartesian(ylim = c(0, 50))
unusual <- diamonds %>%
filter(y < 3 | y > 20) %>%
select(price, x, y, z) %>%
arrange(y)
unusual
##### SECTION 7.3.4 Questions ####
# Question 1
ggplot(data = diamonds) +
geom_freqpoly(mapping = aes(x = x),binwidth = 0.1, colour = "red") +
geom_freqpoly(mapping = aes(x = y),binwidth = 0.1, colour = "blue") +
geom_freqpoly(mapping = aes(x = z),binwidth = 0.1, colour = "green") +
coord_cartesian(xlim = c(1, 10))
#length and depth (x + y) are the same due to the typical way a diamond is looked at. Facing its broadest side
#diamonds are typically cut so that they are even.
#Question 2
ggplot(data = diamonds, mapping = aes(x = price, fill = cut)) +
geom_histogram(binwidth = 200)
pricing <- diamonds %>%
group_by(cut_width(price, 100), cut) %>%
summarise(
count = n() #why does noone pay $1500 for a diamond
) %>%
separate(cut, count)
#Question 3
diamonds %>%
filter(carat == 0.99) %>%
count(carat) # 23 diamonds have carat of 0.99
diamonds %>%
filter(carat == 1) %>%
count(carat) # 1558 diamonds have carat of 1
<file_sep>def digit_sum(n):
numbers = []
n = str(n)
for char in n:
numbers.append(int(char))
numsum = sum(list(numbers))
return numsum
print digit_sum(1234)<file_sep>## Install/ Load Packages ##
## **NOTE: The following code installs/loads packages on the users computer** ##
requiredPackages <- c("tidyverse", "MASS", "randomForest", "caTools", "pROC")
ipak <- function(pkg){
new.pkg <- pkg[!(pkg %in% installed.packages()[, "Package"])]
if (length(new.pkg))
install.packages(new.pkg, dependencies = TRUE)
sapply(pkg, require, character.only = TRUE)
}
ipak(requiredPackages)
# Set seed for RF normalisation
set.seed(123)
DataFrame <- birthwt
str(DataFrame)
dim(DataFrame)
summary(DataFrame)
#Looks at the number of unique variables in each category
apply(DataFrame,2,function(x) length(unique(x)))
hist(DataFrame$age)
#Need to convert categorical variables >> Convert to factor!! (Else they are treated as numerics)
cols <- c("low", "race", "smoke", "ptl", "ht", "ui", "ftv")
for (i in cols){
DataFrame[,i] = as.factor(DataFrame[,i])
}
str(DataFrame)
# splits database into a training and a validation database (70% is training)
ind= sample.split(Y= DataFrame$low, SplitRatio = 0.7)
trainDF <-DataFrame[ind,]
testDF <- DataFrame[!ind,]
# generate the random forest model
modelRandom <- randomForest(low~.,data = trainDF, mtry=3, ntree=20) #. means use all other variables to predict low
modelRandom #OOB= 0.76% (misclassification rate)
# Which variables are important
importance(modelRandom)
varImpPlot(modelRandom) #graphically shows which variables are important to the model!
#Predictions
PredictionsWithClass <- predict(modelRandom, testDF, type ='class')
t <- table(predictions= PredictionsWithClass, actual=testDF$low)
t
#Accuracy
sum(diag(t)/sum(t)) #0.98
## Plotting ROC Curve and calculating AUC
PredictionsWithProbs <- predict(modelRandom, testDF, type = 'prob')
PredictionsWithProbs
auc <- auc(testDF$low, PredictionsWithProbs[,2])
auc
plot(roc(testDF$low, PredictionsWithProbs[,2]))
# Find the best mtry
bestmtry <- tuneRF(trainDF, trainDF$low, ntreeTry = 20, stepFactor = 1.5, improve = 0.01, trace = T, plot = T)
bestmtry
<file_sep>##########################
# Human in silico restriction digest.
#
# Script to process Mse1 restriction digest profile for the human genome.
# Then look to alter this through addition of secondary CH3-specific enzymes.
##########################
##########################
# Script is ammended from Github user kalyankpy.
# https://gist.github.com/kalyankpy/a65d5f8824f00abe04da#file-genomic_digestion-r
##########################
### Load the needed libraries
# plyr and reshape2 are needed for manipulating the data format
library(Biostrings) #Required for pattern ID
library(BSgenome.Hsapiens.UCSC.hg19) #Human Genome hg19 (To be updated)
library(plyr)
library(ggplot2)
library(reshape2)
library(scales)
library(stringr)
mdf=data.frame();
for (i in seq_along(Hsapiens)){
print(paste("Processing ",seqnames(Hsapiens)[i], sep=""))
m<-matchPattern("TTAA", Hsapiens[[i]])
starts<-start(gaps(m))
ends<-end(gaps(m))
temp_df<-data.frame(start=starts,end=ends,chr=seqnames(Hsapiens)[i]) #actually end = ends
temp_df$start<-replace(temp_df$start, temp_df$start == -2, 1) #replaces a RE site at beginning of Chr to 0 rather than -3 (due to the starts-4 above)
temp_df<-temp_df[c("chr","start","end")]
mdf<-rbind(mdf,temp_df) #nice database merge
}
DNAseq <- str_sub(Hsapiens$chr21, starts, ends)
mdf$DNAseq <- DNAseq
No.MspI.site <- str_count(mdf$DNAseq, 'CCGG')
mdf$MspIcount <- as.numeric(No.MspI.site)
mdf$width=(mdf$end-mdf$start) +1
MseI.df <- mdf
MspI.pos <- subset(mdf,mdf$MspIcount > 0)
MspI.neg <- subset(mdf,mdf$MspIcount == 0)
#Second Digestion with MspI (same site as HpaII- Methyl specific enzyme)
#MspIsite <- str_locate_all(mdf$DNAseq, "CCGG")
MspI.dig=DataFrame()
# a = list()
for(i in 1:nrow(MspI.pos)){
m<-matchPattern("CCGG", MspI.pos$DNAseq[i])
starts <- start(gaps(m))
ends <- end(gaps(m))
temp_df <- data.frame(start = starts, end = ends, FragNo = i, chr=chr)
MspI.dig <- rbind(MspI.dig, temp_df)
}
DNAseq <- str_sub(MspI.pos$DNAseq[MspI.dig$FragNo], MspI.dig$start, MspI.dig$end)
MspI.dig$DNAseq <- DNAseq
MspI.dig$width =(MspI.dig$end-MspI.dig$start) +1
MspI.digest<-data.frame(Chr=MspI.dig$chr, width=MspI.dig$width ,DNAseq=MspI.dig$DNAseq)
MseI.Negative.fragments <-data.frame(Chr=MspI.neg$chr, width=MspI.neg$width , DNAseq=MspI.neg$DNAseq)
MspI.total.digest <- rbind(MspI.digest, MseI.Negative.fragments)
# Visualise Data
Mse.trim <- MseI.df[MseI.df$width > 5 & MseI.df$width < 601, ]
counts.Mse <- ddply(Mse.trim, .(width), nrow)
Msp.trim <- MspI.total.digest[MspI.total.digest$width > 5 & MspI.total.digest$width < 601, ]
counts.Msp <- ddply(Msp.trim, .(width), nrow)
Changes=data.frame();
Changes <- counts.Msp
Changes$V1 = Changes$V1 - counts.Mse$V1
p <- ggplot(counts.Msp, aes(x = width)) +
geom_line(aes(y = counts.Mse$V1, colour = "MseI Digest")) +
geom_line(aes(y = counts.Msp$V1, colour = "MseI & MspI")) +
geom_line(aes(y = Changes$V1, colour = "Change in Fragments"))
p + scale_y_continuous()
#p + scale_y_continuous(trans = log2_trans())
<file_sep>library(shiny)
ui <- fluidPage(
#### SLIDING INPUT: ================================
# https://shiny.rstudio.com/reference/shiny/1.0.5/
#
# https://shiny.rstudio.com/reference/shiny/1.0.5/sliderInput.html
sliderInput(inputId = "num", #the name given to this feature on the webpage (it is callable)
label = "Choose a number", #text to display with feature
value = 25, min =1, max = 100)
)
server <- function(input, output) {}
shinyApp(ui = ui, server = server)<file_sep>def purify(num_list):
pure_list = []
for i in range(len(num_list)):
if num_list[i] % 2 == 0:
pure_list.append(num_list[i])
return pure_list<file_sep>def censor(text,word):
text = text.split()
print text[1]
for i in range(len(text)):
if text[i] == word:
text[i] = "*" * len(text[i])
censored_text = " ".join(text)
return censored_text
print censor("this hack is wack hack", "hack")<file_sep>##### Title #####
## Import Illumina 450k Array data from Smokers, Non-Smokers and COPD Patients ##
## <NAME> ##
## 31 July 2018 ##
## Version 0.1 ##
## References:
## https://www.ncbi.nlm.nih.gov/pmc/articles/PMC5391602/
## Dataset: https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSE92511
## Requirements:
## Illumina 450k manifest (http://emea.support.illumina.com/downloads/infinium_humanmethylation450_product_files.html)
##### Prerequisites #####
## Loading/ Installing Packages
requiredPackages <- c("tidyverse", "RColorBrewer", "minfi", "rvest")
ipak <- function(pkg){
new.pkg <- pkg[!(pkg %in% installed.packages()[, "Package"])]
if (length(new.pkg))
install.packages(new.pkg, dependencies = TRUE)
sapply(pkg, require, character.only = TRUE)
}
ipak(requiredPackages)
rm(requiredPackages)
source("https://bioconductor.org/biocLite.R")
biocLite("minfi")
biocLite("GenomicRanges")
library(minfi)
library(GenomicRanges)
#
# # Import Data
# Smoking_Meth.Raw <- as.matrix(read.delim("GSE92511_unnormalized_Methylation_data.txt", sep = "\t"))
# NS1.RGchan <- RGChannelSet(Green = new(Smoking_Meth.Raw[,"NS.1.Signal_A"]),
# Red = new(Smoking_Meth.Raw[,"NS.1.Signal_B"]),
# annotation = new(Smoking_Meth.Raw[,"TargetID"]))
## Scrape Beta Values from Webpage
## Update later to a function with a loop as only GSM and ID are changing
## Use https://www.r-bloggers.com/creating-a-gilmore-girls-character-network-with-r/ for reference
## IF ERROR OCCURS ABOUT LAZY-LOAD CORRUPTION, RESTART R ##
##### Non Smokers Data Import #####
#NS_1
url <- readLines(
"https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?view=data&acc=GSM2430978&id=84862&db=GeoDb_blob148")
NS_1 <- as.data.frame(url)
NS_1 <- separate(NS_1, 1, into = c("ID", "B_value", "P_value"), sep = "\t")
#NS_2
url <- readLines(
"https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?view=data&acc=GSM2430979&id=84863&db=GeoDb_blob148")
NS_2 <- as.data.frame(url)
NS_2 <- separate(NS_2, 1, into = c("ID", "B_value", "P_value"), sep = "\t")
#NS_3
url <- readLines(
"https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?view=data&acc=GSM2430980&id=84864&db=GeoDb_blob148")
NS_3 <- as.data.frame(url)
NS_3 <- separate(NS_3, 1, into = c("ID", "B_value", "P_value"), sep = "\t")
#NS_4
url <- readLines(
"https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?view=data&acc=GSM2430981&id=84865&db=GeoDb_blob148")
NS_4 <- as.data.frame(url)
NS_4 <- separate(NS_4, 1, into = c("ID", "B_value", "P_value"), sep = "\t")
#NS_5
url <- readLines(
"https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?view=data&acc=GSM2430982&id=84866&db=GeoDb_blob148")
NS_5 <- as.data.frame(url)
NS_5 <- separate(NS_5, 1, into = c("ID", "B_value", "P_value"), sep = "\t")
#NS_6
url <- readLines(
"https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?view=data&acc=GSM2430983&id=84867&db=GeoDb_blob148")
NS_6 <- as.data.frame(url)
NS_6 <- separate(NS_6, 1, into = c("ID", "B_value", "P_value"), sep = "\t")
#NS_7
url <- readLines(
"https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?view=data&acc=GSM2430984&id=84868&db=GeoDb_blob148")
NS_7 <- as.data.frame(url)
NS_7 <- separate(NS_7, 1, into = c("ID", "B_value", "P_value"), sep = "\t")
#NS_8
url <- readLines(
"https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?view=data&acc=GSM2430985&id=84869&db=GeoDb_blob148")
NS_8 <- as.data.frame(url)
NS_8 <- separate(NS_8, 1, into = c("ID", "B_value", "P_value"), sep = "\t")
NSmoke_merge <- merge(NS_1, NS_2, by = "ID")
names(NSmoke_merge)[2] <- "NS_1_B"
names(NSmoke_merge)[3] <- "NS_1_P"
names(NSmoke_merge)[4] <- "NS_2_B"
names(NSmoke_merge)[5] <- "NS_2_P"
NSmoke_merge <- merge(NSmoke_merge, NS_3, by = "ID")
names(NSmoke_merge)[6] <- "NS_3_B"
names(NSmoke_merge)[7] <- "NS_3_P"
NSmoke_merge <- merge(NSmoke_merge, NS_4, by = "ID")
names(NSmoke_merge)[8] <- "NS_4_B"
names(NSmoke_merge)[9] <- "NS_4_P"
NSmoke_merge <- merge(NSmoke_merge, NS_5, by = "ID")
names(NSmoke_merge)[10] <- "NS_5_B"
names(NSmoke_merge)[11] <- "NS_5_P"
NSmoke_merge <- merge(NSmoke_merge, NS_6, by = "ID")
names(NSmoke_merge)[12] <- "NS_6_B"
names(NSmoke_merge)[13] <- "NS_6_P"
NSmoke_merge <- merge(NSmoke_merge, NS_7, by = "ID")
names(NSmoke_merge)[14] <- "NS_7_B"
names(NSmoke_merge)[15] <- "NS_7_P"
NSmoke_merge <- merge(NSmoke_merge, NS_8, by = "ID")
names(NSmoke_merge)[16] <- "NS_8_B"
names(NSmoke_merge)[17] <- "NS_8_P"
NSmoke_clean <- NSmoke_merge[-c(1:390654),]
rownames(NSmoke_clean) = NULL
rm("NS_1", "NS_2", "NS_3", "NS_4", "NS_5", "NS_6", "NS_7", "NS_8", "url")
##### Smokers Data Import #####
#S_1
url <- readLines(
"https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?view=data&acc=GSM2430986&id=84870&db=GeoDb_blob148")
S_1 <- as.data.frame(url)
S_1 <- separate(S_1, 1, into = c("ID", "B_value", "P_value"), sep = "\t")
#S_2
url <- readLines(
"https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?view=data&acc=GSM2430987&id=84871&db=GeoDb_blob148")
S_2 <- as.data.frame(url)
S_2 <- separate(S_2, 1, into = c("ID", "B_value", "P_value"), sep = "\t")
#S_3
url <- readLines(
"https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?view=data&acc=GSM2430988&id=84872&db=GeoDb_blob148")
S_3 <- as.data.frame(url)
S_3 <- separate(S_3, 1, into = c("ID", "B_value", "P_value"), sep = "\t")
#S_4
url <- readLines(
"https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?view=data&acc=GSM2430989&id=84873&db=GeoDb_blob148")
S_4 <- as.data.frame(url)
S_4 <- separate(S_4, 1, into = c("ID", "B_value", "P_value"), sep = "\t")
#S_5
url <- readLines(
"https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?view=data&acc=GSM2430990&id=84874&db=GeoDb_blob148")
S_5 <- as.data.frame(url)
S_5 <- separate(S_5, 1, into = c("ID", "B_value", "P_value"), sep = "\t")
#S_6
url <- readLines(
"https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?view=data&acc=GSM2430991&id=84875&db=GeoDb_blob148")
S_6 <- as.data.frame(url)
S_6 <- separate(S_6, 1, into = c("ID", "B_value", "P_value"), sep = "\t")
#S_7
url <- readLines(
"https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?view=data&acc=GSM2430992&id=84876&db=GeoDb_blob148")
S_7 <- as.data.frame(url)
S_7 <- separate(S_7, 1, into = c("ID", "B_value", "P_value"), sep = "\t")
#S_8
url <- readLines(
"https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?view=data&acc=GSM2430993&id=84877&db=GeoDb_blob148")
S_8 <- as.data.frame(url)
S_8 <- separate(S_8, 1, into = c("ID", "B_value", "P_value"), sep = "\t")
Smoke_merge <- merge(S_1, S_2, by = "ID")
names(Smoke_merge)[2] <- "S_1_B"
names(Smoke_merge)[3] <- "S_1_P"
names(Smoke_merge)[4] <- "S_2_B"
names(Smoke_merge)[5] <- "S_2_P"
Smoke_merge <- merge(Smoke_merge, S_3, by = "ID")
names(Smoke_merge)[6] <- "S_3_B"
names(Smoke_merge)[7] <- "S_3_P"
Smoke_merge <- merge(Smoke_merge, S_4, by = "ID")
names(Smoke_merge)[8] <- "S_4_B"
names(Smoke_merge)[9] <- "S_4_P"
Smoke_merge <- merge(Smoke_merge, S_5, by = "ID")
names(Smoke_merge)[10] <- "S_5_B"
names(Smoke_merge)[11] <- "S_5_P"
Smoke_merge <- merge(Smoke_merge, S_6, by = "ID")
names(Smoke_merge)[12] <- "S_6_B"
names(Smoke_merge)[13] <- "S_6_P"
Smoke_merge <- merge(Smoke_merge, S_7, by = "ID")
names(Smoke_merge)[14] <- "S_7_B"
names(Smoke_merge)[15] <- "S_7_P"
Smoke_merge <- merge(Smoke_merge, S_8, by = "ID")
names(Smoke_merge)[16] <- "S_8_B"
names(Smoke_merge)[17] <- "S_8_P"
Smoke_clean <- Smoke_merge[-c(1:390654),]
rownames(Smoke_clean) = NULL
rm("S_1", "S_2", "S_3", "S_4", "S_5", "S_6", "S_7", "S_8", "url")
##### COPD Data Import #####
#COPD_1
url <- readLines(
"https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?view=data&acc=GSM2430994&id=84878&db=GeoDb_blob148")
COPD_1 <- as.data.frame(url)
COPD_1 <- separate(COPD_1, 1, into = c("ID", "B_value", "P_value"), sep = "\t")
#COPD_2
url <- readLines(
"https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?view=data&acc=GSM2430995&id=84879&db=GeoDb_blob148")
COPD_2 <- as.data.frame(url)
COPD_2 <- separate(COPD_2, 1, into = c("ID", "B_value", "P_value"), sep = "\t")
#COPD_3
url <- readLines(
"https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?view=data&acc=GSM2430996&id=84880&db=GeoDb_blob148")
COPD_3 <- as.data.frame(url)
COPD_3 <- separate(COPD_3, 1, into = c("ID", "B_value", "P_value"), sep = "\t")
#COPD_4
url <- readLines(
"https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?view=data&acc=GSM2430997&id=84881&db=GeoDb_blob148")
COPD_4 <- as.data.frame(url)
COPD_4 <- separate(COPD_4, 1, into = c("ID", "B_value", "P_value"), sep = "\t")
#COPD_5
url <- readLines(
"https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?view=data&acc=GSM2430998&id=84882&db=GeoDb_blob148")
COPD_5 <- as.data.frame(url)
COPD_5 <- separate(COPD_5, 1, into = c("ID", "B_value", "P_value"), sep = "\t")
#COPD_6
url <- readLines(
"https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?view=data&acc=GSM2430999&id=84883&db=GeoDb_blob148")
COPD_6 <- as.data.frame(url)
COPD_6 <- separate(COPD_6, 1, into = c("ID", "B_value", "P_value"), sep = "\t")
#COPD_7
url <- readLines(
"https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?view=data&acc=GSM2431000&id=84884&db=GeoDb_blob148")
COPD_7 <- as.data.frame(url)
COPD_7 <- separate(COPD_7, 1, into = c("ID", "B_value", "P_value"), sep = "\t")
#COPD_8
url <- readLines(
"https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?view=data&acc=GSM2431001&id=84885&db=GeoDb_blob148")
COPD_8 <- as.data.frame(url)
COPD_8 <- separate(COPD_8, 1, into = c("ID", "B_value", "P_value"), sep = "\t")
COPD_merge <- merge(COPD_1, COPD_2, by = "ID")
names(COPD_merge)[2] <- "COPD_1_B"
names(COPD_merge)[3] <- "COPD_1_P"
names(COPD_merge)[4] <- "COPD_2_B"
names(COPD_merge)[5] <- "COPD_2_P"
COPD_merge <- merge(COPD_merge, COPD_3, by = "ID")
names(COPD_merge)[6] <- "COPD_3_B"
names(COPD_merge)[7] <- "COPD_3_P"
COPD_merge <- merge(COPD_merge, COPD_4, by = "ID")
names(COPD_merge)[8] <- "COPD_4_B"
names(COPD_merge)[9] <- "COPD_4_P"
COPD_merge <- merge(COPD_merge, COPD_5, by = "ID")
names(COPD_merge)[10] <- "COPD_5_B"
names(COPD_merge)[11] <- "COPD_5_P"
COPD_merge <- merge(COPD_merge, COPD_6, by = "ID")
names(COPD_merge)[12] <- "COPD_6_B"
names(COPD_merge)[13] <- "COPD_6_P"
COPD_merge <- merge(COPD_merge, COPD_7, by = "ID")
names(COPD_merge)[14] <- "COPD_7_B"
names(COPD_merge)[15] <- "COPD_7_P"
COPD_merge <- merge(COPD_merge, COPD_8, by = "ID")
names(COPD_merge)[16] <- "COPD_8_B"
names(COPD_merge)[17] <- "COPD_8_P"
COPD_clean <- COPD_merge[-c(1:390654),]
rownames(COPD_clean) = NULL
rm("COPD_1", "COPD_2", "COPD_3", "COPD_4", "COPD_5", "COPD_6", "COPD_7", "COPD_8", "url")
##### Data Export #####
write.csv(NSmoke_clean, "OUTPUT_Sundar_NoSmoker.csv")
write.csv(Smoke_clean, "OUTPUT_Sundar_Smoker.csv")
write.csv(COPD_clean, "OUTPUT_Sundar_COPD.csv")
NS_Beta <- NSmoke_clean[c(1,2,4,6,8,10,12,14,16)]
S_Beta <- Smoke_clean[c(1,2,4,6,8,10,12,14,16)]
C_Beta <- COPD_clean[c(1,2,4,6,8,10,12,14,16)]
#Calculate Mean B values: Ignoring NULL values
#a$mean <- rowMeans(a[c('high', 'low')], na.rm=TRUE)
NS_Beta$NS_1_B <- as.numeric(NS_Beta$NS_1_B)
NS_Beta$NS_2_B <- as.numeric(NS_Beta$NS_2_B)
NS_Beta$NS_3_B <- as.numeric(NS_Beta$NS_3_B)
NS_Beta$NS_4_B <- as.numeric(NS_Beta$NS_4_B)
NS_Beta$NS_5_B <- as.numeric(NS_Beta$NS_5_B)
NS_Beta$NS_6_B <- as.numeric(NS_Beta$NS_6_B)
NS_Beta$NS_7_B <- as.numeric(NS_Beta$NS_7_B)
NS_Beta$NS_8_B <- as.numeric(NS_Beta$NS_8_B)
NS_Beta$NS_Mean <- rowMeans(NS_Beta[,2:9], na.rm = TRUE)
S_Beta$S_1_B <- as.numeric(S_Beta$S_1_B)
S_Beta$S_2_B <- as.numeric(S_Beta$S_2_B)
S_Beta$S_3_B <- as.numeric(S_Beta$S_3_B)
S_Beta$S_4_B <- as.numeric(S_Beta$S_4_B)
S_Beta$S_5_B <- as.numeric(S_Beta$S_5_B)
S_Beta$S_6_B <- as.numeric(S_Beta$S_6_B)
S_Beta$S_7_B <- as.numeric(S_Beta$S_7_B)
S_Beta$S_8_B <- as.numeric(S_Beta$S_8_B)
S_Beta$S_Mean <- rowMeans(S_Beta[,2:9], na.rm = TRUE)
C_Beta$COPD_1_B <- as.numeric(C_Beta$COPD_1_B)
C_Beta$COPD_2_B <- as.numeric(C_Beta$COPD_2_B)
C_Beta$COPD_3_B <- as.numeric(C_Beta$COPD_3_B)
C_Beta$COPD_4_B <- as.numeric(C_Beta$COPD_4_B)
C_Beta$COPD_5_B <- as.numeric(C_Beta$COPD_5_B)
C_Beta$COPD_6_B <- as.numeric(C_Beta$COPD_6_B)
C_Beta$COPD_7_B <- as.numeric(C_Beta$COPD_7_B)
C_Beta$COPD_8_B <- as.numeric(C_Beta$COPD_8_B)
C_Beta$COPD_Mean <- rowMeans(C_Beta[,2:9], na.rm = TRUE)
Sundar_Betas <- merge(NS_Beta, S_Beta, by = "ID")
Sundar_Betas <- merge(Sundar_Betas, C_Beta, by = "ID")
write.csv(Sundar_Betas, "OUTPUT_Sundar_Beta_Values.csv")
##### Annotate to Genome #####
#Read and process the Illumina 450k Manifest
Illumina.450k <- read_csv("HumanMethylation450_15017482_v1-2.csv")
Illumina.450k <- Illumina.450k[-c(1,2,3,4,5,6),] #, at the end selects row. Else it removes columns
Illumina.Colnames <- Illumina.450k[1,]
names(Illumina.450k) <- Illumina.Colnames
Illumina.450k <- Illumina.450k[-1,]
names(Illumina.450k)[1] <- "ID"
#Read and process the genome range data from MSKCC, Merge with Illumina data
rowRanges <- read_csv("Row_Ranges.csv")
names(rowRanges)[1] <- "ID"
annotated.Row_Ranges <- merge(rowRanges, Illumina.450k, by= "ID")
annotated_sundar_beta <- merge(annotated.Row_Ranges, Sundar_Betas, by= "ID")
# Removing all values with NA as the Relationship to UCSC CpG Island
cleaned_islands <- subset(annotated_sundar_beta, annotated_sundar_beta$Relation_to_UCSC_CpG_Island == "Island")
cleaned_nshelf <- subset(annotated_sundar_beta, annotated_sundar_beta$Relation_to_UCSC_CpG_Island == "N_Shelf")
cleaned_sshelf <- subset(annotated_sundar_beta, annotated_sundar_beta$Relation_to_UCSC_CpG_Island == "S_Shelf")
cleaned_nshore <- subset(annotated_sundar_beta, annotated_sundar_beta$Relation_to_UCSC_CpG_Island == "N_Shore")
cleaned_sshore <- subset(annotated_sundar_beta, annotated_sundar_beta$Relation_to_UCSC_CpG_Island == "S_Shore")
cleaned_sundar_beta <- rbind(cleaned_islands, cleaned_nshelf, cleaned_nshore, cleaned_sshelf, cleaned_sshore)
write.csv(cleaned_sundar_beta, "OUTPUT_Sundar_CpGLandscape_Beta.csv")
<file_sep>def reverse(text):
word_length = len(text)
print (word_length)
as_list = []
output = ""
for i in text:
as_list.append(i)
print (as_list)
for i in range(word_length):
counter = word_length - i
output = output + as_list[counter - 1]
return output
print (reverse("apple"))<file_sep>def anti_vowel(text):
vowels = ["A", "a", "E", "e", "I", "i", "O", "o", "U", "u"]
word =[]
for i in text:
word.append(i)
for vowel in range(len(vowels)):
print (vowel),
print vowels[vowel]
for letter in range(len(word)):
print (word[letter]),
if vowels[vowel] == word[letter]:
print "Cupcake match"
print
return word
anti_vowel("Apple")<file_sep>library(tidyverse)
library(nycflights13)
# Data Transformation ---------------------------------------------------------------
flights <- nycflights13::flights
delayed_2hr <- filter(flights, arr_delay >= 120)
houson_arrivals <- filter(flights, dest == "HOU" | dest == "IAH")
houson_arrivals2 <- filter(flights, dest %in% c("HOU", "IAH"))
UAD_flights <- filter(flights, carrier %in% c("UA", "AA", "DL"))
summer_flights <- filter(flights, month %in% c(7, 8 , 9))
arrive_late_depart_ontime <- filter(flights, arr_delay >= 120, dep_delay <= 0)
hour_delay_30mins_madeup <- filter(flights, dep_delay >= 60, (dep_delay - arr_delay) >=30)
midnight_to_six <- filter(flights, dep_time >= 0, dep_time <= 600)
midnight_to_six2 <- filter(flights, between(dep_time, 0, 600))
missing_dep_time <- filter(flights, is.na(dep_time))
missing_at_start <- arrange(flights, desc(is.na(dep_time)))
longest_flight <- filter(flights, distance == max(distance))
shortest_flight <- filter(flights, distance == min(distance))
# Select() Brainstorming --------------------------------------------------
depart_and_arrive1 <- select(flights, dep_time, dep_delay, arr_time, arr_delay)
depart_and_arrive2 <- flights[,c(4, 6, 7, 9)]
column_names <- c("dep_time", "dep_delay", "arr_time", "arr_delay")
depart_and_arrive3 <- select(flights, column_names)
selection <- select(flights, arr_time, arr_time) #2nd value ignored
time_flights <- select(flights, contains("TIME"))
dep_flights <- select(flights, contains("DEP"))
# Mutate() ----------------------------------------------------------------
flights_sml <- select(flights,
year:day,
ends_with("delay"),
distance,
air_time
)
flights_sml <- mutate(flights_sml,
gain = dep_delay - arr_delay,
speed = distance / air_time * 60,
hours = air_time / 60,
gain_per_hour = gain / hours
)
timings <- select(flights, dep_time, sched_dep_time)
timings <- mutate(timings,
dep_time_hr = dep_time %/% 100,
dep_time_min = dep_time %% 100,
sched_dep_time_hr = sched_dep_time %/% 100,
sched_dep_time_min = sched_dep_time %% 100)
most_delayed_flights <- arrange(flights,
min_rank(desc(arr_delay))
)
by_day <- group_by(flights, year, month, day)
summarise(by_day, delay = mean(dep_delay, na.rm = TRUE))
# Pipes -------------------------------------------------------------------
by_dest <- group_by(flights, dest)
delay <- summarise(by_dest,
count = n(),
dist = mean(distance, na.rm = TRUE),
delay = mean(arr_delay, na.rm = TRUE)
)
delay <- filter(delay, count > 20, dest != "HNL")
ggplot(data = delay, mapping = aes(x = dist, y = delay)) +
geom_point(aes(size = count), alpha = 1/3) +
geom_smooth(se = FALSE)
delays <- flights %>%
group_by(dest) %>%
summarise(
count = n(),
dist = mean(distance, na.rm = TRUE),
delay = mean(arr_delay, na.rm = TRUE)
) %>%
filter(count > 20, dest != "HNL")
not_cancelled <- flights %>%
filter(!is.na(dep_delay), !is.na(arr_delay))
not_cancelled %>%
group_by(year, month, day) %>%
summarise(mean = mean(dep_delay))
delays <- not_cancelled %>%
group_by(tailnum) %>%
summarise(
delay = mean(arr_delay)
)
ggplot(data = delays, mapping = aes(x = delay)) +
geom_freqpoly(binwidth = 10)
delays <- not_cancelled %>%
group_by(tailnum) %>%
summarise(
delay = mean(arr_delay, na.rm = TRUE),
n = n()
)
ggplot(data = delays, mapping = aes(x = n, y = delay)) +
geom_point(alpha = 1/10)
delays %>%
filter(n > 25) %>%
ggplot(mapping = aes(x = n, y = delay)) +
geom_point(alpha = 1/10)
# Lahman ------------------------------------------------------------------
library(Lahman)
batting <- as_tibble(Lahman::Batting)
batters <- batting %>%
group_by(playerID) %>%
summarise(
ba = sum(H, na.rm = TRUE) / sum(AB, na.rm = TRUE),
ab = sum(AB, na.rm = TRUE)
)
batters %>%
filter(ab > 100) %>%
ggplot(mapping = aes(x = ab, y = ba)) +
geom_point() +
geom_smooth(se = FALSE)
batters %>%
arrange(desc(ba)) %>%
filter(ab > 100) %>%
ggplot(mapping = aes(x = ab, y = ba)) +
geom_point() +
geom_smooth(se = FALSE)<file_sep>thepage <- readLines(paste0("http://www.crazy-internet-people.com/site/gilmoregirls/pages/s1/s1s/1.html"))
thepage <- thepage[grep("^[[:upper:]]+:", thepage)] # grabbing character lines only<file_sep>library(shiny)
ui <- fluidPage(
headerPanel("Example reactiveValues"),
mainPanel(
# input field
textInput("user_text", label = "Enter some text:", placeholder = "Please enter some text."),
actionButton("submit", label = "Submit"),
# display text output
textOutput("text"))
)
server <- function(input, output) {
# observe event for updating the reactiveValues
observeEvent(input$submit,
{
text_reactive$text <- input$user_text
})
# reactiveValues
text_reactive <- reactiveValues(
text = "No text has been submitted yet."
)
# text output
output$text <- renderText({
text_reactive$text
})
}
shinyApp(ui = ui, server = server)
<file_sep>library(tidyverse)
mpg <- ggplot2::mpg
ggplot(data = mpg, #select the dataset to be in the graph (but not the actual data values)
### Global Mapping (Across multiple Geom types)
mapping = aes(x = displ,
y = hwy)
) +
labs(x = 'X-axis',y = 'Y-axis', title = 'Dope Ass Line Plots') +
### Single Scatterplot ###
geom_point(mapping = aes(,
x = displ,
y = hwy,
colour = class, # Changes the colour of the points
size = NULL, # Changes size of the points
alpha = NULL, # Transparency,between 0-1 (usually a fraction)
shape = NULL, # Changes shape of the points, MAX 6 groups
),
### Changes all Geom_Point Values
shape = 21, # Point Shape
colour = "black", # Border Colour
fill = "yellow", #Fill Colour
size = 2, # Size of Fill
stroke = 1, # Thickness of Border
alpha = 0.2, # Transparency,between 0-1 (usually a fraction)
show.legend = TRUE
) +
# ### Multiple Plots based on 1 variable
# facet_wrap(~ class, # makes multiple plots based on a variable
# nrow = NULL,
# ncol = NULL,
# )
# ### Multiple Plots based on multiple variables
# facet_grid(drv ~ .) #You can replace a variable with . if you just want one variable
### Smooth Scatterplot ###
geom_smooth(,
mapping = aes(,
x = displ,
y = hwy,
linetype = NULL, # Makes a line for each variable
group = NULL, # Group lines by variable
colour = NULL, # Colour lines by variable
),
show.legend = TRUE,
data = filter(mpg, class == "subcompact"), # Filters data based on value in variable
se = TRUE, # Standard Error
)
<file_sep>library(tidyverse)
#Extract TP73 CpG Loci
annotated_beta_values <- read.csv("OUTPUT_annotated_beta.csv")
TP73_betas <- annotated_beta_values %>%
filter(grepl("TP73", UCSC_RefGene_Name))
#Cleanup dataframe
cleaned_TP73_betas <- TP73_betas[,c(3,10,19,21,22,23,25,26,27,28,29,30,31,32,33,34,35,36)]
cleaned_TP73_betas$feature <- cleaned_TP73_betas$Relation_to_UCSC_CpG_Island
#Create CpG Island feature information (relation to CpG Island = NA became Refgene group)
NA_list <- !is.na(cleaned_TP73_betas$feature)
for (i in 1:nrow(cleaned_TP73_betas)){
cleaned_TP73_betas$ammended_feature[i] <- ifelse(NA_list[i] == TRUE, toString(cleaned_TP73_betas$feature[i]), toString(cleaned_TP73_betas$UCSC_RefGene_Group[i]))
}
#Plot B-value against location
ggplot(data= cleaned_TP73_betas) +
geom_point(aes(start, CDX8), colour = "black") +
geom_point(aes(start,CDX8P), colour = "red")
facet_wrap(~ ammended_feature)
first_island <- filter(cleaned_TP73_betas, start < 3569386)
ggplot(data= first_island) +
geom_point(aes(start, CDX8), colour = "black") +
geom_point(aes(start,CDX8P), colour = "red") +
geom_vline(xintercept = 3569129)
biggest_difference <- filter(cleaned_TP73_betas, start < 3568400)
ggplot(data= biggest_difference) +
geom_point(aes(start, CDX8), colour = "black") +
geom_point(aes(start,CDX8P), colour = "red") +
facet_wrap(~ feature)
#Extract TP73 and WDR8 (WRAP73)
TP73_WDR8_betas <- annotated_beta_values %>%
filter(grepl("TP73", UCSC_RefGene_Name) | grepl("WDR8", UCSC_RefGene_Name) & (CHR == 1)) %>%
mutate(NA_list = !is.na(Relation_to_UCSC_CpG_Island))
for (i in 1:nrow(TP73_WDR8_betas)){
TP73_WDR8_betas$feature[i] <- if_else(
TP73_WDR8_betas$NA_list[i] == TRUE,
toString(TP73_WDR8_betas$Relation_to_UCSC_CpG_Island[i]),
toString(TP73_WDR8_betas$UCSC_RefGene_Group[i]))
}
ggplot(data= TP73_WDR8_betas) +
geom_point(aes(start, CDX8), colour = "black") +
geom_point(aes(start,CDX8P), colour = "red") +
facet_wrap(~ feature)
TP73_WDR8_intergenic <- TP73_WDR8_betas %>%
select(c(3,25:36,38)) %>%
filter(start > 3564000 & start < 3570000) %>%
gather("CDX", "beta", 2:13) %>%
filter(CDX %in% c("CDX8","CDX8P","CDX3","CDX3P"))
ggplot(TP73_WDR8_intergenic) +
geom_point(aes(x= start, y= beta, colour = CDX, shape = feature))
TP73_WDR8_HiDiffMeth <- TP73_WDR8_betas %>%
select(c(3,25:36,38)) %>%
filter(start > 3566500 & start < 3568000) %>%
gather("CDX", "beta", 2:13) %>%
filter(CDX %in% c("CDX8","CDX8P","CDX3","CDX3P"))
ggplot(TP73_WDR8_HiDiffMeth) +
geom_point(aes(x= start, y= beta, colour = CDX)) +
labs(title= "TP73 & WDR8 Highly Differential Region", x= "Chr 1 Position", y = "Beta Value")
<file_sep>def product(int_list):
total = 1
for i in range(len(int_list)):
total = total * int_list[i]
return total<file_sep>library(tidyverse)
setwd("~/Desktop/Meth Array Data ")
annotated_betas <- read_csv("OUTPUT_annotated_beta.csv")
betas_by_gene <- annotated_betas %>%
select(c(3,10,19,21:36)) %>%
separate_rows(UCSC_RefGene_Name, UCSC_RefGene_Group, sep = ";") %>%
mutate(CpG_Name = case_when(
!is.na(UCSC_CpG_Islands_Name) == TRUE ~ UCSC_CpG_Islands_Name,
!is.na(Phantom) == TRUE ~ Phantom
)) %>%
unique() %>%
filter(CHR != "X", CHR != "Y") #removes CHR X and Y
#filter(grepl("MIR", UCSC_RefGene_Name)) %>% #To Test with a massive gene
#filter(is.na(UCSC_RefGene_Name)) %>%
betas_by_gene1 <- betas_by_gene
grouped_genes <- group_by(betas_by_gene, UCSC_RefGene_Name, CHR) %>%
summarise(
No_Loci= n_distinct(CDX1),
CDX1_mean= mean(CDX1),
CDX1_sd= sd(CDX1),
CDX1_pcent_dev= (sd(CDX1)/mean(CDX1))*100,
CDX3_mean= mean(CDX3),
CDX3_sd= sd(CDX3),
CDX3_pcent_dev= (sd(CDX3)/mean(CDX3))*100,
CDX3P_mean= mean(CDX3P),
CDX3P_sd= sd(CDX3P),
CDX3P_pcent_dev= (sd(CDX3P)/mean(CDX3P))*100,
CDX4_mean= mean(CDX4),
CDX4_sd= sd(CDX4),
CDX4_pcent_dev= (sd(CDX4)/mean(CDX4))*100,
CDX7_mean= mean(CDX7),
CDX7_sd= sd(CDX7),
CDX7_pcent_dev= (sd(CDX7)/mean(CDX7))*100,
CDX8_mean= mean(CDX8),
CDX8_sd= sd(CDX8),
CDX8_pcent_dev= (sd(CDX8)/mean(CDX8))*100,
CDX8P_mean= mean(CDX8P),
CDX8P_sd= sd(CDX8P),
CDX8P_pcent_dev= (sd(CDX8P)/mean(CDX8P))*100,
CDX10_mean= mean(CDX10),
CDX10_sd= sd(CDX10),
CDX10_pcent_dev= (sd(CDX10)/mean(CDX10))*100,
CDX12_mean= mean(CDX12),
CDX12_sd= sd(CDX12),
CDX12_pcent_dev= (sd(CDX12)/mean(CDX12))*100,
CDX13_mean= mean(CDX13),
CDX13_sd= sd(CDX13),
CDX13_pcent_dev= (sd(CDX13)/mean(CDX13))*100,
CDX14P_mean= mean(CDX14P),
CDX14P_sd= sd(CDX14P),
CDX14P_pcent_dev= (sd(CDX14P)/mean(CDX14P))*100,
CDX15P_mean= mean(CDX15P),
CDX15P_sd= sd(CDX15P),
CDX15P_pcent_dev= (sd(CDX15P)/mean(CDX15P))*100,
Mean_pcent_sd= sum(CDX1_pcent_dev, CDX3_pcent_dev, CDX3P_pcent_dev, CDX4_pcent_dev, CDX7_pcent_dev, CDX8_pcent_dev, CDX8P_pcent_dev, CDX10_pcent_dev, CDX12_pcent_dev, CDX13_pcent_dev, CDX14P_pcent_dev, CDX15P_pcent_dev)/12
) %>% #is mean %SD the best measure, or should I use the max SD??
filter(Mean_pcent_sd <= 10)
betas_by_gene <- filter(betas_by_gene, !(UCSC_RefGene_Name %in% grouped_genes$UCSC_RefGene_Name & CHR %in% grouped_genes$CHR))
betas_by_gene2 <- betas_by_gene
grouped_CpGName <- group_by(betas_by_gene, UCSC_RefGene_Name, CHR, CpG_Name) %>%
summarise(
No_Loci= n_distinct(CDX1),
CDX1_mean= mean(CDX1),
CDX1_sd= sd(CDX1),
CDX1_pcent_dev= (sd(CDX1)/mean(CDX1))*100,
CDX3_mean= mean(CDX3),
CDX3_sd= sd(CDX3),
CDX3_pcent_dev= (sd(CDX3)/mean(CDX3))*100,
CDX3P_mean= mean(CDX3P),
CDX3P_sd= sd(CDX3P),
CDX3P_pcent_dev= (sd(CDX3P)/mean(CDX3P))*100,
CDX4_mean= mean(CDX4),
CDX4_sd= sd(CDX4),
CDX4_pcent_dev= (sd(CDX4)/mean(CDX4))*100,
CDX7_mean= mean(CDX7),
CDX7_sd= sd(CDX7),
CDX7_pcent_dev= (sd(CDX7)/mean(CDX7))*100,
CDX8_mean= mean(CDX8),
CDX8_sd= sd(CDX8),
CDX8_pcent_dev= (sd(CDX8)/mean(CDX8))*100,
CDX8P_mean= mean(CDX8P),
CDX8P_sd= sd(CDX8P),
CDX8P_pcent_dev= (sd(CDX8P)/mean(CDX8P))*100,
CDX10_mean= mean(CDX10),
CDX10_sd= sd(CDX10),
CDX10_pcent_dev= (sd(CDX10)/mean(CDX10))*100,
CDX12_mean= mean(CDX12),
CDX12_sd= sd(CDX12),
CDX12_pcent_dev= (sd(CDX12)/mean(CDX12))*100,
CDX13_mean= mean(CDX13),
CDX13_sd= sd(CDX13),
CDX13_pcent_dev= (sd(CDX13)/mean(CDX13))*100,
CDX14P_mean= mean(CDX14P),
CDX14P_sd= sd(CDX14P),
CDX14P_pcent_dev= (sd(CDX14P)/mean(CDX14P))*100,
CDX15P_mean= mean(CDX15P),
CDX15P_sd= sd(CDX15P),
CDX15P_pcent_dev= (sd(CDX15P)/mean(CDX15P))*100,
Mean_pcent_sd= sum(CDX1_pcent_dev, CDX3_pcent_dev, CDX3P_pcent_dev, CDX4_pcent_dev, CDX7_pcent_dev, CDX8_pcent_dev, CDX8P_pcent_dev, CDX10_pcent_dev, CDX12_pcent_dev, CDX13_pcent_dev, CDX14P_pcent_dev, CDX15P_pcent_dev)/12
) %>% #is mean %SD the best measure, or should I use the max SD?
filter(Mean_pcent_sd <= 10)
betas_by_gene <- filter(betas_by_gene, !(UCSC_RefGene_Name %in% grouped_CpGName$UCSC_RefGene_Name & CHR %in% grouped_CpGName$CHR & CpG_Name %in% grouped_CpGName$CpG_Name))
betas_by_gene3 <- betas_by_gene
grouped_CpGiRelation <- group_by(betas_by_gene, UCSC_RefGene_Name, CHR, CpG_Name, Relation_to_UCSC_CpG_Island) %>%
summarise(
No_Loci= n_distinct(CDX1),
CDX1_mean= mean(CDX1),
CDX1_sd= sd(CDX1),
CDX1_pcent_dev= (sd(CDX1)/mean(CDX1))*100,
CDX3_mean= mean(CDX3),
CDX3_sd= sd(CDX3),
CDX3_pcent_dev= (sd(CDX3)/mean(CDX3))*100,
CDX3P_mean= mean(CDX3P),
CDX3P_sd= sd(CDX3P),
CDX3P_pcent_dev= (sd(CDX3P)/mean(CDX3P))*100,
CDX4_mean= mean(CDX4),
CDX4_sd= sd(CDX4),
CDX4_pcent_dev= (sd(CDX4)/mean(CDX4))*100,
CDX7_mean= mean(CDX7),
CDX7_sd= sd(CDX7),
CDX7_pcent_dev= (sd(CDX7)/mean(CDX7))*100,
CDX8_mean= mean(CDX8),
CDX8_sd= sd(CDX8),
CDX8_pcent_dev= (sd(CDX8)/mean(CDX8))*100,
CDX8P_mean= mean(CDX8P),
CDX8P_sd= sd(CDX8P),
CDX8P_pcent_dev= (sd(CDX8P)/mean(CDX8P))*100,
CDX10_mean= mean(CDX10),
CDX10_sd= sd(CDX10),
CDX10_pcent_dev= (sd(CDX10)/mean(CDX10))*100,
CDX12_mean= mean(CDX12),
CDX12_sd= sd(CDX12),
CDX12_pcent_dev= (sd(CDX12)/mean(CDX12))*100,
CDX13_mean= mean(CDX13),
CDX13_sd= sd(CDX13),
CDX13_pcent_dev= (sd(CDX13)/mean(CDX13))*100,
CDX14P_mean= mean(CDX14P),
CDX14P_sd= sd(CDX14P),
CDX14P_pcent_dev= (sd(CDX14P)/mean(CDX14P))*100,
CDX15P_mean= mean(CDX15P),
CDX15P_sd= sd(CDX15P),
CDX15P_pcent_dev= (sd(CDX15P)/mean(CDX15P))*100,
Mean_pcent_sd= sum(CDX1_pcent_dev, CDX3_pcent_dev, CDX3P_pcent_dev, CDX4_pcent_dev, CDX7_pcent_dev, CDX8_pcent_dev, CDX8P_pcent_dev, CDX10_pcent_dev, CDX12_pcent_dev, CDX13_pcent_dev, CDX14P_pcent_dev, CDX15P_pcent_dev)/12
) %>% #is mean %SD the best measure, or should I use the max SD?
filter(Mean_pcent_sd <= 10)
betas_by_gene <- filter(betas_by_gene, !(UCSC_RefGene_Name %in% grouped_CpGiRelation$UCSC_RefGene_Name & CHR %in% grouped_CpGiRelation$CHR & CpG_Name %in% grouped_CpGiRelation$CpG_Name & Relation_to_UCSC_CpG_Island %in% grouped_CpGiRelation$Relation_to_UCSC_CpG_Island))
betas_by_gene4 <- betas_by_gene
grouped_RefGenegroup <- group_by(betas_by_gene, UCSC_RefGene_Name, CHR, CpG_Name, Relation_to_UCSC_CpG_Island, UCSC_RefGene_Group) %>%
summarise(
No_Loci= n_distinct(CDX1),
CDX1_mean= mean(CDX1),
CDX1_sd= sd(CDX1),
CDX1_pcent_dev= (sd(CDX1)/mean(CDX1))*100,
CDX3_mean= mean(CDX3),
CDX3_sd= sd(CDX3),
CDX3_pcent_dev= (sd(CDX3)/mean(CDX3))*100,
CDX3P_mean= mean(CDX3P),
CDX3P_sd= sd(CDX3P),
CDX3P_pcent_dev= (sd(CDX3P)/mean(CDX3P))*100,
CDX4_mean= mean(CDX4),
CDX4_sd= sd(CDX4),
CDX4_pcent_dev= (sd(CDX4)/mean(CDX4))*100,
CDX7_mean= mean(CDX7),
CDX7_sd= sd(CDX7),
CDX7_pcent_dev= (sd(CDX7)/mean(CDX7))*100,
CDX8_mean= mean(CDX8),
CDX8_sd= sd(CDX8),
CDX8_pcent_dev= (sd(CDX8)/mean(CDX8))*100,
CDX8P_mean= mean(CDX8P),
CDX8P_sd= sd(CDX8P),
CDX8P_pcent_dev= (sd(CDX8P)/mean(CDX8P))*100,
CDX10_mean= mean(CDX10),
CDX10_sd= sd(CDX10),
CDX10_pcent_dev= (sd(CDX10)/mean(CDX10))*100,
CDX12_mean= mean(CDX12),
CDX12_sd= sd(CDX12),
CDX12_pcent_dev= (sd(CDX12)/mean(CDX12))*100,
CDX13_mean= mean(CDX13),
CDX13_sd= sd(CDX13),
CDX13_pcent_dev= (sd(CDX13)/mean(CDX13))*100,
CDX14P_mean= mean(CDX14P),
CDX14P_sd= sd(CDX14P),
CDX14P_pcent_dev= (sd(CDX14P)/mean(CDX14P))*100,
CDX15P_mean= mean(CDX15P),
CDX15P_sd= sd(CDX15P),
CDX15P_pcent_dev= (sd(CDX15P)/mean(CDX15P))*100,
Mean_pcent_sd= sum(CDX1_pcent_dev, CDX3_pcent_dev, CDX3P_pcent_dev, CDX4_pcent_dev, CDX7_pcent_dev, CDX8_pcent_dev, CDX8P_pcent_dev, CDX10_pcent_dev, CDX12_pcent_dev, CDX13_pcent_dev, CDX14P_pcent_dev, CDX15P_pcent_dev)/12
) %>% #is mean %SD the best measure, or should I use the max SD?
filter(Mean_pcent_sd <= 10)
betas_by_gene <- filter(betas_by_gene, !(UCSC_RefGene_Name %in% grouped_RefGenegroup$UCSC_RefGene_Name & CHR %in% grouped_RefGenegroup$CHR & CpG_Name %in% grouped_RefGenegroup$CpG_Name & Relation_to_UCSC_CpG_Island %in% grouped_RefGenegroup$Relation_to_UCSC_CpG_Island & UCSC_RefGene_Group %in% grouped_RefGenegroup$UCSC_RefGene_Group))
betas_by_gene5 <- betas_by_gene
grouped_seqbins <- betas_by_gene %>%
mutate(segment = cut(grouped_seqbins$start, breaks = seq(0,250000000, by=500))) %>%
group_by(CHR, segment) %>%
summarise(
No_Loci= n_distinct(CDX1),
CDX1_mean= mean(CDX1),
CDX1_sd= sd(CDX1),
CDX1_pcent_dev= (sd(CDX1)/mean(CDX1))*100,
CDX3_mean= mean(CDX3),
CDX3_sd= sd(CDX3),
CDX3_pcent_dev= (sd(CDX3)/mean(CDX3))*100,
CDX3P_mean= mean(CDX3P),
CDX3P_sd= sd(CDX3P),
CDX3P_pcent_dev= (sd(CDX3P)/mean(CDX3P))*100,
CDX4_mean= mean(CDX4),
CDX4_sd= sd(CDX4),
CDX4_pcent_dev= (sd(CDX4)/mean(CDX4))*100,
CDX7_mean= mean(CDX7),
CDX7_sd= sd(CDX7),
CDX7_pcent_dev= (sd(CDX7)/mean(CDX7))*100,
CDX8_mean= mean(CDX8),
CDX8_sd= sd(CDX8),
CDX8_pcent_dev= (sd(CDX8)/mean(CDX8))*100,
CDX8P_mean= mean(CDX8P),
CDX8P_sd= sd(CDX8P),
CDX8P_pcent_dev= (sd(CDX8P)/mean(CDX8P))*100,
CDX10_mean= mean(CDX10),
CDX10_sd= sd(CDX10),
CDX10_pcent_dev= (sd(CDX10)/mean(CDX10))*100,
CDX12_mean= mean(CDX12),
CDX12_sd= sd(CDX12),
CDX12_pcent_dev= (sd(CDX12)/mean(CDX12))*100,
CDX13_mean= mean(CDX13),
CDX13_sd= sd(CDX13),
CDX13_pcent_dev= (sd(CDX13)/mean(CDX13))*100,
CDX14P_mean= mean(CDX14P),
CDX14P_sd= sd(CDX14P),
CDX14P_pcent_dev= (sd(CDX14P)/mean(CDX14P))*100,
CDX15P_mean= mean(CDX15P),
CDX15P_sd= sd(CDX15P),
CDX15P_pcent_dev= (sd(CDX15P)/mean(CDX15P))*100,
Mean_pcent_sd= sum(CDX1_pcent_dev, CDX3_pcent_dev, CDX3P_pcent_dev, CDX4_pcent_dev, CDX7_pcent_dev, CDX8_pcent_dev, CDX8P_pcent_dev, CDX10_pcent_dev, CDX12_pcent_dev, CDX13_pcent_dev, CDX14P_pcent_dev, CDX15P_pcent_dev)/12
) %>% #is mean %SD the best measure, or should I use the max SD?
filter(Mean_pcent_sd <= 10)
<file_sep>data(mtcars)
library(RSQLite)
conn <- dbConnect(SQLite(),'mycars.db')
dbWriteTable(conn, "cars", mtcars)
dbListFields(conn, "cars")
make <- gsub(' .*$', '', rownames(mtcars)) # grabs the manufacters ID from car model
dbGetQuery(conn, "ALTER TABLE cars ADD COLUMN manuf (", make, ")", sep="")")
dbGetQuery(conn, "SELECT * FROM cars WHERE row_names LIKE 'Merc%'")
mtcars$make <- gsub(' .*$', '', rownames(mtcars))<file_sep># Introduction: =====================================================
#
# Title: R Shiny Testing - Iris k-mean Clusering
# Author: <NAME>
# Contact: <EMAIL>
# Date: 05-AUG-19
#
# Description: ===============================================
# This is designed to me a test for using R shiny to build
# complex interactive dashboards using logic with out of the
# box tools like Power BI cannot handle.
#
# Additionally, the later idea is to turn this into a template
# to form the basis of other shiny apps.
#
#
#
# This is a Shiny web application. You can run the application by clicking
# the 'Run App' button above.
#
# Find out more about building applications with Shiny here:
#
# http://shiny.rstudio.com/
#
# Prerequisties: ====================================================
# Loading of packages and setting global variables
#
if (!require("pacman")) install.packages("pacman")
pacman::p_load("tidyverse", "shiny")
palette(c("#E41A1C", "#377EB8", "#4DAF4A", "#984EA3",
"#FF7F00", "#FFFF33", "#A65628", "#F781BF", "#999999"))
#### BASIC GUIDE: ===================================================
# To make interactive plots you need to connect the input (UI) and
# output layers (Server)
#
# Define Interactive Inputs:
# You can make input variable interactive using slider bars etc.
# Do this in the UI section
#
# Make the Graph based on interactive inputs:
# You can then grab the value of these with Input$'name' series of
# commands and use it as a variable
# to plot graphs. Do this in the Server section.
#
# Draw the Graph:
# You can then call the graph from the server function using the
# Output series of commands and give outputId as the graph name
#
#### USER INTERFACE: ================================================
#
# Define the UI for application.
# This draws the interactive k-means clustering for the iris
# dataset.
#
# This section makes the HTML code which displays the outputs of
# R code computed in the SERVER LOGIC section.
#
# = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
ui <- fluidPage(
headerPanel('Iris k-means clustering'),
##### Draw Dropdowns: =============================================
# This sets the dropdowns for use with the interactive plot
#
sidebarPanel(
selectInput('xcol', 'X Variable', names(iris)), #makes a dropdown
selectInput('ycol', 'Y Variable', names(iris),
selected = names(iris)[[2]]),
numericInput('clusters', 'Cluster count', 3,
min = 1, max = 9) #makes a manual numeric input box
),
##### Draw Plot 1: ================================================
# This reserves space for the figure which is processed and
# plotted in the output section
#
# Related to --> MAKE PLOT 1
#
mainPanel(
plotOutput(outputId = 'plot1')
)
)
#### SERVER LOGIC: ==================================================
#
# Define server logic required to draw a k-means clustering plot
#
# This section does the actual processing of the data which is
# then loaded by the UI
#
# = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
server <- function(input, output) {
#### Select Data based on reactive inputs: ========================
# This function slices the dataframe based on specified inputs in
# the UI section
#
selectedData <- reactive({
# This graph uses the sliding scales to plot the graph
iris[, c(input$xcol, input$ycol)] #grabs values from the dropdown
})
clusters <- reactive({
kmeans(selectedData(), input$clusters) #grabs values from the numerical input
})
#### Make Plot 1: =================================================
# This calculates and makes the plot and makes a variable which is
# read by the UI input section
#
# Related to --> DRAW PLOT 1
#
output$plot1 <- renderPlot({
par(mar = c(5.1, 4.1, 0, 1))
plot(selectedData(),
col = clusters()$cluster,
pch = 20, cex = 3)
points(clusters()$centers, pch = 4, cex = 4, lwd = 4)
})
}
#### Run Application: ===============================================
#
shinyApp(ui = ui, server = server)
<file_sep>#### N Brown Data Science Case Study ####
#### 08NOV18
#### <NAME>
#### Prerequisites and Data Import ####
## Install/ Load Packages ##
## **NOTE: The following code installs/loads packages on the users computer** ##
requiredPackages <- c("tidyverse", "randomForest", "caret", "caTools")
ipak <- function(pkg){
new.pkg <- pkg[!(pkg %in% installed.packages()[, "Package"])]
if (length(new.pkg))
install.packages(new.pkg, dependencies = TRUE)
sapply(pkg, require, character.only = TRUE)
}
ipak(requiredPackages)
#Import train dataset
train_df <- read_csv("uc_data_train.csv")
# Print number of missing rows in each column of df
for (i in 1:ncol(train_df)){print(sum(is.na(train_df$i)))} # No missing data in train_df
category_table <- as.data.frame(apply(train_df,2,function(x) length(unique(x))))
# The following variables are categorical: size_womenswear, first_order_channel, socioeconomic_status,
# size_corsetry_cup, size_corsetry_briefs, size_footwear, brand,
# socioeconomic_desc, order_method
#### Checking distribution of data ####
density_plotter <- function(test_variable){
density_plot <-ggplot(train_df, aes(x=test_variable))+
geom_density()
return(density_plot)
}
density_plotter(train_df$size_womenswear) #Move in intervals of 4, skewed towards left
density_plotter(train_df$total_number_of_orders) #Majority of people order <50 timess
density_plotter(train_df$first_order_channel) #Boolean 1 or 2
density_plotter(train_df$socioeconomic_status)
density_plotter(train_df$size_corsetry_cup) # Intergers
density_plotter(train_df$size_corsetry_briefs) #Intervals of 4, normal distribution
density_plotter(train_df$size_footware) #Integer, normally distributed
density_plotter(train_df$days_since_first_order)
density_plotter(train_df$brand) #Majority Brand 1. Brands 2 = 3 = other
density_plotter(train_df$age_in_years)
density_plotter(train_df$socioeconomic_desc)
density_plotter(train_df$order_method) #Majority of purchasing online
#### Figure: Size Womenswear Histogram ####
ggplot(data = train_df, aes(x= size_womenswear, y= ..density..)) +
geom_histogram(binwidth = 4, colour = "black", fill= "light blue") +
geom_density(adjust=4) +
scale_x_continuous(breaks = c(8,12,16,20,24,28,32,36)) +
labs(title = 'Distribution of Size Womenswear') +
xlab('Size Womenswear') +
ylab('Density') +
theme(plot.title= element_text(size = 42),
axis.title = element_text(size = 38),
axis.text = element_text(size = 32),
strip.text.y = element_text(size = 38)) +
theme_bw()
#Size Corsetry Cup Histogram
ggplot(data = train_df, aes(x= size_corsetry_cup, y= ..density..)) +
geom_histogram(binwidth = 1, colour = "black", fill= "light green") +
scale_x_continuous(breaks = c(2,3,4,5,6,7,8,9)) +
labs(title = 'B: Distribution of Size Corsetry Cup') +
xlab('Size Corsetry Cup') +
ylab('Density') +
theme_bw()
#Size Corsetry Briefs Histogram
ggplot(data = train_df, aes(x= size_corsetry_briefs, y= ..density..)) +
geom_histogram(binwidth = 4, colour = "black", fill= "salmon 1") +
scale_x_continuous(breaks = c(8,16,24,32,40,48)) +
labs(title = 'C: Distribution of Size Corsetry Briefs') +
xlab('Size Corsetry Briefs') +
ylab('Density') +
theme_bw()
#Size Age Histogram
ggplot(data = train_df, aes(x= age_in_years, y= ..density..)) +
geom_histogram(colour = "black", fill= "gold 1") +
geom_density() +
scale_x_continuous(breaks = c(15, 25, 35, 45, 55, 65, 75, 85, 95, 105, 115, 125)) +
labs(title = 'D: Distribution of Age in Years') +
xlab('Age (Years)') +
ylab('Density') +
theme_bw()
#### Function: Correlation Plotter #####
corrPlotter <- function(test_var, yAxisFactor, varBreaks, varLimit, graphTitle, xAxisTitle, yAxisFactorString){
correlation<- cor(x= train_df$size_womenswear, y= test_var, method = "spearman")
summary_plot <- ggplot(data = train_df) +
geom_density(mapping = aes(x= test_var,
y= ..count../yAxisFactor,
fill = factor(size_womenswear)),
alpha= 0.5,
adjust = 4) +
geom_density(mapping = aes(x= test_var,
y= ..count../yAxisFactor),
adjust = 4)+
scale_x_continuous(breaks = varBreaks, limits = varLimit) +
scale_fill_discrete(name = 'Womenswear Size') +
guides(alpha=FALSE) +
labs(title = graphTitle, subtitle = paste('Spearmans Rank:', round(correlation, 3), sep = " ")) +
xlab(xAxisTitle) +
ylab(paste('Count (', yAxisFactorString, ')', sep = "")) +
theme_bw() +
theme(legend.position = 'bottom',
legend.text = element_text(size = 20),
plot.title= element_text(size = 26),
plot.subtitle = element_text(size = 24),
axis.title = element_text(size = 24),
axis.text = element_text(size = 20),
strip.text.y = element_text(size = 24))
return(summary_plot)
}
#### Correlation: size and coresety briefs ####
#As Table
summary_train_df <- train_df %>%
group_by(size_womenswear, size_corsetry_briefs) %>%
group_by(total = n(), add= TRUE) %>%
summarise()
#### Figure: Correlation womenswear size against corestry briefs ####
corrPlotter(train_df$size_corsetry_briefs,
1000,
c(4,8,12,16,20,24,28,32,36,38),
c(4, 38),
'A: Correlation of Womenswear Size against Corsetry Briefs Size',
'Size Corsetry Briefs',
'Thousands')
#Second Method Spearmans Rank
cor.test( ~ size_womenswear + size_corsetry_briefs,
data=train_df,
method = "spearman",
continuity = FALSE,
conf.level = 0.95) # P= <2.2e-16
#### Correlation: size and coresety cup ####
#As Table
summary_train_df <- train_df %>%
group_by(size_womenswear, size_corsetry_cup) %>%
group_by(total = n(), add= TRUE) %>%
filter(size_womenswear == 12) %>%
summary()
#### Figure: Correlation womenswear size against corestry cup ####
corrPlotter(train_df$size_corsetry_cup,
100,
c(2,3,4,5,6,7,8,9),
c(2, 9),
'B: Correlation of Womenswear Size against Corsetry Cup Size',
'Size Corsetry Cup',
'Hundreds')
#### Correlation: womenswear size and footware size ####
#As Table
summary_train_df <- train_df %>%
group_by(size_womenswear, size_footware) %>%
group_by(total = n(), add= TRUE) %>%
filter(size_womenswear == 12) %>%
summary()
#### Figure: Correlation womenswear size against Footware Size ####
corrPlotter(train_df$size_footware,
100,
c(2:12),
c(2, 12),
'C: Correlation of Womenswear Size against Footware Size',
'Footware Size',
'Hundreds')
#### Correlation: womenswear size and Age in Years ####
#As Table
summary_train_df <- train_df %>%
group_by(size_womenswear, age_in_years) %>%
group_by(total = n(), add= TRUE) %>%
summarise()
# Facetwrap density
summary_plot <- ggplot(data = train_df) +
geom_density(mapping = aes(x= age_in_years, y= ..count../1000 , fill = - size_womenswear)) +
#scale_x_continuous(breaks = c(4:10), limits = c(4, 10)) +
facet_wrap(~ size_womenswear, nrow = 8, strip.position="right") +
guides(fill=FALSE) +
labs(title = 'Correlation of Womenswear Size against Age') +
xlab(paste('Age (Years) Spearmans Rank:', round(correlation, 3), sep = " ")) +
ylab('Count (Thousands)') +
theme_bw() +
theme(plot.title= element_text(size = 26),
axis.title = element_text(size = 24),
axis.text = element_text(size = 20),
strip.text.y = element_text(size = 24))
summary_plot
#### Figure: Correlation womenswear size against Age in Years ####
corrPlotter(train_df$age_in_years,
100,
c(20,40, 60,80, 100),
c(20, 100),
'D: Correlation of Womenswear Size against Age',
'Age (Years)',
'Hundreds') #The adjust setting might be oversmoothing data
# Manually performing plo
correlation<- cor(x= train_df$size_womenswear, y= train_df$age_in_years, method = "spearman")
summary_plot <- ggplot(data = train_df) +
geom_density(mapping = aes(x= age_in_years,
y= ..count../100,
fill = factor(size_womenswear)),
alpha= 0.5,
adjust = 1) +
geom_density(mapping = aes(x= age_in_years,
y= ..count../100),
adjust = 1)+
scale_x_continuous(breaks = c(20,40, 60,80, 100), limits = c(20, 100)) +
scale_fill_discrete(name = 'Womenswear Size') +
guides(alpha=FALSE) +
labs(title = 'D: Correlation of Womenswear Size against Age', subtitle = paste('Spearmans Rank:', round(correlation, 3), sep = " ")) +
xlab('Age (Years)') +
ylab(paste('Count (Hundreds')) +
theme_bw() +
theme(legend.position = 'bottom',
legend.text = element_text(size = 20),
plot.title= element_text(size = 26),
plot.subtitle = element_text(size = 24),
axis.title = element_text(size = 24),
axis.text = element_text(size = 20),
strip.text.y = element_text(size = 24))
summary_plot #removing smoothing shows that dress size increases with age after 60
#As boxplot
ggplot(data = train_df, mapping = aes(x= size_womenswear, y= age_in_years, group= size_womenswear)) +
geom_boxplot() +
coord_flip()+
theme_bw()
# There is an increase in age with dress sizes over 32. However groupsize is only 11.
correlation<- cor(x= train_df$size_womenswear, y= train_df$age_in_years, method = "spearman")
# Spearmans Rank: -0.054
#### Multifactoral Testing: Corsetry Briefs and Footware Sizes ####
ggplot(data = train_df) +
geom_jitter(mapping = aes(x= size_womenswear, y=size_corsetry_briefs, colour = factor(size_footware))) +
geom_abline(slope=1, intercept=0) +
xlab('Womenswear Size') +
ylab('Corsetry Briefs Size') +
labs(title = 'Correlation Between Womenswear size, Corsetry Briefs and Footwear sizes') +
theme(legend.position = 'bottom',
legend.text = element_text(size = 32),
plot.title= element_text(size = 48),
plot.subtitle = element_text(size = 42),
axis.title = element_text(size = 42),
axis.text = element_text(size = 38),
strip.text.y = element_text(size = 42))
theme_bw()
#### Making Categorical Variables ####
str(train_df) # Many of the variables are categorical but have been imported as integers
# convert to categorical variable
train_df$size_womenswear = as.factor(train_df$size_womenswear)
train_df$first_order_channel = as.factor(train_df$first_order_channel)
train_df$socioeconomic_status = as.factor(train_df$socioeconomic_status)
train_df$size_corsetry_cup = as.factor(train_df$size_corsetry_cup)
train_df$size_corsetry_briefs = as.factor(train_df$size_corsetry_briefs)
train_df$size_footware = as.factor(train_df$size_footware)
train_df$brand = as.factor(train_df$brand)
train_df$socioeconomic_desc = as.factor(train_df$socioeconomic_desc)
train_df$order_method = as.factor(train_df$order_method)
str(train_df)
# Make bins for age to use a categorical variable
train_df$agebins <- cut(train_df$age_in_years, breaks = seq(0, 120, by = 5))
#### Random Forest Precition of size_womenswear ####
# Set seed for RF normalisation
set.seed(123)
# Testing variable combinations to tune model
cleaned_df <- train_df[,c(3,9,10)] #OOB - 30.7%, Accuracy= 69%, bestmtry=1
#cleaned_df <- train_df[,c(3,9,13,14)] #OOB - 30.7%, Accuracy= 69%, bestmtry=1
#cleaned_df <-train_df #OOB - 32.2%, Accuracy= 68.6%, bestmtry=4
#train_df[,c(3,9)] #OOB - 30.73%, Accuracy= 69%, bestmtry = 1
#train_df[,c(3,9,13)] #OOB - 30.7%, Accuracy= 69%, bestmtry=1
#train_df[,c(3,9,13,14)] #OOB - 30.7%, Accuracy= 69%, bestmtry=1
# split cleaned_df into randomForest train (70%) and validation datasets (30%)
ind= sample.split(Y= cleaned_df$size_womenswear, SplitRatio = 0.7)
rf_train_df <- cleaned_df[ind,]
rf_validate_df <- cleaned_df[!ind,]
# Find the best mtry
tuneRF(rf_train_df, rf_train_df$size_womenswear,
ntreeTry = 500, stepFactor = 0.5,
improve = 0.01, trace = T, plot = T)
# Generate Random Forest Model
modelRandom <- randomForest(size_womenswear~.,data = rf_train_df, mtry=2, ntree=500) #. means use all other variables to predict low
modelRandom #OOB (misclassification rate = 31.1%) (Bad at categorising sizes 12-28)
# Which variables are important
importance(modelRandom)
varImpPlot(modelRandom)
PredictionsWithClass <- predict(modelRandom, rf_validate_df, type ='class')
t <- table(predictions= PredictionsWithClass, actual=rf_validate_df$size_womenswear)
t
#### Calculating the Accuracy of the Model ####
sum(diag(t)/sum(t)) #Quick Calculation
# Accuracy of the model against the training dataset
predictionTraining <- predict(modelRandom, rf_train_df)
confusionMatrix(predictionTraining, rf_train_df$size_womenswear) #Accuracy = 69.21%
# Accuracy of the model against the validation dataset
predictionValidation <- predict(modelRandom, rf_validate_df)
confusionMatrix(predictionValidation, rf_validate_df$size_womenswear) #Accuracy = 69.47%
#### Applying Model to Test Dataset ####
test_df <- read_csv("uc_data_test.csv")
test_df$first_order_channel = as.factor(test_df$first_order_channel)
test_df$socioeconomic_status = as.factor(test_df$socioeconomic_status)
test_df$size_corsetry_cup = as.factor(test_df$size_corsetry_cup)
test_df$size_corsetry_briefs = as.factor(test_df$size_corsetry_briefs)
test_df$size_footware = as.factor(test_df$size_footware)
test_df$brand = as.factor(test_df$brand)
test_df$socioeconomic_desc = as.factor(test_df$socioeconomic_desc)
test_df$order_method = as.factor(test_df$order_method)
str(test_df)
rf_test_df <- test_df[,c(8,9)]
# Making sure the levels in the variables is the same between the training and test datasets
levels(rf_train_df$size_corsetry_briefs)
levels(rf_test_df$size_corsetry_briefs)
levels(rf_train_df$size_footware)
levels(rf_test_df$size_footware) # There are no size 17 customers in test dataset
levels(rf_test_df$size_footware) <- levels(rf_train_df$size_footware)
# Predict Womenswear size from Model
test_size_womenswear <- predict(modelRandom, rf_test_df)
# Bind to original test data and export
test_df <- cbind(test_df, test_size_womenswear)
colnames(test_df)[15] = "predicted_size_womenswear"
write_csv(test_df, 'uc_data_test_AFletcher.csv')
#### Misc: Statistics for Report ####
#Percentage womenswear = 12 briefs = 16
size_12_briefs_16 <- train_df %>%
filter(size_womenswear == 12) %>%
group_by(size_corsetry_briefs) %>%
group_by(total = n(), add= TRUE) %>%
summarise()
pcent_brief_16 <- (sum(size_12_briefs_16$total[c(3:11)])/sum(size_12_briefs_16$total))*100
#Percentage womenswear = 16 briefs = 20
size_16_briefs_20 <- train_df %>%
filter(size_womenswear == 16) %>%
group_by(size_corsetry_briefs) %>%
group_by(total = n(), add= TRUE) %>%
summarise()
pcent_brief_20 <- (sum(size_16_briefs_20$total[c(4:11)])/sum(size_16_briefs_20$total))*100
# Mode Age
getmode <- function(v) {
uniqv <- unique(v)
uniqv[which.max(tabulate(match(v, uniqv)))]
}
modeage <- getmode(train_df$age_in_years)
# Percentage womenswear > 24
num_above_24 <- train_df %>%
filter(size_womenswear > 24) %>%
group_by(total = n(), add= TRUE) %>%
summarise()
pcent_above_24 <- (num_above_24$total[1]/(nrow(train_df)-1))*100
#Spearmans Rank: days_first_order vs womenswear size
cor.test( ~ size_womenswear + days_since_first_order,
data=train_df,
method = "spearman",
continuity = FALSE,
conf.level = 0.95) # P= <2.2e-16
# Return rate for each size
return_rate <- train_df
return_rate$no_returns <- (return_rate$total_number_of_orders * return_rate$return_rate)
return_summary <- return_rate %>%
group_by(size_womenswear) %>%
summarise(mean_no_returns = mean(no_returns),
mean_no_orders = mean(total_number_of_orders)
)
return_summary$pcent_returns <- (return_summary$mean_no_returns / return_summary$mean_no_orders) * 100
return_summary$acc_rate <- 100- return_summary$pcent_returns
<file_sep>for(i in 1:6){
nam <- paste("r", i, sep = ".")
assign(nam, i)
}
<file_sep>library(tidyverse)
setwd("~/Desktop/Meth Array Data ")
dive_beta <- read.csv("OUTPUT_annotated_beta.csv") %>%
select(2, 25:36)
sundar_beta <- read.csv("OUTPUT_Sundar_CpGLandscape_Beta.csv") %>%
select(2, 34:41, 43:50, 52:59)
colnames(sundar_beta)[1] <- "CpG.Index"
# Get Mean B values: Dive Data
dive_mean <- vector()
for (i in 2:ncol(dive_beta)){
dive_mean[i] <- mean(dive_beta[,i])
}
# dive_mean[1] <- "mean_bvalue"
dive_name <- vector()
for (i in 2:ncol(dive_beta)){
dive_name[i] <- colnames(dive_beta[i])
}
dive_name[1] <- "sample_ID"
df_dive_mean <- data.frame(dive_name, dive_mean)
df_dive_mean = df_dive_mean[-1,]
colnames(df_dive_mean)[1] <- "sample_name"
colnames(df_dive_mean)[2] <- "mean_bvalue"
df_dive_mean$sample_type <- "CDX"
# Get Mean B values: Sundar Data
sundar_mean <- vector()
for (i in 2:ncol(sundar_beta)){
sundar_mean[i] <- mean(sundar_beta[,i], na.rm = TRUE)
}
# sundar_mean[1] <- "mean_bvalue"
sundar_name <- vector()
for (i in 2:ncol(sundar_beta)){
sundar_name[i] <- colnames(sundar_beta[i])
}
sundar_name[1] <- "sample_ID"
df_sundar_mean <- data.frame(sundar_name, sundar_mean)
df_sundar_mean = df_sundar_mean[-1,]
colnames(df_sundar_mean)[1] <- "sample_name"
colnames(df_sundar_mean)[2] <- "mean_bvalue"
df_sundar_mean$sample_type <- NA
for (i in 1:nrow(df_sundar_mean)){
if (grepl("NS", df_sundar_mean$sample_name[i])){
df_sundar_mean$sample_type[i] <- "NoS"
} else if (grepl("COP", df_sundar_mean$sample_name[i])){
df_sundar_mean$sample_type[i] <- "COP"
} else {df_sundar_mean$sample_type[i] <- "Smk"}
}
df_mean_betas <- rbind(df_dive_mean, df_sundar_mean)
ggplot(df_mean_betas) +
geom_violin(mapping = aes(x= sample_type, y= mean_bvalue)) +
stat_summary(
mapping = aes(x= sample_type, y= mean_bvalue),
fun.ymin = min,
fun.ymax = max,
fun.y = median) +
geom_point(mapping = aes(x= sample_type, y= mean_bvalue), shape = 18) +
labs(x = 'Sample Type',y = 'Mean B Value', title = 'Mean B-value for CDXs vs other sample types') +
theme_bw()
output <- vector()
colnames(dive_beta)[2] <- "CDX_1"
colnames(dive_beta)[3] <- "CDX_3"
colnames(dive_beta)[4] <- "CDX_4"
colnames(dive_beta)[5] <- "CDX_3P"
colnames(dive_beta)[6] <- "CDX_8"
colnames(dive_beta)[7] <- "CDX_8P"
colnames(dive_beta)[8] <- "CDX_7"
colnames(dive_beta)[9] <- "CDX_10"
colnames(dive_beta)[10] <- "CDX_12"
colnames(dive_beta)[11] <- "CDX_13"
colnames(dive_beta)[12] <- "CDX_14P"
colnames(dive_beta)[13] <- "CDX_15P"
colnames(sundar_beta)[2] <- "NoS_1"
colnames(sundar_beta)[3] <- "NoS_2"
colnames(sundar_beta)[4] <- "NoS_3"
colnames(sundar_beta)[5] <- "NoS_4"
colnames(sundar_beta)[6] <- "NoS_5"
colnames(sundar_beta)[7] <- "NoS_6"
colnames(sundar_beta)[8] <- "NoS_7"
colnames(sundar_beta)[9] <- "NoS_8"
colnames(sundar_beta)[10] <- "Smk_1"
colnames(sundar_beta)[11] <- "Smk_2"
colnames(sundar_beta)[12] <- "Smk_3"
colnames(sundar_beta)[13] <- "Smk_4"
colnames(sundar_beta)[14] <- "Smk_5"
colnames(sundar_beta)[15] <- "Smk_6"
colnames(sundar_beta)[16] <- "Smk_7"
colnames(sundar_beta)[17] <- "Smk_8"
colnames(sundar_beta)[18] <- "COP_1"
colnames(sundar_beta)[19] <- "COP_2"
colnames(sundar_beta)[20] <- "COP_3"
colnames(sundar_beta)[21] <- "COP_4"
colnames(sundar_beta)[22] <- "COP_5"
colnames(sundar_beta)[23] <- "COP_6"
colnames(sundar_beta)[24] <- "COP_7"
colnames(sundar_beta)[25] <- "COP_8"
merged_beta <- merge(dive_beta, sundar_beta, by = "CpG.Index", all = TRUE) %>%
gather(sample_name, mean_bvalue, CDX_1:COP_8, na.rm = TRUE) %>%
mutate(sample_type =NA)
merged_beta$sample_type <- sapply(merged_beta$sample_name, substring, 1, 3)
# for (i in 1:nrow(merged_beta)){
# if (grepl("CDX", merged_beta$sample_name[i])){
# merged_beta$sample_type[i] <- "CDX"
# } else if (grepl("NS", merged_beta$sample[i])){
# merged_beta$sample_type[i] <- "non_smoker"
# } else if (grepl("COPD", merged_beta$sample[i])){
# merged_beta$sample_type[i] <- "COPD"
# } else {
# merged_beta$sample_type[i] <- "smoker"
# }
# }
ggplot(merged_beta) +
geom_violin(mapping = aes(x= sample_type, y= mean_bvalue, fill= sample_type)) +
geom_boxplot(data = df_mean_betas, mapping = aes(x= sample_type, y= mean_bvalue), width = 0.1) +
geom_jitter(data = df_mean_betas, mapping = aes(x= sample_type, y= mean_bvalue), shape = 18) +
labs(x = 'Sample Type',y = 'Mean B Value', title = 'Mean B-value for CDXs vs other sample types') +
theme_bw() +
coord_flip()
dive_gathered <- gather(dive_beta, sample_name, bvalue, CDX_1:CDX_15P, na.rm = TRUE)
ggplot() +
geom_density(data = dive_gathered, aes(x= bvalue)) +
facet_wrap(~ dive_gathered$sample_name) +
labs(x = 'B Value',y = 'Density', title = 'B-value Density of the CDX Models') +
theme_bw()<file_sep>def count(sequence, item):
counter = 0
for i in range(len(sequence)):
if sequence[i] == item:
counter += 1
return counter
print count([1, 2, 1, 1], 1)<file_sep># Futurama Webscraper and Character Analysis
# <NAME>
# 180912
#### Prerequisites ####
# Loading/ Installing Packages
requiredPackages <- c("tidyverse", "rvest", "tm", "SnowballC", "wordcloud", "readr", "udpipe", "lattice", "tidytext", "syuzhet", "reshape2", "igraph", "tokenizers")
ipak <- function(pkg){
new.pkg <- pkg[!(pkg %in% installed.packages()[, "Package"])]
if (length(new.pkg))
install.packages(new.pkg, dependencies = TRUE)
sapply(pkg, require, character.only = TRUE)
}
ipak(requiredPackages)
# Additional Tools
# Use of the SelectorGadget CSS selector tags
#### Generate Episode List ####
EpisodeList <- readLines(paste0
("https://theinfosphere.org/Episode_Listing")) %>%
as.data.frame() %>%
filter(grepl("<td class=\"oLeft\"> <b><a href=", .)) %>%
separate(".", c("A", "B", "Episodes", "D"), sep= "=", extra = "drop", fill = "right") %>%
select(3)
EpisodeList <- as.data.frame(
substring(EpisodeList$Episodes, 3, nchar(EpisodeList$Episodes)-7))
colnames(EpisodeList)[1] <- "Episodes"
for (i in 1:nrow(EpisodeList)) {EpisodeList$Cumulative_episode[i] <- i}
#### Add in Seasonal Information ####
for (i in 1:nrow(EpisodeList)){
if (i <= 13) {
EpisodeList$Season[i] <- 1
EpisodeList$Episode_No[i] <- i }
if (i > 13 & i <= 32) {
EpisodeList$Season[i] <- 2
EpisodeList$Episode_No[i] <- i - 13}
if (i > 32 & i <= 54) {
EpisodeList$Season[i] <- 3
EpisodeList$Episode_No[i] <- i - 32}
if (i > 54 & i <= 72) {
EpisodeList$Season[i] <- 4
EpisodeList$Episode_No[i] <- i - 54}
if (i > 72 & i <= 88) {
EpisodeList$Season[i] <- 5
EpisodeList$Episode_No[i] <- i - 72}
if (i > 88 & i <= 114) {
EpisodeList$Season[i] <- 6
EpisodeList$Episode_No[i] <- i - 88}
if (i > 114 & i <= 140) {
EpisodeList$Season[i] <- 7
EpisodeList$Episode_No[i] <- i - 114}
}
#### Extract Transcripts ####
for (i in 1:nrow(EpisodeList)) {
# for (i in 1:3) { #Testing line
message("Scraping Episode ", i)
# Getting Episode Transcript
url <- paste0("https://theinfosphere.org/Transcript:", EpisodeList$Episodes[i])
webpage <- read_html(url)
EpisodeLines <- html_nodes(webpage,'p') %>%
html_text()
templines <- as.data.frame(EpisodeLines)
templines$Cumulative_episode <- EpisodeList$Cumulative_episode[i]
templines$Season <- EpisodeList$Season[i]
templines$Episode_no <- EpisodeList$Episode_No[i]
if (i == 1) {FuturamaLines <- templines} else {FuturamaLines <- rbind(FuturamaLines, templines)}
#Not all Transcripts completed on Infosphere. They will be subsequently removed
}
write.csv(FuturamaLines, "~/Documents/GitHub/R_scripts/FuturamaLines.csv")
#### Cleanup HTML Tags from Data ####
Transcript <- FuturamaLines
Transcript <- gsub("\\D\\d\\d:\\d\\d\\D", "", Transcript$EpisodeLines)
Transcript <- gsub("⨂", "", Transcript)
Transcript <- gsub("[[].*?[]]", "", Transcript)
Transcript <- gsub("[(].*?[)]", "", Transcript)
Transcript <- gsub("[<].*?[>]", "", Transcript)
Transcript <- cbind(as.data.frame(Transcript), FuturamaLines$Cumulative_episode, FuturamaLines$Season, FuturamaLines$Episode_no) %>%
separate(Transcript, c("A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P"), sep= ":", extra = "drop", fill = "right")
Ommisions <- Transcript[-rowSums(is.na(Transcript)) == 0,]
for (i in 1:(nrow(Ommisions))) {Transcript <- filter(Transcript, Transcript$B != Ommisions$B[i])}
EpisodeInfo <- data.frame(Transcript$`FuturamaLines$Cumulative_episode`, Transcript$`FuturamaLines$Season`, Transcript$`FuturamaLines$Episode_no`)
Transcript <- unite(Transcript, Line, B:P, sep = ":")
Lines_vector <- gsub(":NA", "", Transcript$Line)
Transcript <- data.frame(Transcript$A, Lines_vector)
Transcript$Line_length <- nchar(as.character(Transcript$Lines_vector))
colnames(Transcript)[1] <- "Character"
colnames(Transcript)[2] <- "Line"
Transcript <- cbind(Transcript, EpisodeInfo)
colnames(Transcript)[4] <- "Cumulative_episode"
colnames(Transcript)[5] <- "Season"
colnames(Transcript)[6] <- "Episode_no"
Transcript <- filter(Transcript, Line_length < 1000) # Removes textdump where character cannot be determined
#### Cleanup Grammatical Errors ####
Transcript$Character <- gsub("\"", "", Transcript$Character)
Transcript$Character <- gsub("\'", "", Transcript$Character)
Transcript$Character <- gsub("’’", "", Transcript$Character)
Transcript$Character <- gsub("’’", "", Transcript$Character)
Transcript$Character <- gsub(".*?[,].*?[-->].*?[,].*?"[ ], "", Transcript$Character)
Transcript$Character <- gsub("\\d\\d\\d", "", Transcript$Character)
#### Fixing Duplicate Names and Errors ####
Transcript$Character <- gsub("<NAME>", "Amy", Transcript$Character)
Transcript$Character <- gsub("Al Gores head", "Al Gore", Transcript$Character)
Transcript$Character <- gsub("ALL", "All", Transcript$Character)
Transcript$Character <- gsub("Amy ", "Amy", Transcript$Character)
Transcript$Character <- gsub("Announcer", "Announcer #1", Transcript$Character)
Transcript$Character <- gsub("Bee", "Bee #1", Transcript$Character)
Transcript$Character <- gsub("Beeler", "<NAME>", Transcript$Character)
Transcript$Character <- gsub("Bender ", "Bender", Transcript$Character)
Transcript$Character <- gsub("Bender doll", "<NAME>", Transcript$Character)
Transcript$Character <- gsub("Bender duplicate", "Bender Duplicate #1", Transcript$Character)
Transcript$Character <- gsub("Billionarebot", "Billionare Bot", Transcript$Character)
Transcript$Character <- gsub("Bret", "Brett", Transcript$Character)
Transcript$Character <- gsub("Cryogenisist", "Cryogenicist", Transcript$Character)
Transcript$Character <- gsub("<NAME>s head", "<NAME>", Transcript$Character)
Transcript$Character <- gsub("Decapodian Man", "Decapodian Man #1", Transcript$Character)
Transcript$Character <- gsub("Decapodian Woman", "Decapodian Woman #1", Transcript$Character)
Transcript$Character <- gsub("Decapodian Woman", "Decapodian Woman #1", Transcript$Character)
Transcript$Character <- gsub("Director", "Director #1", Transcript$Character)
Transcript$Character <- gsub("Fanrsworth", "Farnsworth", Transcript$Character)
Transcript$Character <- gsub("Farnswoth", "Farnsworth", Transcript$Character)
Transcript$Character <- gsub("Farsnworth", "Farnsworth", Transcript$Character)
Transcript$Character <- gsub("Fat-Bot", "Fatbot", Transcript$Character)
Transcript$Character <- gsub("Female voice", "Female Voice", Transcript$Character)
Transcript$Character <- gsub("Fembot", "Fembot #1", Transcript$Character)
Transcript$Character <- gsub("Frida Waterfall", "Frida", Transcript$Character)
Transcript$Character <- gsub("Frieda Waterfall", "Frida", Transcript$Character)
Transcript$Character <- gsub("Fry ", "Fry", Transcript$Character)
Transcript$Character <- gsub("<NAME> ", "<NAME>", Transcript$Character)
Transcript$Character <- gsub("George Takeis head ", "<NAME>", Transcript$Character)
Transcript$Character <- gsub("Guard", "Guard #1", Transcript$Character)
Transcript$Character <- gsub("H. G. Blob", "H.G. Blob", Transcript$Character)
Transcript$Character <- gsub("Hattie", "<NAME>", Transcript$Character)
Transcript$Character <- gsub("Hedonism bot", "Hedonism Bot", Transcript$Character)
Transcript$Character <- gsub("Hermes ", "Hermes", Transcript$Character)
Transcript$Character <- gsub("Horrible Gelatinous Blob", "H.G. Blob", Transcript$Character)
Transcript$Character <- gsub("Hutch", "Hutch Waterfall", Transcript$Character)
Transcript$Character <- gsub("Hydroponic farmer", "Hydroponic Farmer", Transcript$Character)
Transcript$Character <- gsub("Judge", "Judge #1", Transcript$Character)
Transcript$Character <- gsub("Killbot", "Killbot #1", Transcript$Character)
Transcript$Character <- gsub("Kwanzaa-bot", "Kwanzaabot", Transcript$Character)
Transcript$Character <- gsub("Kwanzabot", "Kwanzaabot", Transcript$Character)
Transcript$Character <- gsub("LaBarbara", "Labarbara", Transcript$Character)
Transcript$Character <- gsub("Leela ", "Leela", Transcript$Character)
Transcript$Character <- gsub("Male Voice", "Male Voice #1", Transcript$Character)
Transcript$Character <- gsub("Man", "Man #1", Transcript$Character)
Transcript$Character <- gsub("<NAME>", "Minx", Transcript$Character)
Transcript$Character <- gsub("<NAME>", "Katz", Transcript$Character)
Transcript$Character <- gsub("<NAME>", "Leo", Transcript$Character)
Transcript$Character <- gsub("Mr. Wong", "Leo", Transcript$Character)
Transcript$Character <- gsub("Mr Fry", "Fry", Transcript$Character)
Transcript$Character <- gsub("<NAME>", "M<NAME>", Transcript$Character)
Transcript$Character <- gsub("Mutant", "Mutant #1", Transcript$Character)
Transcript$Character <- gsub("Nd-Nd", "Ndnd", Transcript$Character)
Transcript$Character <- gsub("Nerd", "Nerd #1", Transcript$Character)
Transcript$Character <- gsub("Nine ", "Nine", Transcript$Character)
Transcript$Character <- gsub("Old man", "Old Man", Transcript$Character)
Transcript$Character <- gsub("OTHERS", "Others", Transcript$Character)
Transcript$Character <- gsub("Photographer", "Photographer #1", Transcript$Character)
Transcript$Character <- gsub("Professor ", "Professor", Transcript$Character)
Transcript$Character <- gsub("<NAME>", "Farnsworth", Transcript$Character)
Transcript$Character <- gsub("<NAME>", "Farnsworth", Transcript$Character)
Transcript$Character <- gsub("<NAME>", "Farnsworth", Transcript$Character)
Transcript$Character <- gsub("Robot", "Robot #1", Transcript$Character)
Transcript$Character <- gsub("Robot Monks, including Bender", "Robot Monks", Transcript$Character)
Transcript$Character <- gsub("<NAME>burgs head", "<NAME>", Transcript$Character)
Transcript$Character <- gsub("Salesman", "Salesman #1", Transcript$Character)
Transcript$Character <- gsub("Schumlp", "Schlump", Transcript$Character)
Transcript$Character <- gsub("Schumlp", "Schlump", Transcript$Character)
Transcript$Character <- gsub("Security woman", "Security Woman", Transcript$Character)
Transcript$Character <- gsub("Sergeant ", "Sergeant", Transcript$Character)
Transcript$Character <- gsub("Sergeant ", "Sergeant", Transcript$Character)
Transcript$Character <- gsub("Snoop Doggs head", "Snoop Doggs", Transcript$Character)
Transcript$Character <- gsub("Soda machine", "Soda Machine", Transcript$Character)
Transcript$Character <- gsub("Soldier", "Soldier #1", Transcript$Character)
Transcript$Character <- gsub("Suicide booth", "Suicide Booth", Transcript$Character)
Transcript$Character <- gsub("Superhero from The Beast with the Billion Backs", "Super Hero", Transcript$Character)
Transcript$Character <- gsub("Takei", "<NAME>", Transcript$Character)
Transcript$Character <- gsub("Thomas Jeffersons head", "<NAME>", Transcript$Character)
Transcript$Character <- gsub("Underwater house salesman", "Underwater House Salesman", Transcript$Character)
Transcript$Character <- gsub("Wermstrom", "Wernstrom", Transcript$Character)
Transcript$Character <- gsub("Wermstrom", "Wernstrom", Transcript$Character)
Transcript$Character <- gsub("Woman", "Woman #1", Transcript$Character)
Transcript$Character <- gsub("Yancy Fry, Jr.", "Yancy", Transcript$Character)
Transcript$Character <- gsub("Yancy Fry Jr.", "Yancy", Transcript$Character)
Transcript$Character <- gsub("Zapp Brannigan", "Zapp", Transcript$Character)
Transcript$Character <- gsub("Zapp Brannigan", "Zapp", Transcript$Character)
Transcript$Character <- gsub("ProfessorFarnsworth", "Farnsworth", Transcript$Character)
Transcript$Character <- gsub("Man #1 #1", "Man #1", Transcript$Character)
Transcript$Character <- gsub("Inez", "<NAME>", Transcript$Character)
Transcript$Character <- trimws(Transcript$Character)
#write.csv(Transcript, "~/Documents/GitHub/R_scripts/Cleaned_transcript.csv")
#### Barchart: No lines per character ####
Character_summary <- Transcript %>%
group_by(Character, Season) %>%
group_by(Number_Lines= n(), add = TRUE) %>%
filter(Number_Lines > 100) %>%
summarise() %>%
as.data.frame()
lead_chars <- Character_summary$Character
Character_summary <- Transcript %>%
group_by(Character, Season) %>%
group_by(Number_Lines= n(), add = TRUE) %>%
summarise() %>%
filter(Character %in% lead_chars) %>% #Remove 1 liners
as.data.frame()
ggplot(data = Character_summary) +
geom_line(aes(x=Season, y= Number_Lines, colour = Character)) +
ylab("Number of Lines") +
theme_bw()
#
# Total_lines_per_character <- Transcript %>%
# subset(Character %in% Character_summary$Character)
Total_lines_per_character <- Character_summary[order(-Character_summary$Number_Lines),] %>%
filter(Number_Lines > 100) %>%
ggplot() +
geom_bar(aes(x=Character)) +
labs(x = 'Character',y = "Number Of Lines") +
theme(axis.text.x = element_text(angle = 90, hjust = 1, vjust = 0.5))
Total_lines_per_character
#### Extract Characters Lines Function ####
characters_lines <- function(selected_character, df_transcript) {
character_words <- df_transcript %>%
filter(Character == selected_character)
return(character_words)
}
#### Generate Corpus Function ####
make_corpus <- function(input_transcript){
trans_corpus <- Corpus(VectorSource(Transcript$Line))
toSpace <- content_transformer(function (x , pattern ) gsub(pattern, " ", x))
trans_corpus <- tm_map(trans_corpus, toSpace, "\n")
trans_corpus <- tm_map(trans_corpus, content_transformer(tolower)) # Convert the text to lower case
trans_corpus <- tm_map(trans_corpus, removeNumbers)
trans_corpus <- tm_map(trans_corpus, removeWords, stopwords("english"))
trans_corpus <- tm_map(trans_corpus, removePunctuation)
trans_corpus <- tm_map(trans_corpus, stripWhitespace) # Eliminate extra white spaces
# Too computationally demanding for my laptop
# trans_corpus <- tm_map(trans_corpus, stemDocument) #removes the ending of similar words
# trans_corpus <- stemCompletion(trans_corpus, dictionary = Transcript$Line)
return(trans_corpus)
}
# Generate Corpus
Futurama_corpus <- make_corpus(Transcript)
Futurama_corpus <- data.frame(text = sapply(Futurama_corpus, as.character), stringsAsFactors = FALSE)
# Sentiment Analysis
emotion_df <- NA
for (i in 1:nrow(Futurama_corpus)){
if (i == 1){ emotion_df <- get_nrc_sentiment(as.character(Futurama_corpus$text[i]))}
if (i > 1) { emotion_df <- rbind(emotion_df, get_nrc_sentiment(as.character(Futurama_corpus$text[i])))}
}
# Bind back to original data
Transcript <- cbind(Transcript, Futurama_corpus, emotion_df)
# Get single value for all sentiment
Transcript$Sentiment <- get_sentiment(Transcript$text)
#### Add Previous and Next Character Spoken to by Episode ####
for (i in 1:nrow(Transcript)){
if (i == 1) {Transcript$PreviousChar[i] <- NA
} else {
Transcript$PreviousChar[i] <- Transcript$Character[i-1]}
}
for (i in 1:nrow(Transcript)){
if (i == nrow(Transcript)) {Transcript$NextChar[i] <- NA
} else {
Transcript$NextChar[i] <- Transcript$Character[i+1]}
}
#### Filtering Sentiment by Character #####
#Does All Characters, Need to filter for the top characters
Sentiment_by_char <- Transcript %>%
subset(Character %in% Character_summary$Character) %>%
# group_by(Character, Cumulative_episode) %>%
group_by(Character) %>%
summarise(
Mean_sentiment = mean(Sentiment)
)
ggplot(data = Sentiment_by_char) +
geom_point(aes(x=Cumulative_episode, y= Mean_sentiment, colour = Character)) +
geom_smooth(aes(x=Cumulative_episode, y= Mean_sentiment, colour = Character), alpha = 0.5) +
facet_wrap(~ Character) +
ylim(-2, 2) +
scale_x_continuous(breaks = c(0,20,40,60,80,100,120,140)) +
xlab('Episode Number') +
ylab('Mean Sentiment') +
theme_bw()
#Emotions per character
Emotions_by_char <- Transcript %>%
subset(Character %in% Character_summary$Character) %>%
group_by(Character) %>%
summarise(
Anger = sum(anger),
Anticipation = sum(anticipation),
Disgust = sum(disgust),
Fear = sum(fear),
Joy = sum(joy),
Sadness = sum(surprise),
Trust = sum(trust),
Negative = sum(negative),
Positive = sum(positive),
PtoN_ratio = Positive/Negative,
Sentiment = sum(Sentiment)
)
#### Interaction Map of Main Characters ####
Interactions_map <- Transcript %>%
filter(Character != PreviousChar) %>% #Removing lines where characters interact with themselves
filter(Character != NextChar) %>%
filter(Character %in% lead_chars) %>% #Removes all but interactions with other main characters
acast(Character ~ PreviousChar, fun.aggregate = length)
data_matrix <- as.matrix(t(Interactions_map))
total_occurrences <- colSums(t(Interactions_map))
co_occurrence <- t(data_matrix) %*% data_matrix #transpose and matrix multiplication
g <- graph.adjacency(co_occurrence,
weighted = TRUE,
diag = FALSE,
mode = "upper")
g <- simplify(g, remove.multiple = F, remove.loops = T, edge.attr.comb = c(weight = "sum", type = "ignore"))
# Sentiment of Interactions
plot(g,
vertex.label.family = "Helvetica",
vertex.label.font = 1,
vertex.shape = "sphere",
vertex.size=total_occurrences/100,
vertex.label.cex=0.8,
vertex.label.color="black",
vertex.frame.color = NA,
edge.width = E(g)$weight/40000,
edge.curved=.1,
layout=layout_in_circle)
#### Interactions between larger characters ####
Interactions_map <- Transcript %>%
filter(Character != PreviousChar) %>% #Removing lines where characters interact with themselves
filter(Character != NextChar) %>%
group_by(Character) %>%
group_by(Number_lines = n(), add = TRUE) %>%
ungroup()
Interactions_map$character_type = 1
for (i in 1:nrow(Interactions_map)){
if (Interactions_map$Number_lines[i] > 3000) {Interactions_map$character_type[i] = 1}
else if (Interactions_map$Number_lines[i] > 500 & Interactions_map$Number_lines[i] < 300) {Interactions_map$character_type[i] =2}
else if (Interactions_map$Number_lines[i] > 100 & Interactions_map$Number_lines[i] < 500) {Interactions_map$character_type[i] =3}
else {Interactions_map$character_type[i] = 4}
}
Interactions_map <- Interactions_map %>%
filter(Number_lines > 10) %>%
acast(Character ~ PreviousChar, fun.aggregate = length)
data_matrix <- as.matrix(t(Interactions_map))
total_occurrences <- colSums(t(Interactions_map))
co_occurrence <- t(data_matrix) %*% data_matrix
g <- graph.adjacency(co_occurrence,
weighted = TRUE,
diag = FALSE,
mode = "upper")
g <- simplify(g, remove.multiple = F, remove.loops = T, edge.attr.comb = c(weight = "sum", type = "ignore"))
plot(g,
vertex.label.family = "Helvetica",
vertex.label.font = 1,
vertex.shape = "sphere",
vertex.size=total_occurrences/300,
vertex.label.cex=0.8,
vertex.label.color="black",
vertex.frame.color = NA,
edge.width = E(g)$weight/40000,
edge.curved=.1,
layout=layout_in_circle)
#### Change in Interactions over the seasons ####
Interactions_map <- Transcript %>%
filter(Character != PreviousChar) %>% #Removing lines where characters interact with themselves
filter(Character != NextChar) %>%
filter(Character %in% lead_chars) %>% #Removes all but interactions with other main characters
filter(Season == 7) %>%
acast(Character ~ PreviousChar, fun.aggregate = length)
data_matrix <- as.matrix(t(Interactions_map))
total_occurrences <- colSums(t(Interactions_map))
co_occurrence <- t(data_matrix) %*% data_matrix
g <- graph.adjacency(co_occurrence,
weighted = TRUE,
diag = FALSE,
mode = "upper")
g <- simplify(g, remove.multiple = F, remove.loops = T, edge.attr.comb = c(weight = "sum", type = "ignore"))
plot(g,
main = "Season Seven",
vertex.label.family = "Helvetica",
vertex.label.font = 1,
vertex.shape = "sphere",
vertex.size=total_occurrences/20,
vertex.label.cex=0.8,
vertex.label.color="black",
vertex.frame.color = NA,
edge.width = E(g)$weight/1000,
edge.curved=.1,
edge.color = "gold",
layout=layout_in_circle)
#### TODO: Which Characters have positive/negative relationships ####
#### Character Dictionaries ####
# Fry's Dictionary
Fry_lines <- Transcript %>%
filter(Character == "Fry")
Fry_lines <- tokenize_words(as.character(Fry_lines$Line))
for (i in 1:4025){
if (i == 1){Fry_dictionary <- Fry_lines[[i]]}
else {Fry_dictionary <- c(Fry_dictionary, Fry_lines[[i]])}
}
unique_fry <- unique(Fry_dictionary) #5019 unique words over 4025 lines
# Farnsworths Dictionary
Farnsworth_lines <- Transcript %>%
filter(Character == "Farnsworth")
Farnsworth_lines <- tokenize_words(as.character(Farnsworth_lines$Line))
for (i in 1:1861){
if (i == 1){Farnsworth_dictionary <- Farnsworth_lines[[i]]}
else {Farnsworth_dictionary <- c(Farnsworth_dictionary, Farnsworth_lines[[i]])}
}
unique_farnsworth <- unique(Farnsworth_dictionary) #4886 unique words over 1861 lines
#### Misc ####
wordcloud(bender, max.words = 200, random.order = FALSE)
##### Word Cloud Functions: Currently Nonfunctional #####
#TODO: Remove extra stop words, or filter for nouns, adjs and verbs
to_text_document_matrix <- function(input_transcript){
trans_corpus <- Corpus(VectorSource(input_transcript$Line))
toSpace <- content_transformer(function (x , pattern ) gsub(pattern, " ", x))
trans_corpus <- tm_map(trans_corpus, toSpace, "\n")
trans_corpus <- tm_map(trans_corpus, content_transformer(tolower)) # Convert the text to lower case
trans_corpus <- tm_map(trans_corpus, removeNumbers)
trans_corpus <- tm_map(trans_corpus, removeWords, stopwords("english"))
#trans_corpus <- tm_map(trans_corpus, removeWords, c("blabla1", "blabla2")) #remove specific words
trans_corpus <- tm_map(trans_corpus, removePunctuation)
trans_corpus <- tm_map(trans_corpus, stripWhitespace) # Eliminate extra white spaces
trans_corpus <- tm_map(trans_corpus, stemDocument) #stemming seems to have messed up the words somewhat..
trans_corpus <- tm_map(trans_corpus, stemCompletion) #completes stems back to single word
# Term document martix
dtm <- TermDocumentMatrix(trans_corpus)
m <- as.matrix(dtm)
v <- sort(rowSums(m),decreasing=TRUE)
d <- data.frame(word = names(v),freq=v)
return(d)
# return(word_cloud_maker(d))
}
word_cloud_maker <- function(d){
set.seed(1234)
return(wordcloud(words = d$word, freq = d$freq, min.freq = 1,
max.words=200, random.order=FALSE, rot.per=0.35,
colors=brewer.pal(8, "Dark2")))
}
characters_lines <- function(selected_character, df_transcript) {
character_words <- df_transcript %>%
filter(Character == selected_character)
return(to_text_document_matrix(character_words))
}
characters_lines("Bender", Transcript)
to_text_document_matrix(Transcript)
<file_sep>library(tidyverse)
setwd("~/Desktop/Meth Array Data ")
annotated_betas <- read_csv("OUTPUT_annotated_beta.csv")
betas_by_gene <- annotated_betas %>%
select(c(3,10,19,21:36)) %>%
separate_rows(UCSC_RefGene_Name, UCSC_RefGene_Group, sep = ";") %>%
mutate(CpG_Name = case_when(
!is.na(UCSC_CpG_Islands_Name) == TRUE ~ UCSC_CpG_Islands_Name,
!is.na(Phantom) == TRUE ~ Phantom
)) %>%
unique() %>%
filter(CHR != "X", CHR != "Y") %>% #removes CHR X and Y
filter(grepl("MIR", UCSC_RefGene_Name)) %>% #To Test with a massive gene
#filter(is.na(UCSC_RefGene_Name)) %>%
group_by(CHR, UCSC_RefGene_Name, Relation_to_UCSC_CpG_Island, UCSC_RefGene_Group, UCSC_CpG_Islands_Name, add = TRUE) %>%
summarise(
CDX8_B= mean(CDX8),
CDX8sdev= sd(CDX8),
CDX8count = n_distinct(CDX8),
CDX8min = min(CDX8),
CDX8P_B= mean(CDX8P),
CDX8Psdev= sd(CDX8P),
CDX8Pcount = n_distinct(CDX8P),
CDX8Pmin = min(CDX8P),
B_change= CDX8P_B - CDX8_B, ##this highlights regions with loci = 1 use bayian estimation to weight samples with more loci
CDX3= mean(CDX3),
CDX3P= mean(CDX3P),
CDX4= mean(CDX4),
CDX7= mean(CDX7),
CDX8= mean(CDX8),
CDX8P= mean(CDX8P),
CDX10= mean(CDX10),
CDX12= mean(CDX12),
CDX13= mean(CDX13),
CDX14P= mean(CDX14P),
CDX15P= mean(CDX15P)
)
ggplot(data = betas_by_gene) +
geom_point(aes(CDX8count, CDX8_B))
tapply(betas_by_gene$CDX1, group_by(
UCSC_RefGene_Name,
Relation_to_UCSC_CpG_Island,
UCSC_RefGene_Group,
UCSC_CpG_Islands_Name),
FUN = mean
)
groupings <- as.data.frame(xtabs(
~UCSC_RefGene_Name + Relation_to_UCSC_CpG_Island + UCSC_RefGene_Group + UCSC_CpG_Islands_Name,
data = betas_by_gene))
application <- as.data.frame(tapply(betas_by_gene$CDX1, list(betas_by_gene$UCSC_RefGene_Name, betas_by_gene$Relation_to_UCSC_CpG_Island, betas_by_gene$UCSC_RefGene_Group, betas_by_gene$UCSC_CpG_Islands_Name), FUN= mean))
<file_sep>#loading tidyverse to read input
library(tidyverse)
# loading itunesr for retrieving itunes review data that we will use in this analysis
library(itunesr)
#loading the magical esquisse library
library(esquisse)
# Flipkart Reviews
reviews <- getReviews(742044692,'in',1)
#converting Rating to numeric type
reviews$Rating <- as.numeric(reviews$Rating)
#let us say we want to see if there's any correlation between rating and review length
reviews$len <- nchar(reviews$Review)
esquisse::esquisser(mtcars)
<file_sep>def factorial(x):
total = x
x -= 1
while x > 1:
total = total * x
x -= 1
return total
print factorial(0)<file_sep>### Load the needed libraries
# Biostrings is needed for pattern identification
# BSgenome.Mmusculus.UCSC.mm10 is the mouse genome
# plyr and reshape2 are needed for manipulating the data format
library(Biostrings)
library(BSgenome.Mmusculus.UCSC.mm10)
library(plyr)
library(ggplot2)
library(reshape2)
library(scales)
# Identify the MspI recongnition sites for each chromosomal entry
# Generate a dataframe with the length of MspI digested fragments
mdf=data.frame();
for (i in seq_along(Mmusculus)){
#print(paste("Processing ",seqnames(Mmusculus)[i], sep=""))
m<-matchPattern("CCGG", Mmusculus[[i]])
starts<-start(gaps(m))
ends<-end(gaps(m))
temp_df<-data.frame(start=starts-4,end=ends,chr=seqnames(Mmusculus)[i]) #actually end = ends
temp_df$start<-replace(temp_df$start, temp_df$start == -3, 0)
temp_df<-temp_df[c("chr","start","end")]
mdf<-rbind(mdf,temp_df)
}
# Extract the digested fragment length
# Keep only the fragments in the range of 40-600 bp
mdf$width=mdf$end-mdf$start
ml<-mdf[mdf$width>39&mdf$width<601,]
counts<-ddply(ml,.(width), nrow)
# Create a plot of the frequency of the fragment lengths (y-axis is logarithmic)
p<-ggplot(counts,aes(x=width, y=V1))+geom_line()
p+scale_y_continuous(trans=log2_trans())<file_sep>---
title: "Testing a Markdown file"
author: "<NAME>"
date: "11/12/2016"
output:
pdf_document: default
html_document: default
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
```
<!-- HTML Script to pull the Bristlr logo as a header. Will this work for a PDF document?? -->
<script> #This script doesn't work if you are outputting to Pdf as its HTML code!
$(document).ready(function() {
$head = $('#header');
$head.prepend('<img src=\"http://www.bristlr.com/img/BristlrTransparent.png" style=\"float: right;width: 150px;\"/>')
});
</script>

```{r}
```
```{perl}
print("hello world perl")
```
```{C++}
int main()
{
std::cout << "Hello World!";
}
```
## R Markdown
This is an R Markdown document. Markdown is a simple formatting syntax for authoring HTML, PDF, and MS Word documents. For more details on using R Markdown see <http://rmarkdown.rstudio.com>.
When you click the **Knit** button a document will be generated that includes both content as well as the output of any embedded R code chunks within the document. You can embed an R code chunk like this:
```{r cars}
summary(cars)
```
## Including Plots
You can also embed plots, for example:
```{r pressure, echo=FALSE}
plot(pressure)
```
Note that the `echo = FALSE` parameter was added to the code chunk to prevent printing of the R code that generated the plot.
<file_sep># R scripts
These are scripts I have made for the R statistical langauage in my endeavour to improve my knowledge of statistical programming.
These are initial data analysis and general R scripts, any bioinformatics based scripts will be held within a separate repository.
<file_sep>##### Title #####
## Import and Annotation of Illumina 450k Array data ##
## <NAME> ##
## 31 July 2018 ##
## Version 1.0 ##
## Changelog:
## v1.0 update- merging of multiple scripts into one
## Requirements:
## Illumina 450k manifest (http://emea.support.illumina.com/downloads/infinium_humanmethylation450_product_files.html)
##### Prerequisites #####
## Loading/ Installing Packages
requiredPackages <- c("tidyverse", "RColorBrewer", "minfi")
ipak <- function(pkg){
new.pkg <- pkg[!(pkg %in% installed.packages()[, "Package"])]
if (length(new.pkg))
install.packages(new.pkg, dependencies = TRUE)
sapply(pkg, require, character.only = TRUE)
}
ipak(requiredPackages)
rm(requiredPackages)
source("https://bioconductor.org/biocLite.R")
biocLite("minfi")
biocLite("GenomicRanges")
library(minfi)
library(GenomicRanges)
##### Extract Data From 450k #####
## Extract Data From S4 Object and export as .csv file
load("dive.norm.rda")
rowRanges <- as.data.frame(dive.norm@rowRanges)
write.csv(rowRanges, "Row_Ranges.csv")
Beta_values <- getBeta(dive.norm)
write.csv(Beta_values, "beta_values.csv")
M_values <- getM(dive.norm)
write.csv(M_values, "M_values.csv")
copy_number <- getCN(dive.norm)
write.csv(copy_number, "copy_number.csv")
##### Anotate Beta Values To Genome #####
#Read and process the Illumina 450k Manifest
Illumina.450k <- read_csv("HumanMethylation450_15017482_v1-2.csv")
Illumina.450k <- Illumina.450k[-c(1,2,3,4,5,6),] #, at the end selects row. Else it removes columns
Illumina.Colnames <- Illumina.450k[1,]
names(Illumina.450k) <- Illumina.Colnames
Illumina.450k <- Illumina.450k[-1,]
names(Illumina.450k)[1] <- "CpG Index"
#Read and process the genome range data from MSKCC, Merge with Illumina data
rowRanges <- read_csv("Row_Ranges.csv")
names(rowRanges)[1] <- "CpG Index"
annotated.Row_Ranges <- merge(rowRanges, Illumina.450k, by= "CpG Index")
#rm(Illumina.450k, Illumina.Colnames, rowRanges) #Cleanup the environment
#Merge annotated genomic ranges with B-values
Beta_values <- read.csv("beta_values.csv")
names(Beta_values)[1] <- "CpG Index"
annotated.beta_values <- merge(annotated.Row_Ranges, Beta_values, by= "CpG Index")
annotated.beta_values <- annotated.beta_values[-c(2, 5, 6, 7, 12, 13, 14, 16, 20)]
names(annotated.beta_values)[24] <- "CDX1"
names(annotated.beta_values)[25] <- "CDX3"
names(annotated.beta_values)[26] <- "CDX4"
names(annotated.beta_values)[27] <- "CDX3P"
names(annotated.beta_values)[28] <- "CDX8"
names(annotated.beta_values)[29] <- "CDX8P"
names(annotated.beta_values)[30] <- "CDX7"
names(annotated.beta_values)[31] <- "CDX10"
names(annotated.beta_values)[32] <- "CDX12"
names(annotated.beta_values)[33] <- "CDX13"
names(annotated.beta_values)[34] <- "CDX14P"
names(annotated.beta_values)[35] <- "CDX15P"
write.csv(annotated.beta_values, "OUTPUT_annotated_beta.csv")
#rm(annotated.Row_Ranges, Beta_values)
###### Extract CDX8 and CDX8P annotated values #####
annotated.CDX88P.beta <- annotated.beta_values
annotated.CDX88P.beta <- annotated.CDX88P.beta[-c(24, 25, 26, 27, 30, 31, 32,33, 34, 35)]
#Change CHR from 1 to 01 etc. for presentation
# CURRENTLY DOESN'T WORK!!
# for (i in 1:nrow(annotated.CDX88P.beta)){
# if (annotated.CDX88P.beta$CHR[i] == 1){
# annotated.CDX88P.beta$CHR <- "01"}
# if (annotated.CDX88P.beta$CHR[i] == 2){
# annotated.CDX88P.beta$CHR <- "02"}
# if (annotated.CDX88P.beta$CHR[i] == 3){
# annotated.CDX88P.beta$CHR <- "03"}
# if (annotated.CDX88P.beta$CHR[i] == 4){
# annotated.CDX88P.beta$CHR <- "04"}
# if (annotated.CDX88P.beta$CHR[i] == 5){
# annotated.CDX88P.beta$CHR <- "05"}
# if (annotated.CDX88P.beta$CHR[i] == 6){
# annotated.CDX88P.beta$CHR <- "06"}
# if (annotated.CDX88P.beta$CHR[i] == 7){
# annotated.CDX88P.beta$CHR <- "07"}
# if (annotated.CDX88P.beta$CHR[i] == 8){
# annotated.CDX88P.beta$CHR <- "08"}
# if (annotated.CDX88P.beta$CHR[i] == 9){
# annotated.CDX88P.beta$CHR <- "09"}
# }
#Calculate change in B values (CDX8P - CDX8)
annotated.CDX88P.beta$B_Change <- annotated.CDX88P.beta$CDX8P_B - annotated.CDX88P.beta$CDX8_B<file_sep>trans_corpus <- Corpus(VectorSource(Transcript$Line))
toSpace <- content_transformer(function (x , pattern ) gsub(pattern, " ", x))
trans_corpus <- tm_map(trans_corpus, toSpace, "\n")
trans_corpus <- tm_map(trans_corpus, content_transformer(tolower)) # Convert the text to lower case
trans_corpus <- tm_map(trans_corpus, removeNumbers)
trans_corpus <- tm_map(trans_corpus, removeWords, stopwords("english"))
#trans_corpus <- tm_map(trans_corpus, removeWords, c("blabla1", "blabla2")) #remove specific words
trans_corpus <- tm_map(trans_corpus, removePunctuation)
trans_corpus <- tm_map(trans_corpus, stripWhitespace) # Eliminate extra white spaces
trans_corpus <- tm_map(trans_corpus, stemDocument) #stemming seems to have messed up the words somewhat..
trans_corpus <- tm_map(trans_corpus, stemCompletion)
<file_sep>raw_data <- diamonds
ggplot(data = diamonds) +
geom_bar(mapping = aes(x = cut))
<file_sep>## CpG Island, Shore and Shelf BED file Generator ##
## <NAME> ##
## 31 JULY 2018 ##
## Version 1.0 ##
## REQUIREMENTS:
## CpG Island BED file downloaded from UCSC (Hg38 assembly)
## Current Caveats for updates:
## There are presumably overlapping regions generated here. Unsure what effect this will have at present
## The -2000 metrics for shelves/shores could make negative values. This needs fixing!
# Load/Install Required Packages
requiredPackages <- c("rtracklayer", "bedr")
ipak <- function(pkg){
new.pkg <- pkg[!(pkg %in% installed.packages()[, "Package"])]
if (length(new.pkg))
install.packages(new.pkg, dependencies = TRUE)
sapply(pkg, require, character.only = TRUE)
}
ipak(requiredPackages)
rm(requiredPackages)
#Read and Cleanup UCSC Hg38 CpG Island BED File
cpg_islands=read.table("Hg38_CpGi.bed", header =FALSE, sep = "\t")
# name the columns
names(cpg_islands)<-c("binNo", "seqnames","start","end","name", "length", "cpgNum", "gcNum", "perCpg", "perGC", "obsExp")
#replace the column labelled name
cpg_islands$name<-"island"
cpg_islands$start=cpg_islands$start
cleaned.cpg_sites <- cpg_islands[c(2,3,4,5)]
## Generate Shore and Shelf Coordinates
Nshore <- as.data.frame(cleaned.cpg_sites[1])
Nshore$start <- cleaned.cpg_sites$start - 2000
Nshore$end <- cleaned.cpg_sites$start
Nshore$name <- "Nshore"
Sshore <- as.data.frame(cleaned.cpg_sites[1])
Sshore$start <- cleaned.cpg_sites$end
Sshore$end <- cleaned.cpg_sites$end + 2000
Sshore$name <- "Sshore"
Nshelf <- as.data.frame(cleaned.cpg_sites[1])
Nshelf$start <- Nshore$start - 2000
Nshelf$end <- Nshore$start
Nshelf$name <- "Nshelf"
Sshelf <- as.data.frame(cleaned.cpg_sites[1])
Sshelf$start <- Sshore$end
Sshelf$end <- Sshore$end + 2000
Sshelf$name <- "Sshelf"
# Data frame merge and file output
CpG_landscape <- rbind(cleaned.cpg_sites, Nshore, Sshore, Nshelf, Sshelf)
write.table(CpG_landscape, "CpG_landscape.bed", sep = "\t", quote= FALSE, row.names = FALSE)
<file_sep>class Triangle:
def __init__(self, hypotenuse=None, opposite=None, adjacent=None):
self.hypotenuse = hypotenuse
self.opposite = opposite
self.adjacent = adjacent
self.calculate_hypotenuse()
self.calculate_opposite()
self.calculate_adjacent()
def calculate_hypotenuse(self):
if self.hypotenuse == None:
self.hypotenuse = math.sqrt(self.opposite**2 + self.adjacent**2)
return self.hypotenuse
else:
return(self.hypotenuse)
def calculate_opposite(self):
if self.opposite == None:
self.opposite = math.sqrt(self.hypotenuse**2 - self.adjacent**2)
return self.opposite
else:
return(self.opposite)
def calculate_adjacent(self):
if self.adjacent == None:
self.adjacent = math.sqrt(self.hypotenuse**2 - self.opposite**2)
return self.adjacent
else:
return(self.adjacent)<file_sep>---
title: "SCLC Data Test"
author: "<NAME>"
date: "14/12/2016"
output: pdf_document
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
library(TCGAbiolinks)
```
<file_sep># Gantt Chart Plotter in R
#
# <NAME>
#
# 10 JUL 18
# References and Tools:
# https://davetang.org/muse/2017/02/03/gantt-chart-using-r/
#MORE ADVANCED GANTT CHART @ https://stackoverflow.com/questions/3550341/gantt-charts-with-r
### Load/Install Dependencies
if (!require("ggplot2")) {
install.packages("ggplot2", dependencies = TRUE)
library(ggplot2)
}
if (!require("RColorBrewer")) {
install.packages("RColorBrewer", dependencies = TRUE)
library(RColorBrewer)
}
if (!require("reshape2")) {
install.packages("reshape2", dependencies = TRUE)
library(reshape2)
}
rm(list = ls()) # Clear workspace
### Making Task Vectors
# ADD A SELECT FILE FUNCTION!!
tasks.df <- read.csv("TEMPLATE_Gantt_Chart02.csv")
tasks.df$Task.Name <- factor(tasks.df$Task.Name, levels = tasks.df$Task.Name)
tasks.df$Start.Date <- as.Date(tasks.df$Start.Date, format = "%d/%m/%y")
tasks.df$End.Date <- as.Date(tasks.df$End.Date, format = "%d/%m/%y")
tasks.melted <- melt(tasks.df, measure.vars = c('Start.Date', 'End.Date'))
### Create the Plot
# starting date to begin plot
start_date <- as.Date('2018-07-16')
ggplot(tasks.melted, aes(value,
Task.Name,
colour = Project)) +
geom_line(size = 5) +
labs(x = '', y = '', title = 'AF: Project Timelines') +
theme_bw(base_size = 8) + #Change this bit for colours, I presume!!
theme(plot.title = element_text(hjust = 0.5),
panel.grid.major.x = element_line(colour="black", linetype = "dashed"),
panel.grid.major = element_blank(),
panel.grid.minor = element_blank(),
axis.text.x = element_text(angle = 0),
legend.position="bottom") +
scale_x_date(date_breaks = "1 week", date_minor_breaks = "1 day", date_labels = "%d/%m/%y")
# see ?strptime if you want your date in a different format
# see http://docs.ggplot2.org/current/scale_date.html if you want to adjust the x-axis
<file_sep>---
title: "CEP-0351 Sample Information"
author: "<NAME>"
output: html_document
---
```{r setup, include= FALSE, echo=FALSE, warning=FALSE, message=FALSE}
knitr::opts_chunk$set(echo = TRUE)
requiredPackages <- c("tidyverse", "RColorBrewer", "reshape2")
ipak <- function(pkg){
new.pkg <- pkg[!(pkg %in% installed.packages()[, "Package"])]
if (length(new.pkg))
install.packages(new.pkg, dependencies = TRUE)
sapply(pkg, require, character.only = TRUE)
}
ipak(requiredPackages)
setwd("~/Documents/GitHub/Private_General/R_scripts/CEP0351_SampleInfo_Mkdwn")
```
### Study Overview
Objective in the trial in to identify DNA methylation markers from patients at baseline and post-treatment to determine at methylation pattern changes which could lead to chemotherapy resistance.
Each timepoint will involve the collection of two blood samples 1x **Cell Save** and 1x **Streck**.
The **Cell Save** sample will run on the *Cell Search* platform to enrich for EpCAM+, DAPI+ and CD45- Cells, any samples with count >5 CTCs will be run on the DEP Array for single cell isolatoion
The **Streck** sample will be run through the *Parsortix* platform which is an epitope independent, size selection methodology.
All samples will have 50% of the Parsortix output banked in Glycerol, with the other 50% having the Total Nuceleic Acid (TNA) content extracted. Additionally, *cfDNA* will be extracted from the Parsortix sample.
### Sample Shipment and Reciept
The project specifies that samples must be recieved with 96 Hours of shipment from Sloan Kettering.
The graph below shows the time taken to arrive in Manchester based upon date of shipment for each sample currently enrolled on CEP-0351.
```{r setup, CEP0351 Sample Raw Data, echo= FALSE, warning= FALSE, message= FALSE}
LIMS.df <- read_csv("CEP0351_LIMS_Summary.csv")
LIMS.df$`Visit Date` <- as.POSIXct(LIMS.df$`Visit Date`, format = "%d/%m/%Y")
LIMS.df$Visit_weekday <- weekdays(LIMS.df$`Visit Date`)
#Turning Login day into date is hard as year displays as 0017 not 2017.
LIMS.df$login_day <- substr(LIMS.df$`Login date/ Time`, 1, 2)
LIMS.df$login_month <- substr(LIMS.df$`Login date/ Time`, 4, 5)
LIMS.df$login_year <- substr(LIMS.df$`Login date/ Time`, 7, 8)
LIMS.df$login_year <- paste("20", LIMS.df$login_year, sep ="")
LIMS.df$login_date <- paste(LIMS.df$login_year, LIMS.df$login_month, LIMS.df$login_day, sep="-")
LIMS.df$login_date <- as.POSIXct(LIMS.df$login_date)
LIMS.df$login_weekday <- weekdays(LIMS.df$login_date)
LIMS.df$time_in_transit <- (LIMS.df$login_date - LIMS.df$`Visit Date`) + 1
# Add Vist and Login Time?? Is that needed??
# Pulling out weekday of shipping and number of days it took to arrive at Manchester
shipment.time.df <- subset(LIMS.df, `Sample Type` == "BLD_C_SAVE")
shipment.time.df <- shipment.time.df[, c(3, 13, 19)]
shipment.time.df$start = 1
time.gantt.df <- melt(shipment.time.df, measure.vars = c('start', 'time_in_transit'))
#Adjusts the value based on the weekday for plotting the Gantt Chart
time.gantt.df$Adjust_value <- time.gantt.df$value
for (i in 1:nrow(time.gantt.df)){
if (time.gantt.df$Visit_weekday[i] == "Tuesday") {
time.gantt.df$Adjust_value[i] <- time.gantt.df$value[i] + 1
}
}
for (i in 1:nrow(time.gantt.df)){
if (time.gantt.df$Visit_weekday[i] == "Wednesday") {
time.gantt.df$Adjust_value[i] <- time.gantt.df$value[i] + 2
}
}
for (i in 1:nrow(time.gantt.df)){
if (time.gantt.df$Visit_weekday[i] == "Thursday") {
time.gantt.df$Adjust_value[i] <- time.gantt.df$value[i] + 3
}
}
for (i in 1:nrow(time.gantt.df)){
if (time.gantt.df$Visit_weekday[i] == "Friday") {
time.gantt.df$Adjust_value[i] <- time.gantt.df$value[i] + 4
}
}
for (i in 1:nrow(time.gantt.df)){
if (time.gantt.df$Visit_weekday[i] == "Saturday") {
time.gantt.df$Adjust_value[i] <- time.gantt.df$value[i] + 5
}
}
for (i in 1:nrow(time.gantt.df)){
if (time.gantt.df$Visit_weekday[i] == "Sunday") {
time.gantt.df$Adjust_value[i] <- time.gantt.df$value[i] + 6
}
}
#Turns the adjusted value into a date from the 0n-01-2018 (1st Jan 2018 = Monday)
time.gantt.df$plotdate <- paste("2018-01-0", time.gantt.df$Adjust_value, sep ="")
time.gantt.df$plotdate <- as.Date(time.gantt.df$plotdate)
#Plots the Gantt Chart
start_date <- as.Date('2018-01-01')
ggplot(time.gantt.df, aes(plotdate, Subject, colour = Visit_weekday)) +
geom_line(size = 5, show.legend = FALSE) +
labs(x = 'Weekday', y = 'Subject', title = 'Shipping and Arrival Times') +
theme_bw(base_size = 12) +
scale_x_date(date_breaks = "2 days", date_minor_breaks = "1 day", date_labels = "%A")
```
## Including Plots
You can also embed plots, for example:
```{r pressure, echo=FALSE}
plot(pressure)
ggplot(diamonds, aes(x=carat,y=price))+geom_point()
```
Note that the `echo = FALSE` parameter was added to the code chunk to prevent printing of the R code that generated the plot.
<file_sep>squares = [x ** 2 for x in range(1,11)]
print squares
print filter(lambda x: x >= 30 and x <= 70, squares)
garbled = "IXXX aXXmX aXXXnXoXXXXXtXhXeXXXXrX sXXXXeXcXXXrXeXt mXXeXsXXXsXaXXXXXXgXeX!XX"
message = filter(lambda x: x!="X", garbled)
print message<file_sep># Gantt Chart Plotter in R
#
# <NAME>
#
# 10 JUL 18
# References and Tools:
# https://davetang.org/muse/2017/02/03/gantt-chart-using-r/
#MORE ADVANCED GANTT CHART @ https://stackoverflow.com/questions/3550341/gantt-charts-with-r
### Load/Install Dependencies
if (!require("ggplot2")) {
install.packages("ggplot2", dependencies = TRUE)
library(ggplot2)
}
if (!require("RColorBrewer")) {
install.packages("RColorBrewer", dependencies = TRUE)
library(RColorBrewer)
}
if (!require("reshape2")) {
install.packages("reshape2", dependencies = TRUE)
library(reshape2)
}
rm(list = ls()) # Clear workspace
### Making Task Vectors
# ADD A SELECT FILE FUNCTION!!
#GENERATES A WARNING!!!
tasks.df <- read.csv("Gantt_Chart_Input_Template.csv")
# Warning message:
# In read.table(file = file, header = header, sep = sep, quote = quote, :
# incomplete final line found by readTableHeader on 'Gantt_Chart_Input_Template.csv'
tasks.df$Task.Name <- factor(tasks.df$Task.Name, levels = tasks.df$Task.Name)
tasks.df$Start.Date <- as.Date(tasks.df$Start.Date, format = "%d/%m/%y")
tasks.df$End.Date <- as.Date(tasks.df$End.Date, format = "%d/%m/%y")
tasks.melted <- melt(tasks.df, measure.vars = c('Start.Date', 'End.Date'))
### Create the Plot
# starting date to begin plot
start_date <- as.Date('2018-07-01')
ggplot(tasks.melted, aes(value, Task.Name)) +
geom_line(size = 10) +
labs(x = '', y = '', title = 'Gantt chart using ggplot2') +
theme_bw(base_size = 12) + #Change this bit for colours, I presume!!
theme(plot.title = element_text(hjust = 0.5),
panel.grid.major.x = element_line(colour="black", linetype = "dashed"),
panel.grid.major = element_blank(),
panel.grid.minor = element_blank(),
axis.text.x = element_text(angle = 0)) +
scale_x_date(date_labels = "%Y %b", limits = c(start_date, NA), date_breaks = '3 months')
# see ?strptime if you want your date in a different format
# see http://docs.ggplot2.org/current/scale_date.html if you want to adjust the x-axis
<file_sep>requiredPackages <- c("tidyverse", "RColorBrewer", "reshape2")
ipak <- function(pkg){
new.pkg <- pkg[!(pkg %in% installed.packages()[, "Package"])]
if (length(new.pkg))
install.packages(new.pkg, dependencies = TRUE)
sapply(pkg, require, character.only = TRUE)
}
ipak(requiredPackages)
setwd("~/Documents/GitHub/Private_General/R_scripts/CEP0351_SampleInfo_Mkdwn")
LIMS.df <- read_csv("CEP0351_LIMS_Summary.csv")
LIMS.df$`Visit Date` <- as.POSIXct(LIMS.df$`Visit Date`, format = "%d/%m/%Y")
LIMS.df$Visit_weekday <- weekdays(LIMS.df$`Visit Date`)
#Turning Login day into date is hard as year displays as 0017 not 2017.
LIMS.df$login_day <- substr(LIMS.df$`Login date/ Time`, 1, 2)
LIMS.df$login_month <- substr(LIMS.df$`Login date/ Time`, 4, 5)
LIMS.df$login_year <- substr(LIMS.df$`Login date/ Time`, 7, 8)
LIMS.df$login_year <- paste("20", LIMS.df$login_year, sep ="")
LIMS.df$login_date <- paste(LIMS.df$login_year, LIMS.df$login_month, LIMS.df$login_day, sep="-")
LIMS.df$login_date <- as.POSIXct(LIMS.df$login_date)
LIMS.df$login_weekday <- weekdays(LIMS.df$login_date)
LIMS.df$time_in_transit <- (LIMS.df$login_date - LIMS.df$`Visit Date`) + 1
# Add Vist and Login Time?? Is that needed??
# Pulling out weekday of shipping and number of days it took to arrive at Manchester
shipment.time.df <- subset(LIMS.df, `Sample Type` == "BLD_C_SAVE")
shipment.time.df <- shipment.time.df[, c(3, 13, 19)]
shipment.time.df$start = 1
time.gantt.df <- melt(shipment.time.df, measure.vars = c('start', 'time_in_transit'))
#Adjusts the value based on the weekday for plotting the Gantt Chart
time.gantt.df$Adjust_value <- time.gantt.df$value
for (i in 1:nrow(time.gantt.df)){
if (time.gantt.df$Visit_weekday[i] == "Tuesday") {
time.gantt.df$Adjust_value[i] <- time.gantt.df$value[i] + 1
}
}
for (i in 1:nrow(time.gantt.df)){
if (time.gantt.df$Visit_weekday[i] == "Wednesday") {
time.gantt.df$Adjust_value[i] <- time.gantt.df$value[i] + 2
}
}
for (i in 1:nrow(time.gantt.df)){
if (time.gantt.df$Visit_weekday[i] == "Thursday") {
time.gantt.df$Adjust_value[i] <- time.gantt.df$value[i] + 3
}
}
for (i in 1:nrow(time.gantt.df)){
if (time.gantt.df$Visit_weekday[i] == "Friday") {
time.gantt.df$Adjust_value[i] <- time.gantt.df$value[i] + 4
}
}
for (i in 1:nrow(time.gantt.df)){
if (time.gantt.df$Visit_weekday[i] == "Saturday") {
time.gantt.df$Adjust_value[i] <- time.gantt.df$value[i] + 5
}
}
for (i in 1:nrow(time.gantt.df)){
if (time.gantt.df$Visit_weekday[i] == "Sunday") {
time.gantt.df$Adjust_value[i] <- time.gantt.df$value[i] + 6
}
}
#Turns the adjusted value into a date from the 0n-01-2018 (1st Jan 2018 = Monday)
time.gantt.df$plotdate <- paste("2018-01-0", time.gantt.df$Adjust_value, sep ="")
time.gantt.df$plotdate <- as.Date(time.gantt.df$plotdate)
#Plots the Gantt Chart
start_date <- as.Date('2018-01-01')
ggplot(time.gantt.df, aes(plotdate, Subject, colour = Visit_weekday)) +
geom_line(size = 10, show.legend = FALSE) +
labs(x = 'Weekday', y = 'Subject', title = 'Shipping and Arrival Times') +
theme_bw(base_size = 12) +
scale_x_date(date_breaks = "2 days", date_minor_breaks = "1 day", date_labels = "%A")
<file_sep>library(tidyverse)
library(gghighlight)
annotated.betas <- read_csv("OUTPUT_annotated_beta.csv")
##### Extract and Cleanup Data #####
#Top and Bottom CDX 1 Genes
ordered.betas <- annotated.betas[with(annotated.betas,order(-annotated.betas$CDX1)),]
top_100 <- ordered.betas[1:100,]
ordered.betas <- annotated.betas[with(annotated.betas,order(annotated.betas$CDX1)),]
bot_100 <- ordered.betas[1:100,]
CDX1_200 <- rbind(top_100, bot_100)
#Top and Bottom CDX 3 Genes
ordered.betas <- annotated.betas[with(annotated.betas,order(-annotated.betas$CDX3)),]
top_100 <- ordered.betas[1:100,]
ordered.betas <- annotated.betas[with(annotated.betas,order(annotated.betas$CDX3)),]
bot_100 <- ordered.betas[1:100,]
CDX3_200 <- rbind(top_100, bot_100)
#Top and Bottom CDX 4 Genes
ordered.betas <- annotated.betas[with(annotated.betas,order(-annotated.betas$CDX4)),]
top_100 <- ordered.betas[1:100,]
ordered.betas <- annotated.betas[with(annotated.betas,order(annotated.betas$CDX4)),]
bot_100 <- ordered.betas[1:100,]
CDX4_200 <- rbind(top_100, bot_100)
#Top and Bottom CDX 3P Genes
ordered.betas <- annotated.betas[with(annotated.betas,order(-annotated.betas$CDX3P)),]
top_100 <- ordered.betas[1:100,]
ordered.betas <- annotated.betas[with(annotated.betas,order(annotated.betas$CDX3P)),]
bot_100 <- ordered.betas[1:100,]
CDX3P_200 <- rbind(top_100, bot_100)
#Top and Bottom CDX 8 Genes
ordered.betas <- annotated.betas[with(annotated.betas,order(-annotated.betas$CDX8)),]
top_100 <- ordered.betas[1:100,]
ordered.betas <- annotated.betas[with(annotated.betas,order(annotated.betas$CDX8)),]
bot_100 <- ordered.betas[1:100,]
CDX8_200 <- rbind(top_100, bot_100)
#Top and Bottom CDX 8P Genes
ordered.betas <- annotated.betas[with(annotated.betas,order(-annotated.betas$CDX8P)),]
top_100 <- ordered.betas[1:100,]
ordered.betas <- annotated.betas[with(annotated.betas,order(annotated.betas$CDX8P)),]
bot_100 <- ordered.betas[1:100,]
CDX8P_200 <- rbind(top_100, bot_100)
#Top and Bottom CDX 7 Genes
ordered.betas <- annotated.betas[with(annotated.betas,order(-annotated.betas$CDX7)),]
top_100 <- ordered.betas[1:100,]
ordered.betas <- annotated.betas[with(annotated.betas,order(annotated.betas$CDX7)),]
bot_100 <- ordered.betas[1:100,]
CDX7_200 <- rbind(top_100, bot_100)
#Top and Bottom CDX 10 Genes
ordered.betas <- annotated.betas[with(annotated.betas,order(-annotated.betas$CDX10)),]
top_100 <- ordered.betas[1:100,]
ordered.betas <- annotated.betas[with(annotated.betas,order(annotated.betas$CDX10)),]
bot_100 <- ordered.betas[1:100,]
CDX10_200 <- rbind(top_100, bot_100)
#Top and Bottom CDX 12 Genes
ordered.betas <- annotated.betas[with(annotated.betas,order(-annotated.betas$CDX12)),]
top_100 <- ordered.betas[1:100,]
ordered.betas <- annotated.betas[with(annotated.betas,order(annotated.betas$CDX12)),]
bot_100 <- ordered.betas[1:100,]
CDX12_200 <- rbind(top_100, bot_100)
#Top and Bottom CDX 13 Genes
ordered.betas <- annotated.betas[with(annotated.betas,order(-annotated.betas$CDX13)),]
top_100 <- ordered.betas[1:100,]
ordered.betas <- annotated.betas[with(annotated.betas,order(annotated.betas$CDX13)),]
bot_100 <- ordered.betas[1:100,]
CDX13_200 <- rbind(top_100, bot_100)
#Top and Bottom CDX 14P Genes
ordered.betas <- annotated.betas[with(annotated.betas,order(-annotated.betas$CDX14P)),]
top_100 <- ordered.betas[1:100,]
ordered.betas <- annotated.betas[with(annotated.betas,order(annotated.betas$CDX14P)),]
bot_100 <- ordered.betas[1:100,]
CDX14P_200 <- rbind(top_100, bot_100)
#Top and Bottom CDX 15P Genes
ordered.betas <- annotated.betas[with(annotated.betas,order(-annotated.betas$CDX15P)),]
top_100 <- ordered.betas[1:100,]
ordered.betas <- annotated.betas[with(annotated.betas,order(annotated.betas$CDX15P)),]
bot_100 <- ordered.betas[1:100,]
CDX15P_200 <- rbind(top_100, bot_100)
#Cleanup
CDX1_200 <- CDX1_200[,-c(1, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 24)]
CDX10_200 <- CDX10_200[,-c(1, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 24)]
CDX12_200 <- CDX12_200[,-c(1, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 24)]
CDX13_200 <- CDX13_200[,-c(1, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 24)]
CDX14P_200 <- CDX14P_200[,-c(1, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 24)]
CDX15P_200 <- CDX15P_200[,-c(1, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 24)]
CDX3_200 <- CDX3_200[,-c(1, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 24)]
CDX3P_200 <- CDX3P_200[,-c(1, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 24)]
CDX4_200 <- CDX4_200[,-c(1, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 24)]
CDX7_200 <- CDX7_200[,-c(1, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 24)]
CDX8_200 <- CDX8_200[,-c(1, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 24)]
CDX8P_200 <- CDX8P_200[,-c(1, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 24)]
#Data Export
write.csv(CDX1_200, "CDX1_200.csv")
write.csv(CDX10_200, "CDX10_200.csv")
write.csv(CDX12_200, "CDX12_200.csv")
write.csv(CDX13_200, "CDX13_200.csv")
write.csv(CDX14P_200, "CDX14P_200.csv")
write.csv(CDX15P_200, "CDX15P_200.csv")
write.csv(CDX3_200, "CDX3_200.csv")
write.csv(CDX3P_200, "CDX3P_200.csv")
write.csv(CDX4_200, "CDX4_200.csv")
write.csv(CDX7_200, "CDX7_200.csv")
write.csv(CDX8_200, "CDX8_200.csv")
write.csv(CDX8P_200, "CDX8P_200.csv")
##### B Value Cleanup and Transpose #####
## CDX 1
trans_CDX1_200 <- CDX1_200[,-c(2:9)]
clean_CDX1_200 <- gather(trans_CDX1_200, key= CDX, value = B-Value, CDX1:CDX15P)
colnames(clean_CDX1_200)[1] <- "CpG_Index"
colnames(clean_CDX1_200)[3] <- "B_value"
## CDX 10
trans_CDX10_200 <- CDX10_200[,-c(2:9)]
clean_CDX10_200 <- gather(trans_CDX10_200, key= CDX, value = B-Value, CDX1:CDX15P)
colnames(clean_CDX10_200)[1] <- "CpG_Index"
colnames(clean_CDX10_200)[3] <- "B_value"
## CDX 12
trans_CDX12_200 <- CDX12_200[,-c(2:9)]
clean_CDX12_200 <- gather(trans_CDX12_200, key= CDX, value = B-Value, CDX1:CDX15P)
colnames(clean_CDX12_200)[1] <- "CpG_Index"
colnames(clean_CDX12_200)[3] <- "B_value"
## CDX 13
trans_CDX13_200 <- CDX13_200[,-c(2:9)]
clean_CDX13_200 <- gather(trans_CDX13_200, key= CDX, value = B-Value, CDX1:CDX15P)
colnames(clean_CDX13_200)[1] <- "CpG_Index"
colnames(clean_CDX13_200)[3] <- "B_value"
## CDX 14P
trans_CDX14P_200 <- CDX14P_200[,-c(2:9)]
clean_CDX14P_200 <- gather(trans_CDX14P_200, key= CDX, value = B-Value, CDX1:CDX15P)
colnames(clean_CDX14P_200)[1] <- "CpG_Index"
colnames(clean_CDX14P_200)[3] <- "B_value"
## CDX 15P
trans_CDX15P_200 <- CDX15P_200[,-c(2:9)]
clean_CDX15P_200 <- gather(trans_CDX15P_200, key= CDX, value = B-Value, CDX1:CDX15P)
colnames(clean_CDX15P_200)[1] <- "CpG_Index"
colnames(clean_CDX15P_200)[3] <- "B_value"
## CDX 3
trans_CDX3_200 <- CDX3_200[,-c(2:9)]
clean_CDX3_200 <- gather(trans_CDX3_200, key= CDX, value = B-Value, CDX1:CDX15P)
colnames(clean_CDX3_200)[1] <- "CpG_Index"
colnames(clean_CDX3_200)[3] <- "B_value"
## CDX 3P
trans_CDX3P_200 <- CDX3P_200[,-c(2:9)]
clean_CDX3P_200 <- gather(trans_CDX3P_200, key= CDX, value = B-Value, CDX1:CDX15P)
colnames(clean_CDX3P_200)[1] <- "CpG_Index"
colnames(clean_CDX3P_200)[3] <- "B_value"
## CDX 4
trans_CDX4_200 <- CDX4_200[,-c(2:9)]
clean_CDX4_200 <- gather(trans_CDX4_200, key= CDX, value = B-Value, CDX1:CDX15P)
colnames(clean_CDX4_200)[1] <- "CpG_Index"
colnames(clean_CDX4_200)[3] <- "B_value"
## CDX 7
trans_CDX7_200 <- CDX7_200[,-c(2:9)]
clean_CDX7_200 <- gather(trans_CDX7_200, key= CDX, value = B-Value, CDX1:CDX15P)
colnames(clean_CDX7_200)[1] <- "CpG_Index"
colnames(clean_CDX7_200)[3] <- "B_value"
## CDX 8
trans_CDX8_200 <- CDX8_200[,-c(2:9)]
clean_CDX8_200 <- gather(trans_CDX8_200, key= CDX, value = B-Value, CDX1:CDX15P)
colnames(clean_CDX8_200)[1] <- "CpG_Index"
colnames(clean_CDX8_200)[3] <- "B_value"
## CDX 8P
trans_CDX8P_200 <- CDX8P_200[,-c(2:9)]
clean_CDX8P_200 <- gather(trans_CDX8P_200, key= CDX, value = B-Value, CDX1:CDX15P)
colnames(clean_CDX8P_200)[1] <- "CpG_Index"
colnames(clean_CDX8P_200)[3] <- "B_value"
pdf(file = "CDX_Variance_TopBot100.pdf")
##### Plot CDX 1 B values #####
ggplot(data = clean_CDX1_200, #select the dataset to be in the graph (but not the actual data values)
### Global Mapping (Across multiple Geom types)
mapping = aes(x = CpG_Index,
y = B_value)) +
labs(x = 'CpG Site',y = 'B Value', title = 'CDX 1 Top and Bottom 100 CpG Sites: B Value') +
### Single Scatterplot ###
geom_point(mapping = aes(,
x = reorder(CpG_Index, -B_value),
y = B_value,
colour = NULL, #ifelse(CDX == "CDX1", "red", "black"), # Changes the colour of the points
size = NULL, # Changes size of the points
alpha = NULL, # Transparency,between 0-1 (usually a fraction)
shape = NULL)) +
gghighlight(CDX == "CDX1", use_group_by = FALSE) +
theme(axis.text.x = element_blank(), axis.ticks = element_blank())
##### Plot CDX 3 B values #####
ggplot(data = clean_CDX3_200, #select the dataset to be in the graph (but not the actual data values)
### Global Mapping (Across multiple Geom types)
mapping = aes(x = CpG_Index,
y = B_value)) +
labs(x = 'CpG Site',y = 'B Value', title = 'CDX 3 Top and Bottom 100 CpG Sites: B Value') +
### Single Scatterplot ###
geom_point(mapping = aes(,
x = reorder(CpG_Index, -B_value),
y = B_value,
colour = NULL, #ifelse(CDX == "CDX1", "red", "black"), # Changes the colour of the points
size = NULL, # Changes size of the points
alpha = NULL, # Transparency,between 0-1 (usually a fraction)
shape = NULL)) +
gghighlight(CDX == "CDX3", use_group_by = FALSE) +
theme(axis.text.x = element_blank(), axis.ticks = element_blank())
##### Plot CDX 3P B values #####
ggplot(data = clean_CDX3P_200, #select the dataset to be in the graph (but not the actual data values)
### Global Mapping (Across multiple Geom types)
mapping = aes(x = CpG_Index,
y = B_value)) +
labs(x = 'CpG Site',y = 'B Value', title = 'CDX 3P Top and Bottom 100 CpG Sites: B Value') +
### Single Scatterplot ###
geom_point(mapping = aes(,
x = reorder(CpG_Index, -B_value),
y = B_value,
colour = NULL, #ifelse(CDX == "CDX1", "red", "black"), # Changes the colour of the points
size = NULL, # Changes size of the points
alpha = NULL, # Transparency,between 0-1 (usually a fraction)
shape = NULL)) +
gghighlight(CDX == "CDX3P", use_group_by = FALSE) +
theme(axis.text.x = element_blank(), axis.ticks = element_blank())
##### Plot CDX 4 values #####
ggplot(data = clean_CDX4_200, #select the dataset to be in the graph (but not the actual data values)
### Global Mapping (Across multiple Geom types)
mapping = aes(x = CpG_Index,
y = B_value)) +
labs(x = 'CpG Site',y = 'B Value', title = 'CDX 4 Top and Bottom 100 CpG Sites: B Value') +
### Single Scatterplot ###
geom_point(mapping = aes(,
x = reorder(CpG_Index, -B_value),
y = B_value,
colour = NULL, #ifelse(CDX == "CDX1", "red", "black"), # Changes the colour of the points
size = NULL, # Changes size of the points
alpha = NULL, # Transparency,between 0-1 (usually a fraction)
shape = NULL)) +
gghighlight(CDX == "CDX4", use_group_by = FALSE) +
theme(axis.text.x = element_blank(), axis.ticks = element_blank())
##### Plot CDX 7 values #####
ggplot(data = clean_CDX7_200, #select the dataset to be in the graph (but not the actual data values)
### Global Mapping (Across multiple Geom types)
mapping = aes(x = CpG_Index,
y = B_value)) +
labs(x = 'CpG Site',y = 'B Value', title = 'CDX 7 Top and Bottom 100 CpG Sites: B Value') +
### Single Scatterplot ###
geom_point(mapping = aes(,
x = reorder(CpG_Index, -B_value),
y = B_value,
colour = NULL, #ifelse(CDX == "CDX1", "red", "black"), # Changes the colour of the points
size = NULL, # Changes size of the points
alpha = NULL, # Transparency,between 0-1 (usually a fraction)
shape = NULL)) +
gghighlight(CDX == "CDX7", use_group_by = FALSE) +
theme(axis.text.x = element_blank(), axis.ticks = element_blank())
##### Plot CDX 8 values #####
ggplot(data = clean_CDX8_200, #select the dataset to be in the graph (but not the actual data values)
### Global Mapping (Across multiple Geom types)
mapping = aes(x = CpG_Index,
y = B_value)) +
labs(x = 'CpG Site',y = 'B Value', title = 'CDX 8 Top and Bottom 100 CpG Sites: B Value') +
### Single Scatterplot ###
geom_point(mapping = aes(,
x = reorder(CpG_Index, -B_value),
y = B_value,
colour = NULL, #ifelse(CDX == "CDX1", "red", "black"), # Changes the colour of the points
size = NULL, # Changes size of the points
alpha = NULL, # Transparency,between 0-1 (usually a fraction)
shape = NULL)) +
gghighlight(CDX == "CDX8", use_group_by = FALSE) +
theme(axis.text.x = element_blank(), axis.ticks = element_blank())
##### Plot CDX 8P values #####
ggplot(data = clean_CDX8P_200, #select the dataset to be in the graph (but not the actual data values)
### Global Mapping (Across multiple Geom types)
mapping = aes(x = CpG_Index,
y = B_value)) +
labs(x = 'CpG Site',y = 'B Value', title = 'CDX 8P Top and Bottom 100 CpG Sites: B Value') +
### Single Scatterplot ###
geom_point(mapping = aes(,
x = reorder(CpG_Index, -B_value),
y = B_value,
colour = NULL, #ifelse(CDX == "CDX1", "red", "black"), # Changes the colour of the points
size = NULL, # Changes size of the points
alpha = NULL, # Transparency,between 0-1 (usually a fraction)
shape = NULL)) +
gghighlight(CDX == "CDX8P", use_group_by = FALSE) +
theme(axis.text.x = element_blank(), axis.ticks = element_blank())
##### Plot CDX 10 values #####
ggplot(data = clean_CDX10_200, #select the dataset to be in the graph (but not the actual data values)
### Global Mapping (Across multiple Geom types)
mapping = aes(x = CpG_Index,
y = B_value)) +
labs(x = 'CpG Site',y = 'B Value', title = 'CDX 10 Top and Bottom 100 CpG Sites: B Value') +
### Single Scatterplot ###
geom_point(mapping = aes(,
x = reorder(CpG_Index, -B_value),
y = B_value,
colour = NULL, #ifelse(CDX == "CDX1", "red", "black"), # Changes the colour of the points
size = NULL, # Changes size of the points
alpha = NULL, # Transparency,between 0-1 (usually a fraction)
shape = NULL)) +
gghighlight(CDX == "CDX10", use_group_by = FALSE) +
theme(axis.text.x = element_blank(), axis.ticks = element_blank())
##### Plot CDX 12 values #####
ggplot(data = clean_CDX12_200, #select the dataset to be in the graph (but not the actual data values)
### Global Mapping (Across multiple Geom types)
mapping = aes(x = CpG_Index,
y = B_value)) +
labs(x = 'CpG Site',y = 'B Value', title = 'CDX 12 Top and Bottom 100 CpG Sites: B Value') +
### Single Scatterplot ###
geom_point(mapping = aes(,
x = reorder(CpG_Index, -B_value),
y = B_value,
colour = NULL, #ifelse(CDX == "CDX1", "red", "black"), # Changes the colour of the points
size = NULL, # Changes size of the points
alpha = NULL, # Transparency,between 0-1 (usually a fraction)
shape = NULL)) +
gghighlight(CDX == "CDX12", use_group_by = FALSE) +
theme(axis.text.x = element_blank(), axis.ticks = element_blank())
##### Plot CDX 13 values #####
ggplot(data = clean_CDX13_200, #select the dataset to be in the graph (but not the actual data values)
### Global Mapping (Across multiple Geom types)
mapping = aes(x = CpG_Index,
y = B_value)) +
labs(x = 'CpG Site',y = 'B Value', title = 'CDX 13 Top and Bottom 100 CpG Sites: B Value') +
### Single Scatterplot ###
geom_point(mapping = aes(,
x = reorder(CpG_Index, -B_value),
y = B_value,
colour = NULL, #ifelse(CDX == "CDX1", "red", "black"), # Changes the colour of the points
size = NULL, # Changes size of the points
alpha = NULL, # Transparency,between 0-1 (usually a fraction)
shape = NULL)) +
gghighlight(CDX == "CDX13", use_group_by = FALSE) +
theme(axis.text.x = element_blank(), axis.ticks = element_blank())
##### Plot CDX 14P values #####
ggplot(data = clean_CDX14P_200, #select the dataset to be in the graph (but not the actual data values)
### Global Mapping (Across multiple Geom types)
mapping = aes(x = CpG_Index,
y = B_value)) +
labs(x = 'CpG Site',y = 'B Value', title = 'CDX 14P Top and Bottom 100 CpG Sites: B Value') +
### Single Scatterplot ###
geom_point(mapping = aes(,
x = reorder(CpG_Index, -B_value),
y = B_value,
colour = NULL, #ifelse(CDX == "CDX1", "red", "black"), # Changes the colour of the points
size = NULL, # Changes size of the points
alpha = NULL, # Transparency,between 0-1 (usually a fraction)
shape = NULL)) +
gghighlight(CDX == "CDX14P", use_group_by = FALSE) +
theme(axis.text.x = element_blank(), axis.ticks = element_blank())
##### Plot CDX 15P values #####
ggplot(data = clean_CDX15P_200, #select the dataset to be in the graph (but not the actual data values)
### Global Mapping (Across multiple Geom types)
mapping = aes(x = CpG_Index,
y = B_value)) +
labs(x = 'CpG Site',y = 'B Value', title = 'CDX 15P Top and Bottom 100 CpG Sites: B Value') +
### Single Scatterplot ###
geom_point(mapping = aes(,
x = reorder(CpG_Index, -B_value),
y = B_value,
colour = NULL, #ifelse(CDX == "CDX1", "red", "black"), # Changes the colour of the points
size = NULL, # Changes size of the points
alpha = NULL, # Transparency,between 0-1 (usually a fraction)
shape = NULL)) +
gghighlight(CDX == "CDX15P", use_group_by = FALSE) +
theme(axis.text.x = element_blank(), axis.ticks = element_blank())
dev.off()<file_sep>##########################
# Human in silico restriction digest. SINGLE CHROMOSOME VERSION
#
# Script to process Mse1 restriction digest profile for the human genome.
# Then look to alter this through addition of secondary CH3-specific enzymes.
##########################
##########################
# Script is ammended from Github user kalyankpy.
# https://gist.github.com/kalyankpy/a65d5f8824f00abe04da#file-genomic_digestion-r
##########################
### Load the needed libraries
# plyr and reshape2 are needed for manipulating the data format
library(Biostrings) #Required for pattern ID
library(BSgenome.Hsapiens.UCSC.hg19) #Human Genome hg19 (To be updated)
library(plyr)
library(ggplot2)
library(reshape2)
library(scales)
library(stringr)
mdf=data.frame();
#Location of sites in Chr21 for MseI digestion
m<-matchPattern("TTAA", Hsapiens$chr21)
starts<-start(gaps(m))
ends<-end(gaps(m))
temp_df<-data.frame(start=starts,end=ends,chr="chr21") #actually end = ends
temp_df$start<-replace(temp_df$start, temp_df$start == -2, 1)
temp_df<-temp_df[c("chr","start","end")]
mdf<-rbind(mdf,temp_df)
DNAseq <- str_sub(Hsapiens$chr21, starts, ends)
mdf$DNAseq <- DNAseq
No.MspI.site <- str_count(mdf$DNAseq, 'CCGG')
mdf$MspIcount <- as.numeric(No.MspI.site)
mdf$width=(mdf$end-mdf$start) +1
MseI.df <- mdf
MspI.pos <- subset(mdf,mdf$MspIcount > 0)
MspI.neg <- subset(mdf,mdf$MspIcount == 0)
#Second Digestion with MspI (same site as HpaII- Methyl specific enzyme)
#MspIsite <- str_locate_all(mdf$DNAseq, "CCGG")
MspI.dig=DataFrame()
# a = list()
for(i in 1:nrow(MspI.pos)){
m<-matchPattern("CCGG", MspI.pos$DNAseq[i])
# a[[i]] <- m
starts <- start(gaps(m))
ends <- end(gaps(m))
#ifelse(starts == -2, starts == 0, starts)
temp_df <- data.frame(start = starts, end = ends, FragNo = i, chr="chr21")
MspI.dig <- rbind(MspI.dig, temp_df)
}
# df.test <- lapply(m, function(x){
# return start(m[[x]])
# })
#
DNAseq <- str_sub(MspI.pos$DNAseq[MspI.dig$FragNo], MspI.dig$start, MspI.dig$end)
MspI.dig$DNAseq <- DNAseq
MspI.dig$width =(MspI.dig$end-MspI.dig$start) +1
MspI.digest<-data.frame(Chr=MspI.dig$chr, width=MspI.dig$width ,DNAseq=MspI.dig$DNAseq)
MseI.Negative.fragments <-data.frame(Chr=MspI.neg$chr, width=MspI.neg$width , DNAseq=MspI.neg$DNAseq)
MspI.total.digest <- rbind(MspI.digest, MseI.Negative.fragments)
# Visualise Data
Mse.trim <- MseI.df[MseI.df$width > 5 & MseI.df$width < 601, ]
counts.Mse <- ddply(Mse.trim, .(width), nrow)
Msp.trim <- MspI.total.digest[MspI.total.digest$width > 5 & MspI.total.digest$width < 601, ]
counts.Msp <- ddply(Msp.trim, .(width), nrow)
Changes=data.frame();
Changes <- counts.Msp
Changes$V1 = Changes$V1 - counts.Mse$V1
p <- ggplot(counts.Msp, aes(x = width)) +
geom_line(aes(y = counts.Mse$V1, colour = "MseI Digest")) +
geom_line(aes(y = counts.Msp$V1, colour = "MseI & MspI")) +
geom_line(aes(y = Changes$V1, colour = "Change in Fragments"))
p + scale_y_continuous()
#p + scale_y_continuous(trans = log2_trans())
<file_sep>#Clear the memory
rm(list=ls())
#Download some important packages
requiredPackages <- c("tidyverse", "maps", "mapdata", "maptools", "rgdal", "ggmap", "rgeos", "broom", "plyr")
ipak <- function(pkg){
new.pkg <- pkg[!(pkg %in% installed.packages()[, "Package"])]
if (length(new.pkg))
install.packages(new.pkg, dependencies = TRUE)
sapply(pkg, require, character.only = TRUE)
}
ipak(requiredPackages)
#Load the shapefile - make sure you change the filepath to where you saved the shapefiles
shapefile <- readOGR(dsn="~/Google Drive/Data Studio Projects/Mapping Opportunities/NUTS_Level_2_January_2018_Super_Generalised_Clipped_Boundaries_in_the_United_Kingdom",
layer="NUTS_Level_2_January_2018_Super_Generalised_Clipped_Boundaries_in_the_United_Kingdom")
counties_wanted <- c("Cheshire",
"Cumbria",
"Derbyshire and Nottinghamshire",
"East Wales",
"East Yorkshire and Northern Lincolnshire",
"Eastern Scotland",
"Greater Manchester",
"Herefordshire, Worcestershire and Warwickshire",
"Lancashire",
"Leicestershire, Rutland and Northamptonshire",
"Lincolnshire",
"Merseyside",
"North Yorkshire",
"Northumberland and Tyne and Wear",
"Shropshire and Staffordshire",
"South Yorkshire",
"Southern Scotland",
"Tees Valley and Durham",
"West Central Scotland",
"West Midlands",
"West Wales",
"West Yorkshire")
#Reshape for ggplot2 using the Broom package
mapdata <- tidy(shapefile, region="nuts218nm")
mapdata<- mapdata[mapdata$id %in% counties_wanted, ]
#Check the shapefile has loaded correctly by plotting an outline map of the UK
gg <- ggplot() + geom_polygon(data = mapdata, aes(x = long, y = lat, group = group), color = "#FFFFFF", size = 0.25, fill= "#40a558")
gg <- gg + coord_fixed(1) #This gives the map a 1:1 aspect ratio to prevent the map from appearing squashed
gg <- gg + theme(panel.background = element_rect(fill = "#cce5f9"))
gg <- gg + theme(panel.grid.major = element_blank(), panel.grid.minor = element_blank(), legend.position = 'none')
gg <- gg + theme(axis.title.x=element_blank(), axis.text.x = element_blank(), axis.ticks.x = element_blank())
gg <- gg + theme(axis.title.y=element_blank(), axis.text.y = element_blank(), axis.ticks.y = element_blank())
gg <- gg + theme(panel.border = element_rect(colour = "black", fill=NA, size=1))
print(gg)
#### NOT CURRENTLY WORKING: DISPLAYS MULTIPLE POINTS AND AREAS I'VE REMOVED!! FROM MAP###
shapefile <- readOGR(dsn="~/Google Drive/Data Studio Projects/Mapping Opportunities/Major_Towns_and_Cities_December_2015_Boundaries",
layer="Major_Towns_and_Cities_December_2015_Boundaries")
citydata <- tidy(shapefile, region="tcity15nm")
gg <- gg + geom_polygon(data = citydata, aes(x = long, y = lat, group = group))
######
### Google API key needed!!!
library(ggmap)
map <- get_map(location = 'Europe', zoom = 4)
#####
cities <- citydata %>%
group_by() %>%
summarise(id_count = count(id))
<file_sep>def remove_duplicates(int_list):
dedupe = []
for i in range(len(int_list)):
print "loop 1: %s" %(int_list[i])
if len(dedupe) == 0:
dedupe.append(int_list[0])
for c in range(len(dedupe)):
print "loop 2: %s" %(dedupe[c])
if int_list[i] != dedupe[c]:
print ("adding to list")
dedupe.append(int_list[i])
else:
print ""
return dedupe
print remove_duplicates([1,1,2,2])<file_sep>requiredPackages <- c("tidyverse", "RColorBrewer", "reshape2", "visdat", "caTools")
ipak <- function(pkg){
new.pkg <- pkg[!(pkg %in% installed.packages()[, "Package"])]
if (length(new.pkg))
install.packages(new.pkg, dependencies = TRUE)
sapply(pkg, require, character.only = TRUE)
}
ipak(requiredPackages)
setwd("~/Documents/GitHub/Titanic_Kaggle")
titanic_train <- read.csv("train.csv", na.strings = c(""))
titanic_test <- read.csv("test.csv", na.strings = c(""))
#Test set missing Survived column, add it and treat empty values as NA.
#add a column to differentiate training or test set.
titanic_test$Survived = NA
titanic_train$Set <- rep("train", nrow(titanic_train))
titanic_test$Set <- rep("test", nrow(titanic_test))
#Combine test set to training set.
titanic = rbind(titanic_train, titanic_test)
#What data types do we have?
str(titanic)
head(titanic)
summary(titanic)<file_sep>library(cgdsr)
library(stringr)
# Create CGDS object
mycgds = CGDS("http://www.cbioportal.org/public-portal/")
test(mycgds)
# Get list of cancer studies at server
getCancerStudies(mycgds)
# Get available case lists (collection of samples) for a given cancer study
mycancerstudy = getCancerStudies(mycgds)
#Outputs a yes/no based on cancer type, change name to alter cancer type
cancer.bool <- str_count(mycancerstudy$name, 'Small Cell Lung Cancer')
mycancerstudy$cancer.bool <- cancer.bool
mycancerstudy <- subset(mycancerstudy, (cancer.bool == 1))
write.csv(mycancerstudy, 'mycancerstudy.csv')
no.cols <- nrow(mycancerstudy)
studyID <- mycancerstudy$cancer_study_id
mygeneticprofile = "" #this clears any data in mygeneticprofile but shouldn't be needed
############
## Get Genetic Profiles
############
for(i in 1:no.cols) #makes a loop to get genetic profiles for each cancer study
{
profileloop = getGeneticProfiles(mycgds, studyID[i])
mygeneticprofile = rbind(mygeneticprofile, profileloop)
}
write.csv(mygeneticprofile, 'mygeneticprofile.csv')
###########
## Get Mutation Data (Needs to be about a specific gene)
###########
mutationprofile = ""
for(i in 1:no.cols)
{
mutationloop = getMutationData(mycgds, studyID[i], mygeneticprofile[i]) #genetic profile part doesn't work
mutationprofile = rbind(mutationprofile, mutationloop)
}
write.csv(mutationprofile, 'mutationprofile.csv')
#can't currently bind mycancerstudy and mygeneticprofile as there is no true shared field!!
##############################################
#This part of the demo script isn't needed but is included incase it is needed later
# Get data slices for a specified list of genes, genetic profile and case list
#getProfileData(mycgds,c('BRCA1','BRCA2'),mygeneticprofile,mycaselist)
# Get clinical data for the case list
myclinicaldata = getClinicalData(mycgds,mycaselist)
# documentation
help('cgdsr')
help('CGDS')<file_sep>---
title: "Titanic_Markdown"
author: "<NAME>"
date: "13/07/2018"
output: html_document
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
requiredPackages <- c("tidyverse", "RColorBrewer", "reshape2", "visdat", "caTools")
ipak <- function(pkg){
new.pkg <- pkg[!(pkg %in% installed.packages()[, "Package"])]
if (length(new.pkg))
install.packages(new.pkg, dependencies = TRUE)
sapply(pkg, require, character.only = TRUE)
}
ipak(requiredPackages)
setwd("~/Documents/GitHub/Titanic_Kaggle")
```
## R Markdown
Stuff
```{r cars}
titanic_train <- read.csv("train.csv", na.strings = c(""))
titanic_test <- read.csv("test.csv", na.strings = c(""))
#Test set missing Survived column, add it and treat empty values as NA.
#add a column to differentiate training or test set.
titanic_test$Survived = NA
titanic_train$Set <- rep("train", nrow(titanic_train))
titanic_test$Set <- rep("test", nrow(titanic_test))
#Combine test set to training set.
titanic = rbind(titanic_train, titanic_test)
#What data types do we have?
str(titanic)
head(titanic)
summary(titanic)
```
## Including Plots
You can also embed plots, for example:
```{r pressure, echo=FALSE}
plot(pressure)
```
Note that the `echo = FALSE` parameter was added to the code chunk to prevent printing of the R code that generated the plot.
<file_sep>#########################################################
### CDX RNAseq Heatmap Generator
### <NAME>
### 180702
### Version 0.1
#########################################################
#########################################################
### Changelog:
#########################################################
#########################################################
### References and Tools:
### Basic Heatmap Instructions
### https://flowingdata.com/2010/01/21/how-to-make-a-heatmap-a-quick-and-easy-solution/
###
### In-depth Heatmap Tutorial
### http://sebastianraschka.com/Articles/heatmaps_in_r.html
### https://github.com/rasbt/R_snippets/tree/master/heatmaps
#########################################################
#########################################################
### A) Installing and loading required packages, setting working directory
#########################################################
if (!require("gplots")) {
install.packages("gplots", dependencies = TRUE)
library(gplots)
}
if (!require("RColorBrewer")) {
install.packages("RColorBrewer", dependencies = TRUE)
library(RColorBrewer)
}
#Mac OS Requires X11 and XQuartz (https://www.xquartz.org/)
if (!require("tcltk")) {
install.packages("tcltk", dependencies = TRUE)
library(tcltk)
}
# https://stackoverflow.com/questions/33511964/r-windows-os-choose-dir-file-chooser-wont-open-at-working-directory
getwd()
dir <- tclvalue(tkchooseDirectory())
setwd(dir)
#########################################################
### B) Reading in data and transform it into matrix format
#########################################################
RNAseq.dataframe <- read.csv("SCLC_CDX_1-32_P3_RPKM.csv", header=TRUE, sep=",")
RNAseq.dataframe <- subset(RNAseq.dataframe, RNAseq.dataframe$gene_biotype == "protein_coding") # only select protein coding RNA transcripts
row.names(RNAseq.dataframe) <- RNAseq.dataframe$gene_id # labels column by gene ID (not gene name due to duplications)
RNAseq.dataframe <- RNAseq.dataframe[,5:17] # removes the first 4 columns of the data frame which are not needed
RNAseq.matrix <- data.matrix(RNAseq.dataframe) # turn dataframe into a matrix for use with heatmap
# rnames <- data[,1] # assign labels in column 1 to "rnames"
# mat_data <- data.matrix(data[,2:ncol(data)]) # transform column 2-5 into a matrix
# rownames(mat_data) <- rnames # assign row names
# # Basic Heatmaps
RNAseq.heatmap <- heatmap(RNAseq.matrix, Rowv=NA, Colv=NA, col = cm.colors(256), margins=c(5,10))
breakpoints = c("0.0000001", "1", "5")
#
heatmap.2(RNAseq.matrix, trace='none', breaks=breakpoints, col=greenred(25), symm=F,symkey=F,symbreaks=T, scale="none")
##############
colors = c(seq(0,0.00001,length=100),seq(0.000011,1,length=100),seq(1.00001,50,length=100))
my_palette <- colorRampPalette(c("green", "white", "red"))(n = 299)
heatmap.2(RNAseq.matrix, col=my_palette, breaks=colors, density.info="none", trace="none", symm=F,symkey=F,symbreaks=T, scale="none")
#############
#########################################################
### C) Customizing and plotting the heat map
#########################################################
# creates a own color palette from red to green
my_palette <- colorRampPalette(c("red", "yellow", "green"))(n = 20)
# # (optional) defines the color breaks manually for a "skewed" color transition
# col_breaks = c(seq(-1,0,length=100), # for red
# seq(0.01,0.8,length=100), # for yellow
# seq(0.81,1,length=100)) # for green
# creates a 15 x 15 inch image
png("./CDX_Heatmap01.png", # create PNG for the heat map
width = 15*900, # 5 x 300 pixels
height = 15*900,
res = 900, # 300 pixels per inch
pointsize = 8) # smaller font size
heatmap.2(RNAseq.matrix,
# cellnote = RNAseq.matrix, # same data set for cell labels
main = "Correlation", # heat map title
notecol="black", # change font color of cell labels to black
density.info="none", # turns off density plot inside color legend
trace="none", # turns off trace lines inside the heat map
margins =c(12,9), # widens margins around plot
col=my_palette, # use on color palette defined earlier
# breaks=col_breaks, # enable color transition at specified limits
dendrogram="column", # only draw a column dendrogram
Colv="NA") # turn off column clustering
dev.off() # close the PNG device<file_sep>def median(input_list):
#sort the list numerically
input_list = sorted(input_list)
print input_list
#work out if list has odd or even numbers in it
if len(input_list) % 2 == 1: #if value is odd
print "odd pipeline"
index = int((len(input_list)/ 2) + 0.5)
median = input_list[index]
print "median is: %s" %(median)
else:
print "even pipeline"
index = len(input_list) / 2
print "length list / 2 = %s" %(index)
upper = input_list[index]
print "upper number is = %s" %(upper)
lower = input_list[index - 1]
print "lower number is = %s" %(lower)
median = (lower + upper) / 2.0
print "median is: %s" %(median)
return median
print median([2,1,4,2])<file_sep>import mysql.connector
import pandas as pd
import sql_maker # A function script made for SQL import
# ===== Open Database Connection =================
# Replace DB credentials with credentials for
# your database.
# todo: input credentials file rather than hard code
# ------------------------------------------------
# Open database connection
mydb = mysql.connector.connect(
user="adam",
passwd="<PASSWORD>",
host="localhost",
database="testing"
)
# ===== Define Input File and Name =============
# This section is the most changing as you will
# alter depending on the format your data is in.
#
# Key Outputs:
# - input_data_frame = df containing data
# - table_name = Format("Schema.Table")
# ------------------------------------------------
# NOTE: If you don't have a Database (Schema)
# Run: CREATE DATABASE db_name;
# in the console.
# ------------------------------------------------
csv_filepath = \
"/Users/adam/Documents/referals_data/mysql/data_import/xero_list_condensed.csv"
input_data_frame = pd.read_csv(csv_filepath)
table_name = "referrals.xero_list_condensed"
# ===== Build and Execute SQL Commands ===========
# Makes two statements:
# - Create a Table
# - Insert into a Table
# ------------------------------------------------
# NOTE: Import is sensitive to column headers
# that contain a " " at the end.
# ------------------------------------------------
# Test DB connection, return SQL version
cursor = mydb.cursor()
try:
cursor.execute(sql_maker.sql_create(table_name,
input_data_frame,
"create"))
cursor.execute(sql_maker.sql_create(table_name,
input_data_frame,
"insert"))
mydb.commit()
print(cursor.rowcount, "Record inserted successfully into Laptop table")
cursor.close()
except mysql.connector.Error as error:
print("Failed to insert record into Laptop table {}".format(error))
# ===== Close Database Connection ================
# Closes the Database connection after running
# ------------------------------------------------
finally:
if (mydb.is_connected()):
mydb.close()
print("MySQL connection is closed")<file_sep># Automatic Package installer for R
#
# <NAME>, Initial Version 15NOV16
# Installs multiple R packages and repositories in one simple script
# Intro text.
cat("R Package Installer - <NAME>, Feburary 2017.\n\n",
"This tool automatically installs multiple packages used in R \n",
"Please select local libraries during install and select install ALL \n",
sep="")
#####
#Install from CRAN repositories
#####
#Data Manipulation Packages
install.packages(c("stringr", "plyr", "sqldf", "forecast", "reshape2", "XML", "gdata"))
#Graphical Processing
install.packages(c("ggplot2", "RColorBrewer", "colorspace", "manipulate", "scales", "labelling"))
#Statistics
install.packages(c("qcc"))
#Machine Learning
#install.packages(c("randomForest"))
#Misc
install.packages(c("lubridate", "knitr", "devtools"))
#Install additional packages (For External use)
#install.packages(c("Package_Name")) #remove the "#" at beginning of line to include
#####
#Bioconductor Packages
#####
#Install Bioconductor
## try http:// if https:// URLs are not supported
source("http://bioconductor.org/biocLite.R")
biocLite()
a
## RE-RUN THIS SECTION OF CODE INDIVIDUALLY ##
#
#Install Bioconductor packages
#
# Sequence Read Analysis
biocLite(c("Rsamtools", "IRanges", "GenomicRanges", "GenomicAlignments", "GenomicFeatures", "ShortRead"))
a
#
# Sequence Alignment
biocLite(c("muscle", "Biostrings", "biomaRt", "rtracklayer", "msa")
a
#
# Reference Genomes
biocLite(c("BSgenome", "BSgenome.Mmusculus.UCSC.mm10","BSgenome.Hsapiens.UCSC.hg19"))
a
#
biocLite()
a
##
<file_sep>#### Accessing Spotify Data ####
#### <NAME>
#### 13 May 2019
#### Prerequisites ####
requiredPackages <- c("tidyverse", "spotifyr", "knitr", "ggjoy")
ipak <- function(pkg){
new.pkg <- pkg[!(pkg %in% installed.packages()[, "Package"])]
if (length(new.pkg))
install.packages(new.pkg, dependencies = TRUE)
sapply(pkg, require, character.only = TRUE)
}
ipak(requiredPackages)
Sys.setenv(SPOTIFY_CLIENT_ID = 'XXXX')
Sys.setenv(SPOTIFY_CLIENT_SECRET = 'XXXX')
access_token <- get_spotify_access_token()
#### Data Import ####
death_grips_albums <- c("The Money Store", "No Love Deep Web", "Government Plates", "The Powers That B", "Bottomless Pit", "Year Of The Snitch")
song_data <- get_album_data(artist = "Death Grips", albums = death_grips_albums)
joy <- get_artist_audio_features('red hot chilli peppers')
joy <- rbind(joy, get_artist_audio_features('metallica'))
joy <- rbind(joy, get_artist_audio_features('taylor swift'))
joy <- rbind(joy, get_artist_audio_features('babymetal'))
joy <- rbind(joy, get_artist_audio_features('bts'))
joy <- rbind(joy, get_artist_audio_features('disturbed'))
joy %>%
arrange(-valence) %>%
select(artist_name, track_name, valence) %>%
head(5) %>%
kable()
ggplot(joy, aes(x = valence, y = artist_name)) +
geom_joy() +
theme_joy() +
ggtitle("Joyplot of Joy Division's joy distributions", subtitle = "Based on valence pulled from Spotify's Web API with spotifyr")
analysis <- get_track_audio_analysis('3bIQIx7hveYPQDdhjZ1kcq')
<file_sep>##### Title #####
## Plots for Beta Values from Sundar dataset against CDX dataset ##
## <NAME> ##
## 31 July 2018 ##
## Version 0.1 ##
## References:
## https://www.ncbi.nlm.nih.gov/pmc/articles/PMC5391602/
## Dataset: https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSE92511
## Requirements:
## Illumina 450k manifest (http://emea.support.illumina.com/downloads/infinium_humanmethylation450_product_files.html)
##### Prerequisites #####
## Loading/ Installing Packages
requiredPackages <- c("tidyverse", "RColorBrewer", "minfi", "rvest")
ipak <- function(pkg){
new.pkg <- pkg[!(pkg %in% installed.packages()[, "Package"])]
if (length(new.pkg))
install.packages(new.pkg, dependencies = TRUE)
sapply(pkg, require, character.only = TRUE)
}
ipak(requiredPackages)
rm(requiredPackages)
##### Load Datasets #####
##### Frequency Plot: NonSmokers #####
ggplot() +
geom_density(data = Sundar_Betas,
aes(x=NS_1_B),
colour = "light grey") +
geom_density(data = Sundar_Betas,
aes(x=NS_2_B),
colour = "light grey") +
geom_density(data = Sundar_Betas,
aes(x=NS_3_B),
colour = "light grey") +
geom_density(data = Sundar_Betas,
aes(x=NS_4_B),
colour = "light grey") +
geom_density(data = Sundar_Betas,
aes(x=NS_5_B),
colour = "light grey") +
geom_density(data = Sundar_Betas,
aes(x=NS_6_B),
colour = "light grey") +
geom_density(data = Sundar_Betas,
aes(x=NS_7_B),
colour = "light grey") +
geom_density(data = Sundar_Betas,
aes(x=NS_8_B),
colour = "light grey") +
geom_density(data = Sundar_Betas,
aes(x=NS_Mean),
colour = "Black") +
xlim(-0.1,1.1) +
ylim(0,3.5) +
labs(x = 'Beta Value',y = 'Density', title = 'Chromosomal B-value Distribution of Sundar Non-Smokers') +
# theme(panel.grid.minor = element_blank(),
# panel.background = element_blank(),
# axis.line = element_line(colour = "black"),
# panel.grid.major = element_line(colour = "light grey")) +
theme_bw()
##### Frequency Plot: Smokers #####
ggplot() +
geom_density(data = Sundar_Betas,
aes(x=S_1_B),
colour = "light grey") +
geom_density(data = Sundar_Betas,
aes(x=S_2_B),
colour = "light grey") +
geom_density(data = Sundar_Betas,
aes(x=S_3_B),
colour = "light grey") +
geom_density(data = Sundar_Betas,
aes(x=S_4_B),
colour = "light grey") +
geom_density(data = Sundar_Betas,
aes(x=S_5_B),
colour = "light grey") +
geom_density(data = Sundar_Betas,
aes(x=S_6_B),
colour = "light grey") +
geom_density(data = Sundar_Betas,
aes(x=S_7_B),
colour = "light grey") +
geom_density(data = Sundar_Betas,
aes(x=S_8_B),
colour = "light grey") +
geom_density(data = Sundar_Betas,
aes(x=S_Mean),
colour = "Black") +
xlim(-0.1,1.1) +
ylim(0,3.5) +
labs(x = 'Beta Value',y = 'Density', title = 'Chromosomal B-value Distribution of Sundar Smokers') +
# theme(panel.grid.minor = element_blank(),
# panel.background = element_blank(),
# axis.line = element_line(colour = "black"),
# panel.grid.major = element_line(colour = "light grey")) +
theme_bw()
##### Frequency Plot: COPD #####
ggplot() +
geom_density(data = Sundar_Betas,
aes(x=COPD_1_B),
colour = "light grey") +
geom_density(data = Sundar_Betas,
aes(x=COPD_2_B),
colour = "light grey") +
geom_density(data = Sundar_Betas,
aes(x=COPD_3_B),
colour = "light grey") +
geom_density(data = Sundar_Betas,
aes(x=COPD_4_B),
colour = "light grey") +
geom_density(data = Sundar_Betas,
aes(x=COPD_5_B),
colour = "light grey") +
geom_density(data = Sundar_Betas,
aes(x=COPD_6_B),
colour = "light grey") +
geom_density(data = Sundar_Betas,
aes(x=COPD_7_B),
colour = "light grey") +
geom_density(data = Sundar_Betas,
aes(x=COPD_8_B),
colour = "light grey") +
geom_density(data = Sundar_Betas,
aes(x=COPD_Mean),
colour = "Black") +
xlim(-0.1,1.1) +
ylim(0,3.5) +
labs(x = 'Beta Value',y = 'Density', title = 'Chromosomal B-value Distribution of Sundar COPD Patients') +
# theme(panel.grid.minor = element_blank(),
# panel.background = element_blank(),
# axis.line = element_line(colour = "black"),
# panel.grid.major = element_line(colour = "light grey")) +
theme_bw()
##### Frequency Plot: Mean Smoker, Nonsmoker and COPD #####
ggplot() +
geom_density(data = Sundar_Betas,
aes(x=NS_Mean),
colour = "Green") +
geom_density(data = Sundar_Betas,
aes(x=S_Mean),
colour = "Red") +
geom_density(data = Sundar_Betas,
aes(x=COPD_Mean),
colour = "Blue") +
xlim(-0.1,1.1) +
ylim(0,3) +
labs(x = 'Beta Value',y = 'Density', title = 'B-value Distribution of Sundar Patients') +
# theme(panel.grid.minor = element_blank(),
# panel.background = element_blank(),
# axis.line = element_line(colour = "black"),
# panel.grid.major = element_line(colour = "light grey")) +
theme_bw()
##### Frequency Plot: By CHR #####
ggplot() +
geom_density(data = annotated_sundar_beta,
aes(x=NS_Mean),
colour = "Green")+
geom_density(data = annotated_sundar_beta,
aes(x=S_Mean),
colour = "Red") +
geom_density(data = annotated_sundar_beta,
aes(x=COPD_Mean),
colour = "Blue") +
xlim(-0.1,1.1) +
ylim(0,3) +
labs(x = 'Beta Value',y = 'Density', title = 'Chromosomal B-value Distribution of Sundar Dataset') +
theme_bw() +
facet_wrap(~ annotated_sundar_beta$CHR,
nrow = 5,
ncol = 5)
##### Frequency Plot: By Feature #####
ggplot() +
geom_density(data = annotated_sundar_beta,
aes(x=NS_Mean),
colour = "Green")+
geom_density(data = annotated_sundar_beta,
aes(x=S_Mean),
colour = "Red") +
geom_density(data = annotated_sundar_beta,
aes(x=COPD_Mean),
colour = "Blue") +
labs(x = 'Beta Value',y = 'Density', title = 'B-value Distribution of Sundar Datasetby Feature') +
theme_bw() +
facet_wrap(~ annotated_sundar_beta$Relation_to_UCSC_CpG_Island,
nrow = 2,
ncol = 3)
##### Number of Feature Occurances #####
sundar_islands <- nrow(subset(annotated_sundar_beta, annotated_sundar_beta$Relation_to_UCSC_CpG_Island == "Island"))
sundar_shelves <- nrow(subset(annotated_sundar_beta, annotated_sundar_beta$Relation_to_UCSC_CpG_Island == "N_Shelf")) +
nrow(subset(annotated_sundar_beta, annotated_sundar_beta$Relation_to_UCSC_CpG_Island == "S_Shelf"))
sundar_shores <- nrow(subset(annotated_sundar_beta, annotated_sundar_beta$Relation_to_UCSC_CpG_Island == "N_Shore")) +
nrow(subset(annotated_sundar_beta, annotated_sundar_beta$Relation_to_UCSC_CpG_Island == "S_Shore"))
<file_sep># Prompt for source dir.
if (exists("choose.dir", mode="function")) {
cat("\nAny Random Prompting Text you want to add to the R console.\n")
flush.console()
dir.location <- choose.dir(caption="Please select source Folder")
} else {
dir.location <- readline("\nPlease select source Folder")
}
# Run.
Program_function_name(dir.location)
# *** Loading the Extracted Alignmnet Log into a second data frame ***** NOT USED!!!
# - Aim: Prompt for location of Aln_log file and import to dataframe
# - Aim: Eventually re-shuffle columns to put %Chrs as first 3 columns
#
#if (exists("choose.files", mode="function")) {
# cat("\nSelect the extracted alignment log output csv file.\n")
# flush.console()
# alnlog.dir <- choose.files(caption="Select the extracted alignment log output csv file.")
# setwd(alnlog.dir)
#df.tsadata <- load("AlnLogs_extract_out.Rdata")
#str(df.extracted)
#} else {
# cat("\nPlease enter source Alignment Log folder. ")
#} | 994cc11b0ceddcc9965cb1191e919f7623f2dab9 | [
"Markdown",
"Python",
"R",
"RMarkdown"
] | 58 | R | adamfletcherUK/Python_Notebooks | 163220b03a4f98c40f36de78b49034c22924e0d1 | 82f68206c891b031201ee4e7986aa40f4024a2ee |
refs/heads/master | <file_sep>
Launches ROMs with a user interface similar to Clover-UI that features:
- An infinitely looping carousel for selecting the game you want to play.
- CRT, 4:3, and Pixel-Perfect aspect ratios and shaders.
- Four suspend point slots per game.
- Rewind functionality.
- Demo mode.
The above features are still being worked on with more unannounced on the way!<file_sep>/**
Clover-UI
Source.cpp
Purpose: Launches ROMs with a user interface similar to Clover-UI
@author samthebreadman
@version 1.0 10/9/17
*/
/* Include standard libraries using standard namespace */
using namespace std;
#include <fstream>
#include <string>
#include <vector>
/* Include Standard Direct-Media Layer libraries */
#include "SDL.h"
#include "SDL_image.h"
#include "SDL_mixer.h"
/* Define necessary struct definitions */
struct config_item {
string filename;
string title;
string publisher;
string release_date;
string number_of_players;
SDL_Texture *boxart;
};
/* Include function prototypes */
void read_config(vector<config_item> &config,SDL_Renderer *main_renderer);
/* Begin main program execution */
int main(int argc, char *argv[]) {
/* Initalize video, image, and audio libraries */
SDL_Init(SDL_INIT_VIDEO | SDL_INIT_AUDIO);
IMG_Init(IMG_INIT_PNG);
Mix_OpenAudio(44100,MIX_DEFAULT_FORMAT,2,2048);
/* Initalize and declare main window and renderer */
SDL_Window *window = SDL_CreateWindow("Clover-UI",SDL_WINDOWPOS_UNDEFINED,SDL_WINDOWPOS_UNDEFINED,1280,720,0);
SDL_Renderer *main_renderer = SDL_CreateRenderer(window,-1,SDL_RENDERER_ACCELERATED | SDL_RENDERER_PRESENTVSYNC);
SDL_SetRenderDrawColor(main_renderer,255,255,255,255);
SDL_RenderClear(main_renderer);
/* Initialize and declare key states */
enum key_states {is_released, is_pressed};
key_states left_key_state = is_released;
key_states right_key_state = is_released;
/* Initialize and declare main program states */
enum main_states {is_in_carousel, is_exiting};
main_states main_state = is_in_carousel;
/* Initalize and declare pulsing cursor states */
enum cursor_pulse_states {is_pulsing_out, is_pulsing_in};
cursor_pulse_states cursor_pulse_state = is_pulsing_out;
/* Initialize and declare music states */
enum music_states {is_in_intro, is_in_loop};
music_states music_state = is_in_intro;
/* Initialize and declare timers */
float carousel_horizontal_movement_timer = 1;
int cursor_hold_timer = 0;
int key_hold_timer = 0;
int spinning_arrow_animation_timer = 0;
/* Initialize and declare indexes */
int boxart_index = 0;
int carousel_slot_index = 0;
int spinning_arrow_animation_index = 0;
/* Initialize and declare positions */
float wallpaper_position = 0;
float carousel_horizontal_position = 0;
float carousel_horizontal_destination_position = 0;
float cursor_horizontal_position = 0;
/* Initialize and declare offsets */
float carousel_offset = 0;
int spinning_arrow_offset = 0;
/* Initialize and declare speeds */
float wallpaper_speed = 0.75;
float carousel_horizontal_speed = 0.025;
float carousel_slot_alpha_speed = 10;
float cursor_pulse_speed = 0;
/* Initialize and declare alphas */
float far_left_carousel_slot_alpha = 0;
float left_carousel_slot_alpha = 255;
float middle_left_carousel_slot_alpha = 0;
float middle_right_carousel_slot_alpha = 0;
float right_carousel_slot_alpha = 0;
float far_right_carousel_slot_alpha = 0;
/* Initialize and declare color channels */
float cursor_red_color_channel = 255;
float cursor_green_color_channel = 255;
/* Initalize and declare vectors */
vector<config_item> config;
read_config(config, main_renderer);
/* Initialize and declare source rectangles */
SDL_Rect top_banner_source_rectangle = {3,49,428,34};
SDL_Rect top_banner_inset_source_rectangle = {502,397,10,22};
SDL_Rect display_icon_source_rectangle = {29,1002,21,17};
SDL_Rect options_icon_source_rectangle = {82,998,19,19};
SDL_Rect language_icon_source_rectangle = {56,1001,18,19};
SDL_Rect legal_notices_icon_source_rectangle = {5,1001,17,19};
SDL_Rect manuals_icon_source_rectangle = {242,850,19,19};
SDL_Rect title_slot_source_rectangle = {4,327,342,18};
SDL_Rect carousel_slot_source_rectangle = {417,379,84,92};
SDL_Rect selected_carousel_slot_source_rectangle = {409,473,84,92};
SDL_Rect top_left_cursor_corner_source_rectangle = {113,951,23,23};
SDL_Rect cursor_edge_source_rectangle = {136,863,6,6};
SDL_Rect top_right_cursor_corner_source_rectangle = {121,905,23,23};
SDL_Rect bottom_right_cursor_corner_source_rectangle = {144,808,23,23};
SDL_Rect bottom_left_cursor_corner_source_rectangle = {200,894,23,23};
SDL_Rect spinning_arrow_source_rectangle = {146,882,10,6};
SDL_Rect dpad_up_icon_source_rectangle = {85,881,12,12};
SDL_Rect dpad_down_icon_source_rectangle = {57,881,12,12};
SDL_Rect select_icon_source_rectangle = {88,930,31,9};
SDL_Rect start_icon_source_rectangle = {481,784,31,9};
SDL_Rect bottom_banner_source_rectangle = {3,1,428,30};
/* Initialize and declare destination rectangles */
SDL_Rect far_left_wallpaper_destination_rectangle = {3122,80,1561,564};
SDL_Rect left_wallpaper_destination_rectangle = {-1561,80,1561,564};
SDL_Rect middle_wallpaper_destination_rectangle = {0,80,1561,564};
SDL_Rect right_wallpaper_destination_rectangle = {1561,80,1561,564};
SDL_Rect far_right_wallpaper_destination_rectangle = {3122,80,1561,564};
SDL_Rect top_banner_destination_rectangle = {-2,-6,1284,102};
SDL_Rect top_banner_inset_destination_rectangle = {400,30,480,66};
SDL_Rect display_icon_destination_rectangle = {418,38,63,51};
SDL_Rect options_icon_destination_rectangle = {517,35,57,57};
SDL_Rect language_icon_destination_rectangle = {613,35,54,57};
SDL_Rect legal_notices_icon_destination_rectangle = {712,35,51,57};
SDL_Rect manuals_icon_destination_rectangle = {805,35,57,57};
SDL_Rect title_slot_destination_rectangle = {127,151,1026,54};
SDL_Rect farthest_left_carousel_slot_destination_rectangle = {-403,222,252,276};
SDL_Rect far_left_carousel_slot_destination_rectangle = {-141,222,252,276};
SDL_Rect left_carousel_slot_destination_rectangle = {121,222,252,276};
SDL_Rect middle_left_carousel_slot_destination_rectangle = {383,222,252,276};
SDL_Rect middle_right_carousel_slot_destination_rectangle = {645,222,252,276};
SDL_Rect right_carousel_slot_destination_rectangle = {907,222,252,276};
SDL_Rect far_right_carousel_slot_destination_rectangle = {1169,222,252,276};
SDL_Rect farthest_right_carousel_slot_destination_rectangle = {1431,222,252,276};
SDL_Rect farthest_left_boxart_destination_rectangle = {-391,256,228,160};
SDL_Rect far_left_boxart_destination_rectangle = {-129,256,228,160};
SDL_Rect left_boxart_destination_rectangle = {133,256,228,160};
SDL_Rect middle_left_boxart_destination_rectangle = {395,256,228,160};
SDL_Rect middle_right_boxart_destination_rectangle = {657,256,228,160};
SDL_Rect right_boxart_destination_rectangle = {919,256,228,160};
SDL_Rect far_right_boxart_destination_rectangle = {1181,256,228,160};
SDL_Rect farthest_right_boxart_destination_rectangle = {1443,256,228,160};
SDL_Rect top_left_cursor_corner_destination_rectangle = {118,219,23,23};
SDL_Rect top_cursor_edge_destination_rectangle = {141,219,212,6};
SDL_Rect top_right_cursor_corner_destination_rectangle = {353,219,23,23};
SDL_Rect right_cursor_edge_destination_rectangle = {370,242,6,236};
SDL_Rect bottom_right_cursor_corner_destination_rectangle = {353,478,23,23};
SDL_Rect bottom_cursor_edge_destination_rectangle = {141,495,212,6};
SDL_Rect bottom_left_cursor_corner_destination_rectangle = {118,478,23,23};
SDL_Rect left_cursor_edge_destination_rectangle = {118,242,6,236};
SDL_Rect spinning_arrow_destination_rectangle = {215,517,30,18};
SDL_Rect dpad_up_icon_destination_rectangle = {278,591,36,36};
SDL_Rect dpad_down_icon_destination_rectangle = {400,591,36,36};
SDL_Rect select_icon_destination_rectangle = {640,597,93,27};
SDL_Rect start_icon_destination_rectangle = {809,597,93,27};
SDL_Rect thumbnails_destination_rectangle = {210,538,860,28};
SDL_Rect bottom_banner_destination_rectangle = {-2,630,1284,90};
/* Initalize and declare surfaces */
SDL_Surface *wallpaper_surface = IMG_Load("Resources/Images/wallpaperImage.png");
SDL_Surface *user_interface_surface = IMG_Load("Resources/Images/userInterfaceImage.png");
SDL_Surface *thumbnails_surface = IMG_Load("Resources/Images/testThumbnailsImage.png");
/* Initalize and declare textures */
SDL_Texture *wallpaper_texture = SDL_CreateTextureFromSurface(main_renderer,wallpaper_surface);
SDL_Texture *user_interface_texture = SDL_CreateTextureFromSurface(main_renderer,user_interface_surface);
SDL_Texture *thumbnails_texture = SDL_CreateTextureFromSurface(main_renderer,thumbnails_surface);
/* Initialize and declare music and sounds */
Mix_Music *intro_music = Mix_LoadMUS("Resources/Sounds/bootBackgroundMusic.wav");
Mix_Music *loop_music = Mix_LoadMUS("Resources/Sounds/homeBackgroundMusic.wav");
Mix_Chunk *cursor_sound = Mix_LoadWAV( "Resources/Sounds/cursorSound.wav" );
/* Begin main loop */
while(main_state != is_exiting) {
/* Receive input and change states */
SDL_Event event;
SDL_PollEvent(&event);
/* If the window is closed then exit the program */
if (event.type == SDL_QUIT)
main_state = is_exiting;
/* If any key is down then check what key is down */
if (event.type == SDL_KEYDOWN) {
/* If the escape key is pressed then exit the program */
if (event.key.keysym.sym == SDLK_ESCAPE)
main_state = is_exiting;
/* If the left key is pressed then update necessary values */
if (event.key.keysym.sym == SDLK_LEFT) {
if (main_state == is_in_carousel) {
if (left_key_state == is_released) {
Mix_PlayChannel( -1, cursor_sound, 0 );
if (carousel_slot_index != 0)
carousel_slot_index -= 1;
else {
carousel_horizontal_movement_timer=0;
carousel_horizontal_speed = 0.025;
far_left_carousel_slot_alpha = 0;
left_carousel_slot_alpha = 0;
middle_left_carousel_slot_alpha = 255;
middle_right_carousel_slot_alpha = 0;
right_carousel_slot_alpha = 0;
far_right_carousel_slot_alpha = 0;
carousel_offset -=262;
boxart_index -= 1;
carousel_horizontal_destination_position -= 1;
}
spinning_arrow_offset -= 1;
key_hold_timer = SDL_GetTicks();
left_key_state = is_pressed;
}
if (SDL_GetTicks() > (key_hold_timer + 175)) {
if (cursor_hold_timer == 6) {
Mix_PlayChannel( -1, cursor_sound, 0 );
if (carousel_slot_index != 0)
carousel_slot_index -= 1;
else {
carousel_horizontal_movement_timer=0;
carousel_horizontal_speed = 0.05;
carousel_slot_alpha_speed = 5;
far_left_carousel_slot_alpha = 0;
left_carousel_slot_alpha = 0;
middle_left_carousel_slot_alpha = 255;
middle_right_carousel_slot_alpha = 0;
right_carousel_slot_alpha = 0;
far_right_carousel_slot_alpha = 0;
carousel_offset -=262;
boxart_index -= 1;
carousel_horizontal_destination_position -= 1;
}
spinning_arrow_offset -= 1;
cursor_hold_timer = 0;
}
else {
cursor_hold_timer += 1;
}
}
}
}
/* If the right key is pressed then update necessary values */
if (event.key.keysym.sym == SDLK_RIGHT) {
if (main_state == is_in_carousel) {
if (right_key_state == is_released) {
Mix_PlayChannel( -1, cursor_sound, 0 );
if (carousel_slot_index != 3)
carousel_slot_index += 1;
else {
carousel_horizontal_movement_timer=0;
carousel_horizontal_speed = 0.025;
far_left_carousel_slot_alpha = 0;
left_carousel_slot_alpha = 0;
middle_left_carousel_slot_alpha = 0;
middle_right_carousel_slot_alpha = 255;
right_carousel_slot_alpha = 0;
far_right_carousel_slot_alpha = 0;
carousel_offset +=262;
boxart_index += 1;
carousel_horizontal_destination_position += 1;
}
spinning_arrow_offset += 1;
key_hold_timer = SDL_GetTicks();
right_key_state = is_pressed;
}
if (SDL_GetTicks() > (key_hold_timer + 175)) {
if (cursor_hold_timer == 6) {
Mix_PlayChannel( -1, cursor_sound, 0 );
if (carousel_slot_index != 3)
carousel_slot_index += 1;
else {
carousel_horizontal_movement_timer=0;
carousel_horizontal_speed = 0.05;
carousel_slot_alpha_speed = 5;
far_left_carousel_slot_alpha = 0;
left_carousel_slot_alpha = 0;
middle_left_carousel_slot_alpha = 0;
middle_right_carousel_slot_alpha = 255;
right_carousel_slot_alpha = 0;
far_right_carousel_slot_alpha = 0;
carousel_offset +=262;
boxart_index += 1;
carousel_horizontal_destination_position += 1;
}
spinning_arrow_offset += 1;
cursor_hold_timer = 0;
}
else
cursor_hold_timer += 1;
}
}
}
}
/* If no keys are pressed then update values */
else
{
if (main_state == is_in_carousel) {
carousel_horizontal_speed = 0.025;
carousel_slot_alpha_speed = 10;
cursor_hold_timer = 0;
left_key_state = is_released;
right_key_state = is_released;
}
}
/* Update the wallpaper position */
if (wallpaper_position<=-1561)
wallpaper_position += 1561-wallpaper_speed;
else if (wallpaper_position >= 1561)
wallpaper_position -=1561-wallpaper_speed;
else
wallpaper_position -= wallpaper_speed;
far_left_wallpaper_destination_rectangle.x = wallpaper_position-3122;
left_wallpaper_destination_rectangle.x = wallpaper_position-1561;
middle_wallpaper_destination_rectangle.x = wallpaper_position;
right_wallpaper_destination_rectangle.x = wallpaper_position+1561;
far_right_wallpaper_destination_rectangle.x = wallpaper_position+3122;
/* Update the carousel position*/
if (carousel_horizontal_movement_timer>=0 && carousel_horizontal_movement_timer<1)
carousel_horizontal_movement_timer+=carousel_horizontal_speed;
if (carousel_horizontal_movement_timer>1)
carousel_horizontal_movement_timer=1;
if (carousel_slot_index == 0) {
carousel_horizontal_position = (carousel_horizontal_destination_position*-262 - carousel_horizontal_position+0.1)*carousel_horizontal_movement_timer + carousel_horizontal_position;
far_left_carousel_slot_alpha += (0 - far_left_carousel_slot_alpha) / carousel_slot_alpha_speed;
left_carousel_slot_alpha += (255 - left_carousel_slot_alpha) / carousel_slot_alpha_speed;
middle_left_carousel_slot_alpha += (0 - middle_left_carousel_slot_alpha) / carousel_slot_alpha_speed;
middle_right_carousel_slot_alpha += (0 - middle_right_carousel_slot_alpha) / carousel_slot_alpha_speed;
right_carousel_slot_alpha += (0 - right_carousel_slot_alpha) / carousel_slot_alpha_speed;
far_right_carousel_slot_alpha += (0 - far_right_carousel_slot_alpha) / carousel_slot_alpha_speed;
}
if (carousel_slot_index == 1) {
carousel_horizontal_position = (carousel_horizontal_destination_position*-262 - carousel_horizontal_position+0.1)*carousel_horizontal_movement_timer + carousel_horizontal_position;
far_left_carousel_slot_alpha += (0 - far_left_carousel_slot_alpha) / carousel_slot_alpha_speed;
left_carousel_slot_alpha += (0 - left_carousel_slot_alpha) / carousel_slot_alpha_speed;
middle_left_carousel_slot_alpha += (255 - middle_left_carousel_slot_alpha) / carousel_slot_alpha_speed;
middle_right_carousel_slot_alpha += (0 - middle_right_carousel_slot_alpha) / carousel_slot_alpha_speed;
right_carousel_slot_alpha += (0 - right_carousel_slot_alpha) / carousel_slot_alpha_speed;
far_right_carousel_slot_alpha += (0 - far_right_carousel_slot_alpha) / carousel_slot_alpha_speed;
}
if (carousel_slot_index == 2) {
carousel_horizontal_position = (carousel_horizontal_destination_position*-262 - carousel_horizontal_position+0.1)*carousel_horizontal_movement_timer + carousel_horizontal_position;
far_left_carousel_slot_alpha += (0 - far_left_carousel_slot_alpha) / carousel_slot_alpha_speed;
left_carousel_slot_alpha += (0 - left_carousel_slot_alpha) / carousel_slot_alpha_speed;
middle_left_carousel_slot_alpha += (0 - middle_left_carousel_slot_alpha) / carousel_slot_alpha_speed;
middle_right_carousel_slot_alpha += (255 - middle_right_carousel_slot_alpha) / carousel_slot_alpha_speed;
right_carousel_slot_alpha += (0 - right_carousel_slot_alpha) / carousel_slot_alpha_speed;
far_right_carousel_slot_alpha += (0 - far_right_carousel_slot_alpha) / carousel_slot_alpha_speed;
}
if (carousel_slot_index == 3) {
carousel_horizontal_position = (carousel_horizontal_destination_position*-262 - carousel_horizontal_position+0.1)*carousel_horizontal_movement_timer + carousel_horizontal_position;
far_left_carousel_slot_alpha += (0 - far_left_carousel_slot_alpha) / carousel_slot_alpha_speed;
left_carousel_slot_alpha += (0 - left_carousel_slot_alpha) / carousel_slot_alpha_speed;
middle_left_carousel_slot_alpha += (0 - middle_left_carousel_slot_alpha) / carousel_slot_alpha_speed;
middle_right_carousel_slot_alpha += (0 - middle_right_carousel_slot_alpha) / carousel_slot_alpha_speed;
right_carousel_slot_alpha += (255 - right_carousel_slot_alpha) / carousel_slot_alpha_speed;
far_right_carousel_slot_alpha += (0 - far_right_carousel_slot_alpha) / carousel_slot_alpha_speed;
}
farthest_left_carousel_slot_destination_rectangle.x = -403+carousel_horizontal_position+carousel_offset;
far_left_carousel_slot_destination_rectangle.x = -141+carousel_horizontal_position+carousel_offset;
left_carousel_slot_destination_rectangle.x = 121+carousel_horizontal_position+carousel_offset;
middle_left_carousel_slot_destination_rectangle.x = 383+carousel_horizontal_position+carousel_offset;
middle_right_carousel_slot_destination_rectangle.x = 645+carousel_horizontal_position+carousel_offset;
right_carousel_slot_destination_rectangle.x = 907+carousel_horizontal_position+carousel_offset;
far_right_carousel_slot_destination_rectangle.x = 1169+carousel_horizontal_position+carousel_offset;
farthest_right_carousel_slot_destination_rectangle.x = 1431+carousel_horizontal_position+carousel_offset;
/* Update the boxarts position */
farthest_left_boxart_destination_rectangle.x = -391+carousel_horizontal_position+carousel_offset;
far_left_boxart_destination_rectangle.x = -129+carousel_horizontal_position+carousel_offset;
left_boxart_destination_rectangle.x = 133+carousel_horizontal_position+carousel_offset;
middle_left_boxart_destination_rectangle.x = 395+carousel_horizontal_position+carousel_offset;
middle_right_boxart_destination_rectangle.x = 657+carousel_horizontal_position+carousel_offset;
right_boxart_destination_rectangle.x = 919+carousel_horizontal_position+carousel_offset;
far_right_boxart_destination_rectangle.x = 1181+carousel_horizontal_position+carousel_offset;
farthest_right_boxart_destination_rectangle.x = 1443+carousel_horizontal_position+carousel_offset;
/* Update the pulsing cursor position */
if (carousel_slot_index == 0) {
if (cursor_horizontal_position < 0.5 && cursor_horizontal_position > -0.5)
cursor_horizontal_position = 0;
cursor_horizontal_position += (0 - cursor_horizontal_position) / 4;
}
else if (carousel_slot_index == 1) {
if (cursor_horizontal_position < 262.5 && cursor_horizontal_position > 261.5)
cursor_horizontal_position = 262;
cursor_horizontal_position += (262 - cursor_horizontal_position) / 4;
}
else if (carousel_slot_index == 2) {
if (cursor_horizontal_position < 524.5 && cursor_horizontal_position > 523.5)
cursor_horizontal_position = 524;
cursor_horizontal_position += (524 - cursor_horizontal_position) / 4;
}
else if (carousel_slot_index == 3) {
if (cursor_horizontal_position < 786.5 && cursor_horizontal_position > 785.5)
cursor_horizontal_position = 786;
cursor_horizontal_position += (786 - cursor_horizontal_position) / 4;
}
top_left_cursor_corner_destination_rectangle.x = 118+cursor_horizontal_position;
top_cursor_edge_destination_rectangle.x = 141+cursor_horizontal_position;
top_right_cursor_corner_destination_rectangle.x = 353+cursor_horizontal_position;
right_cursor_edge_destination_rectangle.x = 370+cursor_horizontal_position;
bottom_right_cursor_corner_destination_rectangle.x = 353+cursor_horizontal_position;
bottom_cursor_edge_destination_rectangle.x = 141+cursor_horizontal_position;
bottom_left_cursor_corner_destination_rectangle.x = 118+cursor_horizontal_position;
left_cursor_edge_destination_rectangle.x = 118+cursor_horizontal_position;
/* Animate the pulsing cursor animation */
if (cursor_pulse_state == is_pulsing_out) {
cursor_pulse_speed += 0.05;
if (cursor_red_color_channel - cursor_pulse_speed > 63)
cursor_red_color_channel = cursor_red_color_channel - cursor_pulse_speed;
else
cursor_red_color_channel = 63;
if (cursor_green_color_channel - cursor_pulse_speed > 191)
cursor_green_color_channel = cursor_green_color_channel - cursor_pulse_speed;
else
cursor_green_color_channel = 191;
if (cursor_pulse_speed >= 3) {
cursor_pulse_speed = 3;
cursor_pulse_state = is_pulsing_in;
}
}
else if (cursor_pulse_state == is_pulsing_in) {
cursor_pulse_speed -= 0.05;
if (cursor_red_color_channel + cursor_pulse_speed < 255)
cursor_red_color_channel = cursor_red_color_channel + cursor_pulse_speed;
else
cursor_red_color_channel == 255;
if (cursor_green_color_channel + cursor_pulse_speed < 255)
cursor_green_color_channel = cursor_green_color_channel + cursor_pulse_speed;
else
cursor_green_color_channel = 255;
if (cursor_pulse_speed <= 0) {
cursor_pulse_speed = 0;
cursor_pulse_state = is_pulsing_out;
}
}
/* Update the spinning arrow position */
if (spinning_arrow_offset == -1)
spinning_arrow_offset = 20;
else if (spinning_arrow_offset == 21)
spinning_arrow_offset = 0;
spinning_arrow_source_rectangle.x = 146+spinning_arrow_animation_index*14;
spinning_arrow_destination_rectangle.x = 215+(spinning_arrow_offset*41);
/* Animate the spinning arrow animation */
spinning_arrow_animation_timer = SDL_GetTicks();
spinning_arrow_animation_index = (spinning_arrow_animation_timer / 115) % 4;
if ((spinning_arrow_animation_timer / 115) % 4 == 3)
spinning_arrow_animation_index = 1;
/* Clear the screen back buffer */
SDL_RenderClear(main_renderer);
/* Copy textures onto the main main_renderer */
SDL_RenderCopy(main_renderer,wallpaper_texture,NULL,&far_left_wallpaper_destination_rectangle);
SDL_RenderCopy(main_renderer,wallpaper_texture,NULL,&left_wallpaper_destination_rectangle);
SDL_RenderCopy(main_renderer,wallpaper_texture,NULL,&middle_wallpaper_destination_rectangle);
SDL_RenderCopy(main_renderer,wallpaper_texture,NULL,&right_wallpaper_destination_rectangle);
SDL_RenderCopy(main_renderer,wallpaper_texture,NULL,&far_right_wallpaper_destination_rectangle);
SDL_RenderCopy(main_renderer,user_interface_texture,&top_banner_source_rectangle,&top_banner_destination_rectangle);
SDL_RenderCopy(main_renderer,user_interface_texture,&top_banner_inset_source_rectangle,&top_banner_inset_destination_rectangle);
SDL_RenderCopy(main_renderer,user_interface_texture,&display_icon_source_rectangle,&display_icon_destination_rectangle);
SDL_RenderCopy(main_renderer,user_interface_texture,&options_icon_source_rectangle,&options_icon_destination_rectangle);
SDL_RenderCopy(main_renderer,user_interface_texture,&language_icon_source_rectangle,&language_icon_destination_rectangle);
SDL_RenderCopy(main_renderer,user_interface_texture,&legal_notices_icon_source_rectangle,&legal_notices_icon_destination_rectangle);
SDL_RenderCopy(main_renderer,user_interface_texture,&manuals_icon_source_rectangle,&manuals_icon_destination_rectangle);
SDL_RenderCopy(main_renderer,user_interface_texture,&title_slot_source_rectangle,&title_slot_destination_rectangle);
SDL_RenderCopy(main_renderer,user_interface_texture,&carousel_slot_source_rectangle,&farthest_left_carousel_slot_destination_rectangle);
SDL_RenderCopy(main_renderer,user_interface_texture,&carousel_slot_source_rectangle,&far_left_carousel_slot_destination_rectangle);
SDL_RenderCopy(main_renderer,user_interface_texture,&carousel_slot_source_rectangle,&left_carousel_slot_destination_rectangle);
SDL_RenderCopy(main_renderer,user_interface_texture,&carousel_slot_source_rectangle,&middle_left_carousel_slot_destination_rectangle);
SDL_RenderCopy(main_renderer,user_interface_texture,&carousel_slot_source_rectangle,&middle_right_carousel_slot_destination_rectangle);
SDL_RenderCopy(main_renderer,user_interface_texture,&carousel_slot_source_rectangle,&right_carousel_slot_destination_rectangle);
SDL_RenderCopy(main_renderer,user_interface_texture,&carousel_slot_source_rectangle,&far_right_carousel_slot_destination_rectangle);
SDL_RenderCopy(main_renderer,user_interface_texture,&carousel_slot_source_rectangle,&farthest_right_carousel_slot_destination_rectangle);
SDL_SetTextureAlphaMod(user_interface_texture,far_left_carousel_slot_alpha);
SDL_RenderCopy(main_renderer,user_interface_texture,&selected_carousel_slot_source_rectangle,&far_left_carousel_slot_destination_rectangle);
SDL_SetTextureAlphaMod(user_interface_texture,left_carousel_slot_alpha);
SDL_RenderCopy(main_renderer,user_interface_texture,&selected_carousel_slot_source_rectangle,&left_carousel_slot_destination_rectangle);
SDL_SetTextureAlphaMod(user_interface_texture,middle_left_carousel_slot_alpha);
SDL_RenderCopy(main_renderer,user_interface_texture,&selected_carousel_slot_source_rectangle,&middle_left_carousel_slot_destination_rectangle);
SDL_SetTextureAlphaMod(user_interface_texture,middle_right_carousel_slot_alpha);
SDL_RenderCopy(main_renderer,user_interface_texture,&selected_carousel_slot_source_rectangle,&middle_right_carousel_slot_destination_rectangle);
SDL_SetTextureAlphaMod(user_interface_texture,right_carousel_slot_alpha);
SDL_RenderCopy(main_renderer,user_interface_texture,&selected_carousel_slot_source_rectangle,&right_carousel_slot_destination_rectangle);
SDL_SetTextureAlphaMod(user_interface_texture,far_right_carousel_slot_alpha);
SDL_RenderCopy(main_renderer,user_interface_texture,&selected_carousel_slot_source_rectangle,&far_right_carousel_slot_destination_rectangle);
SDL_SetTextureAlphaMod(user_interface_texture,255);
if (boxart_index == -6)
boxart_index = 21-6;
else if (boxart_index == 21-5)
boxart_index = -5;
if (boxart_index == -5) {
SDL_RenderCopy(main_renderer,config[21-7].boxart,NULL,&farthest_left_boxart_destination_rectangle);
SDL_RenderCopy(main_renderer,config[21-6].boxart,NULL,&far_left_boxart_destination_rectangle);
SDL_RenderCopy(main_renderer,config[21-5].boxart,NULL,&left_boxart_destination_rectangle);
SDL_RenderCopy(main_renderer,config[21-4].boxart,NULL,&middle_left_boxart_destination_rectangle);
SDL_RenderCopy(main_renderer,config[21-3].boxart,NULL,&middle_right_boxart_destination_rectangle);
SDL_RenderCopy(main_renderer,config[21-2].boxart,NULL,&right_boxart_destination_rectangle);
SDL_RenderCopy(main_renderer,config[21-1].boxart,NULL,&far_right_boxart_destination_rectangle);
SDL_RenderCopy(main_renderer,config[0].boxart,NULL,&farthest_right_boxart_destination_rectangle);
}
else if (boxart_index == -4) {
SDL_RenderCopy(main_renderer,config[21-6].boxart,NULL,&farthest_left_boxart_destination_rectangle);
SDL_RenderCopy(main_renderer,config[21-5].boxart,NULL,&far_left_boxart_destination_rectangle);
SDL_RenderCopy(main_renderer,config[21-4].boxart,NULL,&left_boxart_destination_rectangle);
SDL_RenderCopy(main_renderer,config[21-3].boxart,NULL,&middle_left_boxart_destination_rectangle);
SDL_RenderCopy(main_renderer,config[21-2].boxart,NULL,&middle_right_boxart_destination_rectangle);
SDL_RenderCopy(main_renderer,config[21-1].boxart,NULL,&right_boxart_destination_rectangle);
SDL_RenderCopy(main_renderer,config[0].boxart,NULL,&far_right_boxart_destination_rectangle);
SDL_RenderCopy(main_renderer,config[1].boxart,NULL,&farthest_right_boxart_destination_rectangle);
}
else if (boxart_index == -3) {
SDL_RenderCopy(main_renderer,config[21-5].boxart,NULL,&farthest_left_boxart_destination_rectangle);
SDL_RenderCopy(main_renderer,config[21-4].boxart,NULL,&far_left_boxart_destination_rectangle);
SDL_RenderCopy(main_renderer,config[21-3].boxart,NULL,&left_boxart_destination_rectangle);
SDL_RenderCopy(main_renderer,config[21-2].boxart,NULL,&middle_left_boxart_destination_rectangle);
SDL_RenderCopy(main_renderer,config[21-1].boxart,NULL,&middle_right_boxart_destination_rectangle);
SDL_RenderCopy(main_renderer,config[0].boxart,NULL,&right_boxart_destination_rectangle);
SDL_RenderCopy(main_renderer,config[1].boxart,NULL,&far_right_boxart_destination_rectangle);
SDL_RenderCopy(main_renderer,config[2].boxart,NULL,&farthest_right_boxart_destination_rectangle);
}
else if (boxart_index == -2) {
SDL_RenderCopy(main_renderer,config[21-4].boxart,NULL,&farthest_left_boxart_destination_rectangle);
SDL_RenderCopy(main_renderer,config[21-3].boxart,NULL,&far_left_boxart_destination_rectangle);
SDL_RenderCopy(main_renderer,config[21-2].boxart,NULL,&left_boxart_destination_rectangle);
SDL_RenderCopy(main_renderer,config[21-1].boxart,NULL,&middle_left_boxart_destination_rectangle);
SDL_RenderCopy(main_renderer,config[0].boxart,NULL,&middle_right_boxart_destination_rectangle);
SDL_RenderCopy(main_renderer,config[1].boxart,NULL,&right_boxart_destination_rectangle);
SDL_RenderCopy(main_renderer,config[2].boxart,NULL,&far_right_boxart_destination_rectangle);
SDL_RenderCopy(main_renderer,config[3].boxart,NULL,&farthest_right_boxart_destination_rectangle);
}
else if (boxart_index == -1) {
SDL_RenderCopy(main_renderer,config[21-3].boxart,NULL,&farthest_left_boxart_destination_rectangle);
SDL_RenderCopy(main_renderer,config[21-2].boxart,NULL,&far_left_boxart_destination_rectangle);
SDL_RenderCopy(main_renderer,config[21-1].boxart,NULL,&left_boxart_destination_rectangle);
SDL_RenderCopy(main_renderer,config[0].boxart,NULL,&middle_left_boxart_destination_rectangle);
SDL_RenderCopy(main_renderer,config[1].boxart,NULL,&middle_right_boxart_destination_rectangle);
SDL_RenderCopy(main_renderer,config[2].boxart,NULL,&right_boxart_destination_rectangle);
SDL_RenderCopy(main_renderer,config[3].boxart,NULL,&far_right_boxart_destination_rectangle);
SDL_RenderCopy(main_renderer,config[4].boxart,NULL,&farthest_right_boxart_destination_rectangle);
}
else if (boxart_index == 0) {
SDL_RenderCopy(main_renderer,config[21-2].boxart,NULL,&farthest_left_boxart_destination_rectangle);
SDL_RenderCopy(main_renderer,config[21-1].boxart,NULL,&far_left_boxart_destination_rectangle);
SDL_RenderCopy(main_renderer,config[0].boxart,NULL,&left_boxart_destination_rectangle);
SDL_RenderCopy(main_renderer,config[1].boxart,NULL,&middle_left_boxart_destination_rectangle);
SDL_RenderCopy(main_renderer,config[2].boxart,NULL,&middle_right_boxart_destination_rectangle);
SDL_RenderCopy(main_renderer,config[3].boxart,NULL,&right_boxart_destination_rectangle);
SDL_RenderCopy(main_renderer,config[4].boxart,NULL,&far_right_boxart_destination_rectangle);
SDL_RenderCopy(main_renderer,config[5].boxart,NULL,&farthest_right_boxart_destination_rectangle);
}
else if (boxart_index == 1) {
SDL_RenderCopy(main_renderer,config[21-1].boxart,NULL,&farthest_left_boxart_destination_rectangle);
SDL_RenderCopy(main_renderer,config[0].boxart,NULL,&far_left_boxart_destination_rectangle);
SDL_RenderCopy(main_renderer,config[1].boxart,NULL,&left_boxart_destination_rectangle);
SDL_RenderCopy(main_renderer,config[2].boxart,NULL,&middle_left_boxart_destination_rectangle);
SDL_RenderCopy(main_renderer,config[3].boxart,NULL,&middle_right_boxart_destination_rectangle);
SDL_RenderCopy(main_renderer,config[4].boxart,NULL,&right_boxart_destination_rectangle);
SDL_RenderCopy(main_renderer,config[5].boxart,NULL,&far_right_boxart_destination_rectangle);
SDL_RenderCopy(main_renderer,config[6].boxart,NULL,&farthest_right_boxart_destination_rectangle);
}
else {
SDL_RenderCopy(main_renderer,config[boxart_index-2].boxart,NULL,&farthest_left_boxart_destination_rectangle);
SDL_RenderCopy(main_renderer,config[boxart_index-1].boxart,NULL,&far_left_boxart_destination_rectangle);
SDL_RenderCopy(main_renderer,config[boxart_index].boxart,NULL,&left_boxart_destination_rectangle);
SDL_RenderCopy(main_renderer,config[boxart_index+1].boxart,NULL,&middle_left_boxart_destination_rectangle);
SDL_RenderCopy(main_renderer,config[boxart_index+2].boxart,NULL,&middle_right_boxart_destination_rectangle);
SDL_RenderCopy(main_renderer,config[boxart_index+3].boxart,NULL,&right_boxart_destination_rectangle);
SDL_RenderCopy(main_renderer,config[boxart_index+4].boxart,NULL,&far_right_boxart_destination_rectangle);
SDL_RenderCopy(main_renderer,config[boxart_index+5].boxart,NULL,&farthest_right_boxart_destination_rectangle);
}
SDL_SetTextureColorMod(user_interface_texture,cursor_red_color_channel,cursor_green_color_channel,255);
SDL_RenderCopy(main_renderer,user_interface_texture,&top_left_cursor_corner_source_rectangle,&top_left_cursor_corner_destination_rectangle);
SDL_RenderCopy(main_renderer,user_interface_texture,&cursor_edge_source_rectangle,&top_cursor_edge_destination_rectangle);
SDL_RenderCopy(main_renderer,user_interface_texture,&top_right_cursor_corner_source_rectangle,&top_right_cursor_corner_destination_rectangle);
SDL_RenderCopy(main_renderer,user_interface_texture,&cursor_edge_source_rectangle,&right_cursor_edge_destination_rectangle);
SDL_RenderCopy(main_renderer,user_interface_texture,&bottom_right_cursor_corner_source_rectangle,&bottom_right_cursor_corner_destination_rectangle);
SDL_RenderCopy(main_renderer,user_interface_texture,&cursor_edge_source_rectangle,&bottom_cursor_edge_destination_rectangle);
SDL_RenderCopy(main_renderer,user_interface_texture,&bottom_left_cursor_corner_source_rectangle,&bottom_left_cursor_corner_destination_rectangle);
SDL_RenderCopy(main_renderer,user_interface_texture,&cursor_edge_source_rectangle,&left_cursor_edge_destination_rectangle);
SDL_SetTextureColorMod(user_interface_texture,255,255,255);
SDL_RenderCopy(main_renderer,user_interface_texture,&dpad_up_icon_source_rectangle,&dpad_up_icon_destination_rectangle);
SDL_RenderCopy(main_renderer,user_interface_texture,&dpad_down_icon_source_rectangle,&dpad_down_icon_destination_rectangle);
SDL_RenderCopy(main_renderer,user_interface_texture,&select_icon_source_rectangle,&select_icon_destination_rectangle);
SDL_RenderCopy(main_renderer,user_interface_texture,&start_icon_source_rectangle,&start_icon_destination_rectangle);
SDL_RenderCopy(main_renderer,user_interface_texture,&bottom_banner_source_rectangle,&bottom_banner_destination_rectangle);
SDL_RenderCopyEx(main_renderer,user_interface_texture,&spinning_arrow_source_rectangle,&spinning_arrow_destination_rectangle,0,NULL,SDL_FLIP_VERTICAL);
SDL_RenderCopy(main_renderer,thumbnails_texture,NULL,&thumbnails_destination_rectangle);
/* Show the screen back buffer */
SDL_RenderPresent(main_renderer);
/* Play music intro followed by loop */
if (!Mix_PlayingMusic()) {
if (music_state == is_in_intro) {
Mix_PlayMusic(intro_music,0);
music_state = is_in_loop;
}
else if (music_state == is_in_loop)
Mix_PlayMusic(loop_music,-1);
}
}
/* Deinitalize sounds and music */
Mix_FreeChunk(cursor_sound);
Mix_FreeMusic(loop_music);
Mix_FreeMusic(intro_music);
/* Deinitalize textures */
for(int i = 0; i < 21; i++)
SDL_DestroyTexture(config[i].boxart);
SDL_DestroyTexture(thumbnails_texture);
SDL_DestroyTexture(user_interface_texture);
SDL_DestroyTexture(wallpaper_texture);
/* Deinitalize surfaces */
SDL_FreeSurface(thumbnails_surface);
SDL_FreeSurface(user_interface_surface);
SDL_FreeSurface(wallpaper_surface);
/* Deinitalize main window and renderer */
SDL_DestroyRenderer(main_renderer);
SDL_DestroyWindow(window);
/* Deinitalize audio, image, and video libraries */
Mix_Quit();
IMG_Quit();
SDL_Quit();
/* Return zero to the operating system. We're out of here! */
return 0;
}
void read_config(vector<config_item> &config,SDL_Renderer *main_renderer) {
ifstream file("Users/Config.txt");
string buffer;
for (int i = 0; i < 9; i++)
getline(file, buffer, '\n');
while (!file.eof()) {
config_item current_item = config_item();
getline(file, current_item.filename, '\n');
SDL_Surface *tempSurface = IMG_Load(("Users/Boxart/" + current_item.filename + ".png").c_str());
current_item.boxart = SDL_CreateTextureFromSurface(main_renderer,tempSurface);
SDL_FreeSurface(tempSurface);
getline(file, current_item.title, '\n');
getline(file, current_item.publisher, '\n');
getline(file, current_item.release_date, '\n');
getline(file, current_item.number_of_players, '\n');
config.push_back(current_item);
}
} | 650dfd1885b36c14b8d75e6703d46ceb46dbcf80 | [
"Markdown",
"C++"
] | 2 | Markdown | BananaaHammock/Clover-UI | e40b33521e02d3cd82d5a1d48fbbdf188256493d | c93ec3d9ce34c78aabd9b999170fd2a3944652bf |
refs/heads/main | <repo_name>RichCorbin/hello-world<file_sep>/README.md
# hello-world
Just another repository
Hi, My name is Rich,
I'm just following the instructions on the "hello-world" tutorial and hoping for the best.
One day I'll work out how to write some code!
<file_sep>/Main.c
\\Main file test for C coded program to run some odd function or other\\
main()
So lets see if this new branch test will work
This file is being edited on the PC from disk
I will try to merge it with the main branch....
Github desktop realised there were changes to the local file, so I commited the changes and then created a pull request.
I was able to view the pull request on the Github online portal and merge the new branch with the main stream.
Lets see if this works now. I left the new branch in existance rather than deleting it, so I'm hoping it will allow me to commit these changes...
| 3c99b6771a759e100cf4419de97b2b337086508d | [
"Markdown",
"C"
] | 2 | Markdown | RichCorbin/hello-world | f17658215ebdfe85dd70abd00bdcdd8ab50a9255 | 1eb680b44467b6472cf75eb64f5ecbcd706a2667 |
refs/heads/master | <file_sep>% Generated by roxygen2 (4.1.1): do not edit by hand
% Please edit documentation in R/wb.R
\name{wb}
\alias{wb}
\title{Download Data from the World Bank API}
\usage{
wb(country = "all", indicator, startdate, enddate, mrv, gapfill, freq, cache,
lang = c("en", "es", "fr", "ar", "zh"), removeNA = TRUE,
POSIXct = FALSE, includedec = FALSE)
}
\arguments{
\item{country}{Character vector of country or region codes. Default value is special code of \code{all}.
Other permissible values are codes in the following fields from the \code{\link{wb_cachelist}} \code{country}
data frame. \code{iso3c}, \code{iso2c}, \code{regionID}, \code{adminID}, \code{incomeID}, and \code{lendingID}}
\item{indicator}{Character vector of indicator codes. These codes correspond to the \code{indicatorID} column
from the \code{indicator} data frame of \code{\link{wbcache}} or \code{\link{wb_cachelist}}, or
the result of \code{\link{wbindicators}}}
\item{startdate}{Numeric or character. If numeric it must be in \%Y form (i.e. four digit year).
For data at the subannual granularity the API supports a format as follows: for monthly data, "2016M01"
and for quarterly data, "2016Q1". This also accepts a special value of "YTD", useful for more frequently
updated subannual indicators.}
\item{enddate}{Numeric or character. If numeric it must be in \%Y form (i.e. four digit year).
For data at the subannual granularity the API supports a format as follows: for monthly data, "2016M01"
and for quarterly data, "2016Q1".}
\item{mrv}{Numeric. The number of Most Recent Values to return. A replacement of \code{startdate} and \code{enddate},
this number represents the number of observations you which to return starting from the most recent date of collection.
Useful in conjuction with \code{freq}}
\item{gapfill}{Logical. Works with \code{mrv}. if \code{TRUE} fills values, if not available, by back tracking to the
next available period (max number of periods back tracked will be limited by \code{mrv} number)}
\item{freq}{Character String. For fetching quarterly ("Q"), monthly("M") or yearly ("Y") values.
Currently works along with \code{mrv}. Useful for querying high frequency data.}
\item{cache}{List of data frames returned from \code{\link{wbcache}}. If omitted,
\code{\link{wb_cachelist}} is used}
\item{lang}{Language in which to return the results. If \code{lang} is unspecified,
english is the default.}
\item{removeNA}{if \code{TRUE}, remove any blank or \code{NA} observations that are returned.
if \code{FALSE}, no blank or \code{NA} values are removed from the return.}
\item{POSIXct}{if \code{TRUE}, additonal columns \code{date_ct} and \code{granularity} are added.
\code{date_ct} converts the default date into a \code{\link[base]{POSIXct}}. \code{granularity}
denotes the time resolution that the date represents. Useful for subannual data and mixing subannual
with annual data. If \code{FALSE}, these fields are not added.}
\item{includedec}{if \code{TRUE}, the column \code{decimal} is not removed from the return. if \code{FALSE},
this column is removed}
}
\value{
Data frame with all available requested data.
}
\description{
This function downloads the requested information using the World Bank API
}
\note{
Not all data returns have support for langauges other than english. If the specific return
does not support your requested language by default it will return \code{NA}. For an enumeration of
supported languages by data source please see \code{\link{wbdatacatalog}}.
The options for \code{lang} are:
\itemize{
\item \code{en}: English
\item \code{es}: Spanish
\item \code{fr}: French
\item \code{ar}: Arabic
\item \code{zh}: Mandarin
}
The \code{POSIXct} parameter requries the use of \code{\link[lubridate]{lubridate}} (>= 1.5.0). All dates
are rounded down to the floor. For example a value for the year 2016 would have a \code{POSIXct} date of
\code{2016-01-01}. If this package is not available and the \code{POSIXct} parameter is set to \code{TRUE},
the parameter is ignored and a \code{warning} is produced.
The \code{includedec} is defaulted to \code{FALSE} because as of writing, all returns have a value of \code{0}
for the \code{decimal} column. This column might be used in the future by the API, therefore the option to include
the column is available.
If there is no data available that matches the request parameters, an empty data frame is returned along with a
\code{warning}. This design is for easy aggregation of multiple calls.
}
\examples{
# GDP at market prices (current US$) for all available countries and regions
wb(indicator = "NY.GDP.MKTP.CD", startdate = 2000, enddate = 2016)
# query using regionID or incomeID
# High Income Countries and Sub-Saharan Africa (all income levels)
wb(country = c("HIC", "SSF"), indicator = "NY.GDP.MKTP.CD", startdate = 1985, enddate = 1985)
# if you do not know when the latest time an indicator is avaiable mrv can help
wb(country = c("IN"), indicator = 'EG.ELC.ACCS.ZS', mrv = 1)
# increase the mrv value to increase the number of maximum number of returns
wb(country = c("IN"), indicator = 'EG.ELC.ACCS.ZS', mrv = 35)
# if you want to "fill-in" the values in between actual observations use gapfill = TRUE
# this highlights a very important difference.
# all other parameters are the same as above, except gapfill = TRUE
# and the results are very different
wb(country = c("IN"), indicator = 'EG.ELC.ACCS.ZS', mrv = 35, gapfill = TRUE)
# if you want the most recent values within a certain time frame
wb(country = c("US"), indicator = 'SI.DST.04TH.20', startdate = 1970, enddate = 2000, mrv = 2)
# without the freq parameter the deafult temporal granularity search is yearly
# should return the 12 most recent years of data
wb(country = c("CHN", "IND"), indicator = "DPANUSSPF", mrv = 12)
# if another frequency is available for that indicator it can be accessed using the freq parameter
# should return the 12 most recent months of data
wb(country = c("CHN", "IND"), indicator = "DPANUSSPF", mrv = 12, freq = "M")
}
<file_sep>% Generated by roxygen2 (4.1.1): do not edit by hand
% Please edit documentation in R/utilities.R
\name{wbget.raw}
\alias{wbget.raw}
\title{Call the World Bank API and return list}
\usage{
wbget.raw(url)
}
\arguments{
\item{url}{A charcter string. A formatted url string}
}
\value{
A list with page information and the data itself
}
\description{
To be used inside of wbget()
}
<file_sep>% Generated by roxygen2 (4.1.1): do not edit by hand
% Please edit documentation in R/utilities.R
\name{wbformatcols}
\alias{wbformatcols}
\title{Format column names of World Bank API returns}
\usage{
wbformatcols(df, col_names, blank2NA = TRUE)
}
\arguments{
\item{df}{data frame returned from API call}
\item{col_names}{a named vector of column names and what they will
be changed to}
\item{blank2NA}{logical. If \code{TRUE} blank values are converted to NA}
}
\value{
a data frame with the column names changed accordingly
}
\description{
change the name of columns that we know of to our
standardized names. If there are new columns added that we
don't know about, leave their name the same
}
<file_sep>% Generated by roxygen2 (4.1.1): do not edit by hand
% Please edit documentation in R/wbstats.R
\docType{package}
\name{wbstats}
\alias{wbstats}
\alias{wbstats-package}
\title{wbstats: An R package for searching and downloading data from the World Bank API.}
\description{
The wbstats package provides structured access to all of the information
available from the World Bank API including; support for mutliple languages,
access to all annual, quarterly, and monthly data, as well as access to the
World Bank Data Catalog API, which provides metadata on each data source,
such as update schedules, last revisions, and coverage, among other information.
}
\details{
To learn more about the wbstats package, start with the vignettes: \code{browseVignettes(package = "wbstats")}
}
<file_sep>#' url chucks to be used in API calls
#'
#' This function is used inside other functions in this package
#'
#' @return a list with a base url and a url section for formatting the json return
wburls <- function() {
base_url <- "http://api.worldbank.org/"
utils_url <- "per_page=20000&format=json"
url_list <- list(base_url = base_url, utils_url = utils_url)
url_list
}
#' Format column names of World Bank API returns
#'
#' change the name of columns that we know of to our
#' standardized names. If there are new columns added that we
#' don't know about, leave their name the same
#'
#' @param df data frame returned from API call
#' @param col_names a named vector of column names and what they will
#' be changed to
#' @param blank2NA logical. If \code{TRUE} blank values are converted to NA
#'
#' @return a data frame with the column names changed accordingly
wbformatcols <- function(df, col_names, blank2NA = TRUE) {
col_align <- match(names(col_names), names(df))
col_match <- col_names[!is.na(col_align)]
if (length(col_match) != 0) names(df)[match(names(col_match), names(df))] <- col_match
if (blank2NA & (nrow(df) != 0)) df[df == ""] <- NA
df
}
#' Add a POSIXct dates to a World Bank API return
#'
#' Add a POSIXct date column as well as a column with the
#' appropreiate granularity to a World Bank API return
#'
#' @param df data frame returned from API call
#' @param date_col name of the current date field
#' @return If the package lubridate (>= 1.5.0) is available the original data frame with two new columns,
#' \code{data_ct} and \code{granularity} is returned. If the above package is not available,
#' the orignal data frame is returned unaltered with an additional warning message.
wbdate2POSIXct <- function(df, date_col) {
if (requireNamespace("lubridate", versionCheck = list(op = ">=", version = "1.5.0"),
quietly = TRUE)) {
if (nrow(df) == 0) {
# hackish way to support the POSIXct parameter with 0 rows returned
df_ct <- as.data.frame(matrix(nrow = 0, ncol = 2), stringsAsFactors = FALSE)
names(df_ct) <- c("date_ct", "granularity")
df <- cbind(df, df_ct)
return(df)
}
# add new columns
df$date_ct <- as.Date.POSIXct(NA)
df$granularity <- NA
date_vec <- df[ , date_col]
# annual ----------
annual_obs_index <- grep("[M|Q|D]", date_vec, invert = TRUE)
if (length(annual_obs_index) > 0) {
annual_posix <- as.Date(date_vec[annual_obs_index], "%Y")
annual_posix_values <- lubridate::floor_date(annual_posix, unit = "year")
df$date_ct[annual_obs_index] <- annual_posix_values
df$granularity[annual_obs_index] <- "annual"
}
# monthly ----------
monthly_obs_index <- grep("M", date_vec)
if (length(monthly_obs_index) > 0) {
monthly_posix <- lubridate::ydm(gsub("M", "01", date_vec[monthly_obs_index]))
monthly_posix_values <- lubridate::floor_date(monthly_posix, unit = "month")
df$date_ct[monthly_obs_index] <- monthly_posix_values
df$granularity[monthly_obs_index] <- "monthly"
}
# quarterly ----------
quarterly_obs_index <- grep("Q", date_vec)
if (length(quarterly_obs_index) > 0) {
# takes a little more work
qtr_obs <- strsplit(date_vec[quarterly_obs_index], "Q")
qtr_df <- as.data.frame(matrix(unlist(qtr_obs), ncol = 2, byrow = TRUE), stringsAsFactors = FALSE)
names(qtr_df) <- c("year", "qtr")
qtr_df$month <- as.numeric(qtr_df$qtr) * 3 # to turn into the max month
qtr_format_vec <- paste0(qtr_df$year, "01", qtr_df$month) # 01 acts as a dummy day
quarterly_posix <- lubridate::ydm(qtr_format_vec)
quarterly_posix_values <- lubridate::floor_date(quarterly_posix, unit = "quarter")
df$date_ct[quarterly_obs_index] <- quarterly_posix_values
df$granularity[quarterly_obs_index] <- "quarterly"
}
} else {
warning("Required Namespace 'lubridate (>= 1.5.0)' not available. This option is being ignored")
}
df
}
#' Call the World Bank API and return list
#'
#' To be used inside of wbget()
#'
#' @param url A charcter string. A formatted url string
#' @return A list with page information and the data itself
wbget.raw <- function(url) {
return_get <- httr::GET(url)
return_json <- httr::content(return_get, as = "text")
return_list <- jsonlite::fromJSON(return_json, flatten = TRUE)
return_list
}
#' Call the World Bank API and return a formatted data frame
#'
#' This function calls wbget.raw and determines if there are
#' multiple pages from the request. If there are multiple pages
#' then if generates a list of data frames from each page and
#' then combines the results with do.call("rbind", mylist)
#'
#' @param url A charcter string. A formatted url string without page information
#' @return A data frame
wbget <- function(url) {
return_list <- wbget.raw(url = url)
# the first element of return list is page information
# if there is more than one page then get the rest
n_pages <- return_list[[1]]$pages
if (n_pages > 1) {
page_list <- lapply(1:n_pages, FUN = function(page) {
if (page == 1) {
return_list[[2]]
} else {
page_url <- paste0(url, "&page=", page)
page_return <- wbget.raw(page_url)
page_df <- page_return[[2]]
}
}
) # end lapply
return_df <- do.call("rbind", page_list)
} else { # only one page
return_df <- return_list[[2]]
}
return_df
}
#' Call the Data Catalog API
#'
#' Helper function for the data catalog call
#'
#' @param url A charcter string. A formatted url string
#' @note This call is seperate because the data catalog is actaully a different
#' API and therefore has a different return structure.
#' @return A data frame
wbget.dc <- function(url) {
return_get <- httr::GET(url)
return_json <- httr::content(return_get, as = "text")
return_list <- jsonlite::fromJSON(return_json, flatten = TRUE)
return_list
}
<file_sep># cached results of World Bank API information ----------------------
library(wbstats)
wb_cachelist <- wbcache(lang = "en")
save(wb_cachelist, file = "data/wb_cachelist.RData", compress = "xz")
<file_sep>% Generated by roxygen2 (4.1.1): do not edit by hand
% Please edit documentation in R/utilities.R
\name{wbget.dc}
\alias{wbget.dc}
\title{Call the Data Catalog API}
\usage{
wbget.dc(url)
}
\arguments{
\item{url}{A charcter string. A formatted url string}
}
\value{
A data frame
}
\description{
Helper function for the data catalog call
}
\note{
This call is seperate because the data catalog is actaully a different
API and therefore has a different return structure.
}
<file_sep>## Resubmission
This is a resubmission. In this version I have:
* added urls to the description
## Test environments
* local win install, R 3.2.0
* win-builder (devel and release)
## R CMD check results
There were no ERRORs or WARNINGs.
There was 1 NOTE:
* checking data for non-ASCII characters ... NOTE
Note: found 1317 marked UTF-8 strings
These UTF-8 strings are kept because it is a cached version of the data from the API that is accessed.
Removing these would result in an invalid cache.
## Comment on example timing
I have reduced the number of examples one each for functions wbcache and wbindicators.
These functions are calling an external API and waiting for the response. This is the source of the timing issues. As these examples
are part of the core functionality of the package I feel that they are important and have decided to include them although they often
take longer than 5 seconds to return.
<file_sep>#' Download Data from the World Bank API
#'
#' This function downloads the requested information using the World Bank API
#'
#' @param country Character vector of country or region codes. Default value is special code of \code{all}.
#' Other permissible values are codes in the following fields from the \code{\link{wb_cachelist}} \code{country}
#' data frame. \code{iso3c}, \code{iso2c}, \code{regionID}, \code{adminID}, \code{incomeID}, and \code{lendingID}
#' @param indicator Character vector of indicator codes. These codes correspond to the \code{indicatorID} column
#' from the \code{indicator} data frame of \code{\link{wbcache}} or \code{\link{wb_cachelist}}, or
#' the result of \code{\link{wbindicators}}
#' @param startdate Numeric or character. If numeric it must be in \%Y form (i.e. four digit year).
#' For data at the subannual granularity the API supports a format as follows: for monthly data, "2016M01"
#' and for quarterly data, "2016Q1". This also accepts a special value of "YTD", useful for more frequently
#' updated subannual indicators.
#' @param enddate Numeric or character. If numeric it must be in \%Y form (i.e. four digit year).
#' For data at the subannual granularity the API supports a format as follows: for monthly data, "2016M01"
#' and for quarterly data, "2016Q1".
#' @param mrv Numeric. The number of Most Recent Values to return. A replacement of \code{startdate} and \code{enddate},
#' this number represents the number of observations you which to return starting from the most recent date of collection.
#' Useful in conjuction with \code{freq}
#' @param gapfill Logical. Works with \code{mrv}. if \code{TRUE} fills values, if not available, by back tracking to the
#' next available period (max number of periods back tracked will be limited by \code{mrv} number)
#' @param freq Character String. For fetching quarterly ("Q"), monthly("M") or yearly ("Y") values.
#' Currently works along with \code{mrv}. Useful for querying high frequency data.
#' @param cache List of data frames returned from \code{\link{wbcache}}. If omitted,
#' \code{\link{wb_cachelist}} is used
#' @param lang Language in which to return the results. If \code{lang} is unspecified,
#' english is the default.
#' @param removeNA if \code{TRUE}, remove any blank or \code{NA} observations that are returned.
#' if \code{FALSE}, no blank or \code{NA} values are removed from the return.
#' @param POSIXct if \code{TRUE}, additonal columns \code{date_ct} and \code{granularity} are added.
#' \code{date_ct} converts the default date into a \code{\link[base]{POSIXct}}. \code{granularity}
#' denotes the time resolution that the date represents. Useful for subannual data and mixing subannual
#' with annual data. If \code{FALSE}, these fields are not added.
#' @param includedec if \code{TRUE}, the column \code{decimal} is not removed from the return. if \code{FALSE},
#' this column is removed
#' @return Data frame with all available requested data.
#'
#' @note Not all data returns have support for langauges other than english. If the specific return
#' does not support your requested language by default it will return \code{NA}. For an enumeration of
#' supported languages by data source please see \code{\link{wbdatacatalog}}.
#' The options for \code{lang} are:
#' \itemize{
#' \item \code{en}: English
#' \item \code{es}: Spanish
#' \item \code{fr}: French
#' \item \code{ar}: Arabic
#' \item \code{zh}: Mandarin
#' }
#' The \code{POSIXct} parameter requries the use of \code{\link[lubridate]{lubridate}} (>= 1.5.0). All dates
#' are rounded down to the floor. For example a value for the year 2016 would have a \code{POSIXct} date of
#' \code{2016-01-01}. If this package is not available and the \code{POSIXct} parameter is set to \code{TRUE},
#' the parameter is ignored and a \code{warning} is produced.
#'
#' The \code{includedec} is defaulted to \code{FALSE} because as of writing, all returns have a value of \code{0}
#' for the \code{decimal} column. This column might be used in the future by the API, therefore the option to include
#' the column is available.
#'
#' If there is no data available that matches the request parameters, an empty data frame is returned along with a
#' \code{warning}. This design is for easy aggregation of multiple calls.
#'
#' @examples
#'
#' # GDP at market prices (current US$) for all available countries and regions
#' wb(indicator = "NY.GDP.MKTP.CD", startdate = 2000, enddate = 2016)
#'
#' # query using regionID or incomeID
#' # High Income Countries and Sub-Saharan Africa (all income levels)
#' wb(country = c("HIC", "SSF"), indicator = "NY.GDP.MKTP.CD", startdate = 1985, enddate = 1985)
#'
#' # if you do not know when the latest time an indicator is avaiable mrv can help
#' wb(country = c("IN"), indicator = 'EG.ELC.ACCS.ZS', mrv = 1)
#'
#' # increase the mrv value to increase the number of maximum number of returns
#' wb(country = c("IN"), indicator = 'EG.ELC.ACCS.ZS', mrv = 35)
#'
#' # if you want to "fill-in" the values in between actual observations use gapfill = TRUE
#' # this highlights a very important difference.
#' # all other parameters are the same as above, except gapfill = TRUE
#' # and the results are very different
#' wb(country = c("IN"), indicator = 'EG.ELC.ACCS.ZS', mrv = 35, gapfill = TRUE)
#'
#' # if you want the most recent values within a certain time frame
#' wb(country = c("US"), indicator = 'SI.DST.04TH.20', startdate = 1970, enddate = 2000, mrv = 2)
#'
#' # without the freq parameter the deafult temporal granularity search is yearly
#' # should return the 12 most recent years of data
#' wb(country = c("CHN", "IND"), indicator = "DPANUSSPF", mrv = 12)
#'
#' # if another frequency is available for that indicator it can be accessed using the freq parameter
#' # should return the 12 most recent months of data
#' wb(country = c("CHN", "IND"), indicator = "DPANUSSPF", mrv = 12, freq = "M")
#' @export
wb <- function(country = "all", indicator, startdate, enddate, mrv, gapfill, freq, cache,
lang = c("en", "es", "fr", "ar", "zh"), removeNA = TRUE, POSIXct = FALSE, includedec = FALSE) {
lang <- match.arg(lang)
url_list <- wburls()
base_url <- url_list$base_url
utils_url <- url_list$utils_url
if (missing(cache)) cache <- wbstats::wb_cachelist
# check country ----------
if (!("all" %in% country)) {
cache_cn <- cache$countries
cn_check <- cache_cn[ , c("iso3c", "iso2c", "regionID", "adminID", "incomeID")]
cn_check <- unique(unlist(cn_check, use.names = FALSE))
cn_check <- cn_check[!is.na(cn_check)]
good_cn_index <- country %in% cn_check
good_cn <- country[good_cn_index]
if (length(good_cn) == 0) stop("country parameter has no valid values. Please check documentation for valid inputs")
bad_cn <- country[!good_cn_index]
if (length(bad_cn) > 0) warning(paste0("The following country values are not valid and are being excluded from the request: ",
paste(bad_cn, collapse = ",")))
country_url <- paste0(good_cn, collapse = ";")
} else {
country_url <- "all"
}
# check indicator ----------
cache_ind <- cache$indicators
ind_check <- cache_ind[, "indicatorID"]
ind_check <- ind_check[!is.na(ind_check)] # should never be needed but make sure
good_ind_index <- indicator %in% ind_check
good_ind <- indicator[good_ind_index]
if (length(good_ind) == 0) stop("indicator parameter has no valid values. Please check documentation for valid inputs")
bad_ind <- indicator[!good_ind_index]
if (length(bad_ind) > 0) warning(paste0("The following indicator values are not valid and are being excluded from the request: ",
paste(bad_ind, collapse = ",")))
## check date and other parameters. add to list if not missing ----------
param_url_list <- list()
# check dates ----------
if (missing(startdate) != missing(enddate)) stop("Using either startdate or enddate requries supplying both. Please provide both if a date range is wanted")
if (!(missing(startdate) & missing(enddate))) {
#
# something here to check the inputs but i'll come back to this
#
date_url <- paste0("date=", startdate, ":", enddate)
param_url_list[length(param_url_list) + 1] <- date_url
}
# check mrv ----------
if (!missing(mrv)) {
if (!is.numeric(mrv)) stop("If supplied, mrv must be numeric")
mrv_url <- paste0("MRV=", round(mrv, digits = 0)) # just to make sure its a whole number
param_url_list[length(param_url_list) + 1] <- mrv_url
}
# check gapfill ----------
if (!missing(gapfill)) {
if (!is.logical(gapfill)) stop("If supplied, values for gapfill must be TRUE or FALSE")
if (missing(mrv)) stop("mrv must be supplied for gapfill to be used")
gapfill_url <- paste0("Gapfill=", ifelse(gapfill, "Y", "N"))
param_url_list[length(param_url_list) + 1] <- gapfill_url
}
# check freq ----------
if (!missing(freq)) {
if (!freq %in% c("Y", "Q", "M")) stop("If supplied, values for freq must be one of the following 'Y' (yearly), 'Q' (Quarterly), or 'M' (Monthly)")
freq_url <- paste0("frequency=", freq)
param_url_list[length(param_url_list) + 1] <- freq_url
}
# combine the url parameters ----------
param_url_list[length(param_url_list) + 1] <- utils_url
param_url <- paste0(param_url_list, collapse = "&")
# make API calls ----------
df_list <- lapply(indicator, FUN = function(i) {
full_url <- paste0(base_url, lang, "/countries/", country_url, "/indicators/", i, "?", param_url)
return_df <- try(wbget(full_url), silent = TRUE)
}
)
# remove the errored out indicator returns ----------
df_index <- sapply(df_list, is.data.frame)
out_list <- df_list[df_index]
# "defaultName" = "newName"
out_cols <- c("value" = "value",
"decimal" = "decimal",
"date" = "date",
"indicator.id" = "indicatorID",
"indicator.value" = "indicator",
"country.id" = "iso2c",
"country.value" = "country")
if (length(out_list) == 0) {
warning("No data was returned for any requested country and indicator. Returning empty data frame")
out_df <- as.data.frame(matrix(nrow = 0, ncol = length(out_cols)))
names(out_df) <- names(out_cols)
} else {
out_df <- do.call("rbind", out_list)
}
# a little clean up ----------
out_df$value <- as.numeric(out_df$value)
if (!includedec) out_df$decimal <- NULL
out_df <- wbformatcols(out_df, out_cols)
if (removeNA) out_df <- out_df[!is.na(out_df$value), ]
if (POSIXct) out_df <- wbdate2POSIXct(out_df, "date")
out_df
}
<file_sep>% Generated by roxygen2 (4.1.1): do not edit by hand
% Please edit documentation in R/utilities.R
\name{wburls}
\alias{wburls}
\title{url chucks to be used in API calls}
\usage{
wburls()
}
\value{
a list with a base url and a url section for formatting the json return
}
\description{
This function is used inside other functions in this package
}
<file_sep>% Generated by roxygen2 (4.1.1): do not edit by hand
% Please edit documentation in R/wbsearch.R
\name{wbsearch}
\alias{wbsearch}
\title{Search indicator information available through the World Bank API}
\usage{
wbsearch(pattern = "poverty", fields = c("indicator", "indicatorDesc"),
extra = FALSE, cache)
}
\arguments{
\item{pattern}{Character string or regular expression to be matched}
\item{fields}{Character vector of column names through which to search}
\item{extra}{if \code{FALSE}, only the indicator ID and short name are returned,
if \code{TRUE}, all columns of the \code{cache} parameter's indicator data frame
are returned}
\item{cache}{List of data frames returned from \code{\link{wbcache}}. If omitted,
\code{\link{wb_cachelist}} is used}
}
\value{
Data frame with indicators that match the search pattern.
}
\description{
This function allows finds indicators that match a search term and returns
a data frame of matching results
}
\examples{
wbsearch(pattern = "education")
wbsearch(pattern = "Food and Agriculture Organization", fields = "sourceOrg")
# with regular expression operators
# 'poverty' OR 'unemployment' OR 'employment'
wbsearch(pattern = "poverty|unemployment|employment")
}
<file_sep>## ------------------------------------------------------------------------
library(wbstats)
str(wb_cachelist, max.level = 1)
## ------------------------------------------------------------------------
library(wbstats)
# default language is english
new_cache <- wbcache()
## ---- echo=FALSE, results='asis'-----------------------------------------
knitr::kable(head(wbstats::wb_cachelist$indicators[4310:4311, ]))
## ------------------------------------------------------------------------
library(wbstats)
unemploy_vars <- wbsearch(pattern = "unemployment")
head(unemploy_vars)
## ------------------------------------------------------------------------
library(wbstats)
blmbrg_vars <- wbsearch(pattern = "Bloomberg", fields = "sourceOrg")
head(blmbrg_vars)
## ------------------------------------------------------------------------
library(wbstats)
# 'poverty' OR 'unemployment' OR 'employment'
povemply_vars <- wbsearch(pattern = "poverty|unemployment|employment")
head(povemply_vars)
## ------------------------------------------------------------------------
library(wbstats)
# download wbcache in spanish
wb_cachelist_es <- wbcache(lang = "es")
gini_vars <- wbsearch(pattern = "Coeficiente de Gini", cache = wb_cachelist_es)
head(gini_vars)
## ------------------------------------------------------------------------
library(wbstats)
# Population, total
pop_data <- wb(indicator = "SP.POP.TOTL", startdate = 2000, enddate = 2002)
head(pop_data)
## ------------------------------------------------------------------------
library(wbstats)
# Population, total
# country values: iso3c, iso2c, regionID, adminID, incomeID
pop_data <- wb(country = c("ABW","AF", "SSF", "ECA", "NOC"),
indicator = "SP.POP.TOTL", startdate = 2012, enddate = 2012)
head(pop_data)
## ------------------------------------------------------------------------
library(wbstats)
pop_gdp_data <- wb(country = c("US", "NO"), indicator = c("SP.POP.TOTL", "NY.GDP.MKTP.CD"),
startdate = 1971, enddate = 1971)
head(pop_gdp_data)
## ------------------------------------------------------------------------
library(wbstats)
eg_data <- wb(country = c("IN"), indicator = 'EG.ELC.ACCS.ZS', mrv = 1)
eg_data
## ------------------------------------------------------------------------
library(wbstats)
eg_data <- wb(country = c("IN"), indicator = 'EG.ELC.ACCS.ZS', mrv = 10)
eg_data
## ------------------------------------------------------------------------
library(wbstats)
eg_data <- wb(country = c("IN"), indicator = 'EG.ELC.ACCS.ZS', mrv = 10, gapfill = TRUE)
eg_data
## ------------------------------------------------------------------------
library(wbstats)
oil_data <- wb(indicator = "CRUDE_BRENT", mrv = 10, freq = "M", POSIXct = TRUE)
head(oil_data)
## ---- fig.height = 4, fig.width = 7.5------------------------------------
library(wbstats)
library(ggplot2)
oil_data <- wb(indicator = c("CRUDE_DUBAI", "CRUDE_BRENT", "CRUDE_WTI", "CRUDE_PETRO"),
startdate = "2012M01", enddate = "2014M12", freq = "M", POSIXct = TRUE)
ggplot(oil_data, aes(x = date_ct, y = value, colour = indicator)) + geom_line(size = 1) +
labs(title = "Crude Oil Price Comparisons", x = "Date", y = "US Dollars")
## ---- fig.height = 4, fig.width = 7.5------------------------------------
library(wbstats)
library(ggplot2)
# querying seperate for differing time coverage example
gold_data <- wb(indicator = "GOLD", mrv = 120, freq = "M", POSIXct = TRUE)
plat_data <- wb(indicator = "PLATINUM", mrv = 60, freq = "M", POSIXct = TRUE)
metal_data <- rbind(gold_data, plat_data)
ggplot(metal_data, aes(x = date_ct, y = value, colour = indicator)) + geom_line(size = 1) +
labs(title = "Precious Metal Prices", x = "Date", y = "US Dollars")
## ------------------------------------------------------------------------
library(wbstats)
pop_data <- wb(country = "US", indicator = "SP.POP.TOTL",
startdate = 1800, enddate = 1805, POSIXct = TRUE)
nrow(pop_data)
max(pop_data$date_ct)
min(pop_data$date_ct)
## ------------------------------------------------------------------------
library(wbstats)
eg_data_1 <- wb(country = c("IN", "AF"), indicator = 'EG.FEC.RNEW.ZS', mrv = 1)
eg_data_1
eg_data_2 <- wb(country = c("IN", "AF"), indicator = 'EG.FEC.RNEW.ZS', mrv = 2)
eg_data_2
## ------------------------------------------------------------------------
library(wbstats)
# english
cache_en <- wbcache()
sum(is.na(cache_en$indicators$indicator))
# spanish
cache_es <- wbcache(lang = "es")
sum(is.na(cache_es$indicators$indicator))
<file_sep>% Generated by roxygen2 (4.1.1): do not edit by hand
% Please edit documentation in R/utilities.R
\name{wbdate2POSIXct}
\alias{wbdate2POSIXct}
\title{Add a POSIXct dates to a World Bank API return}
\usage{
wbdate2POSIXct(df, date_col)
}
\arguments{
\item{df}{data frame returned from API call}
\item{date_col}{name of the current date field}
}
\value{
If the package lubridate (>= 1.5.0) is available the original data frame with two new columns,
\code{data_ct} and \code{granularity} is returned. If the above package is not available,
the orignal data frame is returned unaltered with an additional warning message.
}
\description{
Add a POSIXct date column as well as a column with the
appropreiate granularity to a World Bank API return
}
<file_sep><!-- README.md is generated from README.Rmd. Please edit that file -->
wbstats: An R package for searching and downloading data from the World Bank API.
=================================================================================
You can install:
The latest release version from CRAN with
``` r
install.packages("wbstats")
```
or
The latest development version from github with
``` r
devtools::install_github("GIST-ORNL/wbstats")
```
Introduction
============
The World Bank[1] is a tremendous source of global socio-economic data; spanning several decades and dozens of topics, it has the potential to shed light on numerous global issues. To help provide access to this rich source of information, The World Bank themselves, provide a well structured RESTful API[2]. While this API is very useful for integration into web services and other high-level applications, it becomes quickly overwhelming for researchers who have neither the time nor the expertise to develop software to interface with the API. This leaves the researcher to rely on manual bulk downloads of spreadsheets of the data they are interested in. This too is can quickly become overwhelming, as the work is manual, time consuming, and not easily reproducible. The goal of the `wbstats` R-package is to provide a bridge between these alternatives and allow researchers to focus on their research questions and not the question of accessing the data. The `wbstats` R-package allows researchers to quickly search and download the data of their particular interest in a programmatic and reproducible fashion; this facilitates a seamless integration into their workflow and allows analysis to be quickly rerun on different areas of interest and with realtime access to the latest available data.
### Highlighted features of the `wbstats` R-package:
- Access to all annual, quarterly, and monthly data available in the API
- Support for searching and downloading data in multiple languages
- Access to the World Bank Data Catalog Metadata, providing among other information; update schedules and supported languages
- Ability to return `POSIXct` dates for easy integration into plotting and time-series analysis techniques
- Support for Most Recent Value queries
- Support for `grep` style searching for data descriptions and names
- Ability to download data not only by country, but by aggregates as well, such as High Income or South Asia
Getting Started
===============
Unless you know the country and indicator codes that you want to download the first step would be searching for the data you are interested in. `wbsearch()` provides `grep` style searching of all available indicators from the World Bank API and returns the indicator information that matches your query.
To access what countries or regions are available you can use the `countries` data frame from either `wb_cachelist` or the saved return from `wbcache()`. This data frame contains relevant information regarding each country or region. More information on how to use this for downloading data is covered later.
Finding available data with `wb_cachelist`
------------------------------------------
For performance and ease of use, a cached version of useful information is provided with the `wbstats` R-package. This data is called `wb_cachelist` and provides a snapshot of available countries, indicators, and other relevant information. `wb_cachelist` is by default the the source from which `wbsearch()` and `wb()` uses to find matching information. The structure of `wb_cachelist` is as follows
``` r
library(wbstats)
str(wb_cachelist, max.level = 1)
#> List of 7
#> $ countries :'data.frame': 264 obs. of 14 variables:
#> $ indicators :'data.frame': 16630 obs. of 6 variables:
#> $ sources :'data.frame': 39 obs. of 4 variables:
#> $ datacatalog:'data.frame': 10 obs. of 25 variables:
#> $ topics :'data.frame': 21 obs. of 3 variables:
#> $ income :'data.frame': 10 obs. of 2 variables:
#> $ lending :'data.frame': 4 obs. of 2 variables:
```
Accessing updated available data with `wbcache()`
-------------------------------------------------
For the most recent information on available data from the World Bank API `wbcache()` downloads an updated version of the information stored in `wb_cachelist`. `wb_cachelist` is simply a saved return of `wbcache(lang = "en")`. To use this updated information in `wbsearch()` or `wb()`, set the `cache` parameter to the saved `list` returned from `wbcache()`. It is always a good idea to use this updated information to insure that you have access to the latest available information, such as newly added indicators or data sources.
``` r
library(wbstats)
# default language is english
new_cache <- wbcache()
```
Search available data with `wbsearch()`
---------------------------------------
`wbsearch()` searches through the `indicators` data frame to find indicators that match a search pattern. An example of the structure of this data frame is below
| | indicatorID | indicator | indicatorDesc | sourceOrg | sourceID | source |
|------|:------------------|:---------------------------------------------------|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-------------------------------------------|:---------|:-----------------------------|
| 4310 | DT.IXA.DPPG.CD.CG | Net change in interest arrears (current US$) | Net change in interest arrears is the variation in the total amount of interest in arrears between two consecutive years. Data are in current U.S. dollars. | World Bank, International Debt Statistics. | 2 | World Development Indicators |
| 4311 | DT.IXA.OFFT.CD | Interest arrears, official creditors (current US$) | Interest in arrears on long-term debt is defined as interest payment due but not paid, on a cumulative basis. Debt from official creditors includes loans from international organizations (multilateral loans) and loans from governments (bilateral loans). Loans from international organization include loans and credits from the World Bank, regional development banks, and other multilateral and intergovernmental agencies. Excluded are loans from funds administered by an international organization on behalf of a single donor government; these are classified as loans from governments. Government loans include loans from governments and their agencies (including central banks), loans from autonomous bodies, and direct loans from official export credit agencies. Long-term external debt is defined as debt that has an original or extended maturity of more than one year and that is owed to nonresidents by residents of an economy and repayable in currency, goods, or services. Data are in current U.S. dollars. | World Bank, International Debt Statistics. | 2 | World Development Indicators |
By default the search is done over the `indicator` and `indicatorDesc` fields and returns the columns `indicatorID` and `indicator` of the matching rows. The `indicatorID` values are inputs into `wb()`, the function for downloading the data. To return all columns for the `indicators` data frame, you can set `extra = TRUE`.
``` r
library(wbstats)
unemploy_vars <- wbsearch(pattern = "unemployment")
head(unemploy_vars)
#> indicatorID indicator
#> 1750 ccx_unempr_pop_eld Unemployment rate - elderly
#> 1751 ccx_unempr_pop_fem Unemployment rate - female
#> 1752 ccx_unempr_pop_mal Unemployment rate - male
#> 1753 ccx_unempr_pop_rur Unemployment rate - rural
#> 1754 ccx_unempr_pop_tot Unemployment rate in total population
#> 1755 ccx_unempr_pop_urb Unemployment rate - urban
```
Other fields can be searched by simply changing the `fields` parameter. For example
``` r
library(wbstats)
blmbrg_vars <- wbsearch(pattern = "Bloomberg", fields = "sourceOrg")
head(blmbrg_vars)
#> indicatorID indicator
#> 1496 BARLEY Barley, $/mt, current$
#> 1789 CHICKEN Meat, chicken, cents/kg, current$
#> 1813 CRUDE_BRENT Crude oil, Brendt, $/bbl, current$
#> 1814 CRUDE_DUBAI Crude oil, Dubai, $/bbl, current$
#> 1816 CRUDE_WTI Crude oil, WTI, $/bbl, current$
#> 5370 GFDD.OM.02 Stock market return (%, year-on-year)
```
Regular expressions are also supported.
``` r
library(wbstats)
# 'poverty' OR 'unemployment' OR 'employment'
povemply_vars <- wbsearch(pattern = "poverty|unemployment|employment")
head(povemply_vars)
#> indicatorID indicator
#> 1 1.0.HCount.1.90usd Poverty Headcount ($1.90 a day)
#> 2 1.0.HCount.2.5usd Poverty Headcount ($2.50 a day)
#> 3 1.0.HCount.Mid10to50 Middle Class ($10-50 a day) Headcount
#> 4 1.0.HCount.Ofcl Official Moderate Poverty Rate-National
#> 5 1.0.HCount.Poor4uds Poverty Headcount ($4 a day)
#> 6 1.0.HCount.Vul4to10 Vulnerable ($4-10 a day) Headcount
```
The default cached data in `wb_cachelist` is in English. To search indicators in a different language, you can download an updated copy of `wb_cachelist` using `wbcache()`, with the `lang` parameter set to the language of interest and then set this as the `cache` parameter in `wbsearch()`. Other languages are supported in so far as they are supported by the original data sources. Some sources provide full support for other languages, while some have very limited support. If the data source does not have a translation for a certain field or indicator then the result is `NA`, this may result in a varying number matches depending upon the language you select.
``` r
library(wbstats)
# download wbcache in spanish
wb_cachelist_es <- wbcache(lang = "es")
gini_vars <- wbsearch(pattern = "Coeficiente de Gini", cache = wb_cachelist_es)
head(gini_vars)
#> indicatorID indicator
#> 136 3.0.Gini Coeficiente de Gini
#> 137 3.0.Gini_nozero Coeficiente de Gini (Ingreso diferente de cero)
#> 146 3.0.TheilInd1 Índice de Theil, GE(1)
#> 159 3.1.Gini Gini, Rural
#> 161 3.1.TheilInd1 Índice de Theil, GE(1), Rural
#> 172 3.2.Gini Gini, Urbano
```
Downloading data with `wb()`
----------------------------
Once you have found the set of indicators that you would like to explore further, the next step is downloading the data with `wb()`. The following examples are meant to highlight the different ways in which `wb()` can be used and demonstrate the major optional parameters.
The default value for the `country` parameter is a special value of `all` which as you might expect, returns data on the selected `indicator` for every available country or region.
``` r
library(wbstats)
# Population, total
pop_data <- wb(indicator = "SP.POP.TOTL", startdate = 2000, enddate = 2002)
head(pop_data)
#> value date indicatorID indicator iso2c
#> 1 293501628 2002 SP.POP.TOTL Population, total 1A
#> 2 287358599 2001 SP.POP.TOTL Population, total 1A
#> 3 281355774 2000 SP.POP.TOTL Population, total 1A
#> 4 6532561 2002 SP.POP.TOTL Population, total S3
#> 5 6497461 2001 SP.POP.TOTL Population, total S3
#> 6 6454716 2000 SP.POP.TOTL Population, total S3
#> country
#> 1 Arab World
#> 2 Arab World
#> 3 Arab World
#> 4 Caribbean small states
#> 5 Caribbean small states
#> 6 Caribbean small states
```
If you are interested in only some subset of countries or regions you can pass along the specific codes to the `country` parameter. The country and region codes that can be passed to the `country` parameter correspond to the coded values from the `iso2c`, `iso3c`, `regionID`, `adminID`, and `incomeID` from the `countries` data frame in `wb_cachelist` or the return of `wbcache()`. Any values from the above columns can mixed together and passed to the same call
``` r
library(wbstats)
# Population, total
# country values: iso3c, iso2c, regionID, adminID, incomeID
pop_data <- wb(country = c("ABW","AF", "SSF", "ECA", "NOC"),
indicator = "SP.POP.TOTL", startdate = 2012, enddate = 2012)
head(pop_data)
#> value date indicatorID indicator iso2c
#> 1 102393 2012 SP.POP.TOTL Population, total AW
#> 2 29726803 2012 SP.POP.TOTL Population, total AF
#> 3 259879171 2012 SP.POP.TOTL Population, total 7E
#> 4 323348755 2012 SP.POP.TOTL Population, total XR
#> 5 922840423 2012 SP.POP.TOTL Population, total ZG
#> country
#> 1 Aruba
#> 2 Afghanistan
#> 3 Europe & Central Asia (developing only)
#> 4 High income: nonOECD
#> 5 Sub-Saharan Africa (all income levels)
```
Queries with multiple indicators return the data in a long data format
``` r
library(wbstats)
pop_gdp_data <- wb(country = c("US", "NO"), indicator = c("SP.POP.TOTL", "NY.GDP.MKTP.CD"),
startdate = 1971, enddate = 1971)
head(pop_gdp_data)
#> value date indicatorID indicator
#> 1 3.903039e+06 1971 SP.POP.TOTL Population, total
#> 2 2.076610e+08 1971 SP.POP.TOTL Population, total
#> 3 1.458311e+10 1971 NY.GDP.MKTP.CD GDP at market prices (current US$)
#> 4 1.167770e+12 1971 NY.GDP.MKTP.CD GDP at market prices (current US$)
#> iso2c country
#> 1 NO Norway
#> 2 US United States
#> 3 NO Norway
#> 4 US United States
```
### Using `mrv`
If you do not know the latest date an indicator you are interested in is available for you country you can use the `mrv` instead of `startdate` and `enddate`. `mrv` stands for most recent value and takes a `integer` corresponding to the number of most recent values you wish to return
``` r
library(wbstats)
eg_data <- wb(country = c("IN"), indicator = 'EG.ELC.ACCS.ZS', mrv = 1)
eg_data
#> value date indicatorID indicator iso2c
#> 1 78.7 2012 EG.ELC.ACCS.ZS Access to electricity (% of population) IN
#> country
#> 1 India
```
You can increase this value and it will return no more than the `mrv` value. However, if `mrv` is greater than the number of available data it will return less
``` r
library(wbstats)
eg_data <- wb(country = c("IN"), indicator = 'EG.ELC.ACCS.ZS', mrv = 10)
eg_data
#> value date indicatorID indicator iso2c
#> 1 78.7 2012 EG.ELC.ACCS.ZS Access to electricity (% of population) IN
#> 2 75.0 2010 EG.ELC.ACCS.ZS Access to electricity (% of population) IN
#> 3 62.3 2000 EG.ELC.ACCS.ZS Access to electricity (% of population) IN
#> 4 50.9 1990 EG.ELC.ACCS.ZS Access to electricity (% of population) IN
#> country
#> 1 India
#> 2 India
#> 3 India
#> 4 India
```
### Using `gapfill = TRUE`
An additional parameter that can be used along with `mrv` is `gapfill`. `gapfill` allows you to "fill-in" the values between actual observations. The "filled-in" value for an otherwise missing date is the last observed value carried forward.The only difference in the data call below from the one directly above is `gapfill = TRUE` (the default is `FALSE`). Note the very important difference
``` r
library(wbstats)
eg_data <- wb(country = c("IN"), indicator = 'EG.ELC.ACCS.ZS', mrv = 10, gapfill = TRUE)
eg_data
#> value date indicatorID indicator iso2c
#> 1 78.7 2015 EG.ELC.ACCS.ZS Access to electricity (% of population) IN
#> 2 78.7 2014 EG.ELC.ACCS.ZS Access to electricity (% of population) IN
#> 3 78.7 2013 EG.ELC.ACCS.ZS Access to electricity (% of population) IN
#> 4 78.7 2012 EG.ELC.ACCS.ZS Access to electricity (% of population) IN
#> 5 75.0 2011 EG.ELC.ACCS.ZS Access to electricity (% of population) IN
#> 6 75.0 2010 EG.ELC.ACCS.ZS Access to electricity (% of population) IN
#> 7 62.3 2009 EG.ELC.ACCS.ZS Access to electricity (% of population) IN
#> 8 62.3 2008 EG.ELC.ACCS.ZS Access to electricity (% of population) IN
#> 9 62.3 2007 EG.ELC.ACCS.ZS Access to electricity (% of population) IN
#> 10 62.3 2006 EG.ELC.ACCS.ZS Access to electricity (% of population) IN
#> country
#> 1 India
#> 2 India
#> 3 India
#> 4 India
#> 5 India
#> 6 India
#> 7 India
#> 8 India
#> 9 India
#> 10 India
```
Because `gapfill` returns data that does reflect actual observed values, use this option with care.
### Using `POSIXct = TRUE`
The default format for the `date` column is not conducive to sorting or plotting, especially when downloading sub annual data, such as monthly or quarterly data. To address this, if `TRUE`, the `POSIXct` parameter adds the additional columns `date_ct` and `granularity`. `date_ct` converts the default date into a `POSIXct`. `granularity` denotes the time resolution that the date represents. This option requires the use of the package `lubridate (>= 1.5.0)`. If `POSIXct = TRUE` and `lubridate (>= 1.5.0)` is not available, a `warning` is produced and the option is ignored
``` r
library(wbstats)
oil_data <- wb(indicator = "CRUDE_BRENT", mrv = 10, freq = "M", POSIXct = TRUE)
head(oil_data)
#> value date indicatorID indicator iso2c
#> 1 57.93 2015M02 CRUDE_BRENT Crude oil, Brendt, $/bbl, nominal$ 1W
#> 2 48.07 2015M01 CRUDE_BRENT Crude oil, Brendt, $/bbl, nominal$ 1W
#> 3 62.33 2014M12 CRUDE_BRENT Crude oil, Brendt, $/bbl, nominal$ 1W
#> 4 78.44 2014M11 CRUDE_BRENT Crude oil, Brendt, $/bbl, nominal$ 1W
#> 5 87.27 2014M10 CRUDE_BRENT Crude oil, Brendt, $/bbl, nominal$ 1W
#> 6 97.34 2014M09 CRUDE_BRENT Crude oil, Brendt, $/bbl, nominal$ 1W
#> country date_ct granularity
#> 1 World 2015-02-01 monthly
#> 2 World 2015-01-01 monthly
#> 3 World 2014-12-01 monthly
#> 4 World 2014-11-01 monthly
#> 5 World 2014-10-01 monthly
#> 6 World 2014-09-01 monthly
```
The `POSIXct = TRUE` option makes plotting and sorting dates much easier.
``` r
library(wbstats)
library(ggplot2)
#> Warning: package 'ggplot2' was built under R version 3.2.3
oil_data <- wb(indicator = c("CRUDE_DUBAI", "CRUDE_BRENT", "CRUDE_WTI", "CRUDE_PETRO"),
startdate = "2012M01", enddate = "2014M12", freq = "M", POSIXct = TRUE)
ggplot(oil_data, aes(x = date_ct, y = value, colour = indicator)) + geom_line(size = 1) +
labs(title = "Crude Oil Price Comparisons", x = "Date", y = "US Dollars")
```
<!-- -->
The `POSIXct = TRUE` option also makes plotting time series with different time coverage seamless
``` r
library(wbstats)
library(ggplot2)
# querying seperate for differing time coverage example
gold_data <- wb(indicator = "GOLD", mrv = 120, freq = "M", POSIXct = TRUE)
plat_data <- wb(indicator = "PLATINUM", mrv = 60, freq = "M", POSIXct = TRUE)
metal_data <- rbind(gold_data, plat_data)
ggplot(metal_data, aes(x = date_ct, y = value, colour = indicator)) + geom_line(size = 1) +
labs(title = "Precious Metal Prices", x = "Date", y = "US Dollars")
```
<!-- -->
Some Sharp Corners
==================
There are a few behaviors of the World Bank API that being aware of could help explain some potentially unexpected results. These results are known but no special actions are taken to mitigate them as they are the result of the API itself and artifically limiting the inputs or results could potentially causes problems or create unnecessary rescrictions in the future.
Non-overlaping time frames
--------------------------
If you make a query with `wb()` and the `startdate` and `enddate` no not overlap at all with the available data, then all of the data is returned instead of nothing.
``` r
library(wbstats)
pop_data <- wb(country = "US", indicator = "SP.POP.TOTL",
startdate = 1800, enddate = 1805, POSIXct = TRUE)
nrow(pop_data)
#> [1] 55
max(pop_data$date_ct)
#> [1] "2014-01-01"
min(pop_data$date_ct)
#> [1] "1960-01-01"
```
Most Recent Values
------------------
If you use the `mrv` parameter in `wb()` with mutliple countries or regions, it searches for the most recent dates for which any country or region in your selection has data and then returns the data for those dates. In other words the `mrv` value is not determined on a country by country basis, rather it is determined across the entire selection.
``` r
library(wbstats)
eg_data_1 <- wb(country = c("IN", "AF"), indicator = 'EG.FEC.RNEW.ZS', mrv = 1)
eg_data_1
#> value date indicatorID
#> 2 38.99062 2012 EG.FEC.RNEW.ZS
#> indicator iso2c
#> 2 Renewable energy consumption (% of total final energy consumption) IN
#> country
#> 2 India
eg_data_2 <- wb(country = c("IN", "AF"), indicator = 'EG.FEC.RNEW.ZS', mrv = 2)
eg_data_2
#> value date indicatorID
#> 2 10.80752 2011 EG.FEC.RNEW.ZS
#> 3 38.99062 2012 EG.FEC.RNEW.ZS
#> 4 39.85413 2011 EG.FEC.RNEW.ZS
#> indicator iso2c
#> 2 Renewable energy consumption (% of total final energy consumption) AF
#> 3 Renewable energy consumption (% of total final energy consumption) IN
#> 4 Renewable energy consumption (% of total final energy consumption) IN
#> country
#> 2 Afghanistan
#> 3 India
#> 4 India
```
Searching in other languages
----------------------------
Not all data sources support all languages. If an indicator does not have a translation for a particular language, the non-supported fields will return as `NA`. This could potentially result in a differing number of matching indicators from `wbsearch()`
``` r
library(wbstats)
# english
cache_en <- wbcache()
sum(is.na(cache_en$indicators$indicator))
#> [1] 0
# spanish
cache_es <- wbcache(lang = "es")
sum(is.na(cache_es$indicators$indicator))
#> [1] 14909
```
Legal
=====
The World Bank Group, or any of its member instutions, do not support or endorse this software and are not libable for any findings or conclusions that come from the use of this software.
[1] <http://www.worldbank.org/>
[2] <http://data.worldbank.org/developers>
<file_sep>% Generated by roxygen2 (4.1.1): do not edit by hand
% Please edit documentation in R/utilities.R
\name{wbget}
\alias{wbget}
\title{Call the World Bank API and return a formatted data frame}
\usage{
wbget(url)
}
\arguments{
\item{url}{A charcter string. A formatted url string without page information}
}
\value{
A data frame
}
\description{
This function calls wbget.raw and determines if there are
multiple pages from the request. If there are multiple pages
then if generates a list of data frames from each page and
then combines the results with do.call("rbind", mylist)
}
| c400d929879d48c017bebad7a4a274c34bf11385 | [
"Markdown",
"R"
] | 15 | R | imaike/wbstats | 94d8a40e0de1bd5eb9cd131cd3fa441e4860bdce | 2d58fadc3338818e186683baeccfdfd40ad89acf |
refs/heads/master | <file_sep>import json
from django.contrib.auth.models import User
from django.core.urlresolvers import reverse
from django.db import models
from django.test import TestCase
from . import views
from .models import Category, StockItem, SubCategory
class ItemsViewsTests(TestCase):
def setUp(self):
# create and login as a temp/test user
self.temp_user = User.objects.create_user(
username='temp', password='<PASSWORD>')
login_successful = self.client.login(
username='temp', password='<PASSWORD>')
self.assertTrue(login_successful, 'User is not logged in.')
# create temp categories/sub-categories
self.temp_cat = Category.objects.create(name='Food')
self.temp_cat2 = Category.objects.create(name='Beverage')
self.temp_subcat = SubCategory.objects.create(name='Sweet')
self.temp_subcat2 = SubCategory.objects.create(name='Salty')
# test POST data
self.good_post_data = {
'name': 'Name of item',
'count': 1,
'exp': '2015-12-25',
'cat': self.temp_cat,
'subcat': self.temp_subcat,
'notes': 'These are notes.',
}
# create a new item and call the delete URL with its ID
self.test_item = StockItem.objects.create(
name='Test Item #1',
count=12,
date_of_expiration='2016-04-11',
fk_category=Category.objects.get(name='Food'),
fk_subcategory=SubCategory.objects.get(name='Salty'),
notes=self.good_post_data['notes']
)
self.test_item2 = StockItem.objects.create(
name='Test Item #2',
count=5,
date_of_expiration='2016-03-02',
fk_category=Category.objects.get(name='Beverage'),
fk_subcategory=SubCategory.objects.get(name='Sweet')
)
def test_index(self):
"""
Tests the main home page.
"""
url = reverse('index')
res = self.client.get(url)
self.assertEqual(res.status_code, 200)
self.assertTemplateUsed('items/index.html')
self.assertTrue(res.context['globalvars'])
def test_get_item_by_id(self):
"""
Tests that the get_item_by_id returns the correct item.
"""
# attempt to select our original item
item_id = self.test_item.id
url = reverse('items:get_item_by_id', kwargs={'pk': item_id})
res = self.client.get(url)
self.assertEqual(res.status_code, 200)
# make sure we get the item we expected
json_item = json.loads(str(res.content, encoding='utf8'))
item_name = json_item['name']
self.assertEqual(item_name, self.test_item.name)
# check that we get a 404 for a non-existent item
url = reverse('items:get_item_by_id', kwargs={'pk': 8798798797})
res = self.client.get(url)
self.assertEqual(res.status_code, 404)
#############################################
# StockItem API Tests
#############################################
def test_item(self):
"""
Tests the Item URL for GET/POST requests.
"""
url = reverse('items:item')
res = self.client.post(url, self.good_post_data)
self.assertEqual(res.status_code, 200)
# make sure the item we create is in the database
try:
name = self.good_post_data['name']
self.assertTrue(StockItem.objects.get(name=name))
except StockItem.DoesNotExist:
self.assertTrue(False, 'Expected item instance not found.')
# attempt a GET request to make sure we get a list of items
res = self.client.get(url)
self.assertEqual(res.status_code, 200)
json_items = json.loads(str(res.content, encoding='utf8'))
self.assertTrue(len(json_items) > 0)
self.assertTrue(json_items['items'])
def test_item_update(self):
"""
Tests the item_update view for correctly updating an item.
"""
url = reverse('items:item_update')
original_name = self.test_item.name
update_data = self.good_post_data
update_data['id'] = self.test_item.id
update_data['name'] = 'Updated Test Item #1 Name'
res = self.client.post(url, update_data)
self.assertEqual(res.status_code, 200)
self.assertIn(self.test_item, StockItem.objects.all())
# confirm that that name has been updated
updated_item = StockItem.objects.get(pk=self.test_item.id)
self.assertEqual(update_data['name'], updated_item.name)
self.assertNotEqual(original_name, updated_item.name)
def test_item_delete(self):
"""
Tests that the delete_item view correctly deletes and item
from the database.
"""
url = reverse('items:item_delete')
res = self.client.post(url, {'id': self.test_item.id})
self.assertEqual(res.status_code, 200)
# check that the item has its 'active' flag set to false
updated_item = StockItem.objects.get(pk=self.test_item.id)
self.assertFalse(updated_item.active)
#############################################
# Category API Tests
#############################################
def test_category(self):
"""
Tests the category URL for GET/POST requests.
"""
# test POST request to create a new category
cat_name = 'New Category'
url = reverse('items:category')
res = self.client.post(url, {'name': cat_name})
self.assertEqual(res.status_code, 200)
# make sure the item we create is in the database
cat = None
try:
cat = Category.objects.get(name=cat_name)
except Category.DoesNotExist:
pass
self.assertNotEqual(cat, None, 'Category was not created correctly.')
# attempt a GET request to make sure we get a list of categories
res = self.client.get(url)
self.assertEqual(res.status_code, 200)
json_cats = json.loads(str(res.content, encoding='utf8'))
self.assertTrue(len(json_cats) > 0)
self.assertTrue(json_cats['cats'])
self.assertTrue(json_cats['subcats'])
def test_category_update(self):
"""
Tests that the update_category URL properly updates
the specified category.
"""
new_cat = Category.objects.create(name='Update Category')
new_name = 'NewNameForUpdateCategory'
url = reverse('items:category_update')
res = self.client.post(url, {
'id': new_cat.id,
'name': new_name
})
self.assertEqual(res.status_code, 200)
updated = Category.objects.get(pk=new_cat.id)
self.assertEqual(updated.name, new_name)
def test_category_delete(self):
"""
Tests the delete_category API URL for properly deleting the
specified Category.
"""
cat_name = 'NewCategory'
new_cat = Category.objects.create(name=cat_name)
url = reverse('items:category_delete')
res = self.client.post(url, {'id': new_cat.id})
self.assertEqual(res.status_code, 200)
# make sure the Category we deleted is no longer present
cat = None
try:
cat = Category.objects.get(name=cat_name)
except Category.DoesNotExist:
pass
self.assertEqual(cat, None, 'Category was not deleted correctly.')
def test_send_report(self):
"""
Tests the URL for generating a report of the status of current items.
"""
url = reverse('items:send_report')
res = self.client.get(url)
self.assertEqual(res.status_code, 200)
<file_sep>import datetime
from django.conf import settings
from django.contrib.auth.decorators import login_required
from django.core.urlresolvers import reverse
from django.db.utils import IntegrityError
from django.http import HttpResponse, HttpResponseRedirect, JsonResponse
from django.shortcuts import render, get_object_or_404
from django.utils.decorators import method_decorator
from .email_master import send_weekly_report
from .forms import ItemForm
from .models import StockItem, Category, SubCategory
from .utils.timecheck import TimeCheck
dt = datetime.datetime
globalvars = {
'is_debug': settings.DEBUG,
'version': settings.VERSION,
'build': settings.BUILD
}
@login_required
def index(request):
"""
Provides the main site page.
"""
return render(request, 'items/index.html', {
'globalvars': globalvars,
'fart': 'fart'
})
@login_required
def get_item_by_id(request, pk):
"""
Returns the StockItem that matches the specified ID.
"""
item = get_object_or_404(StockItem, pk=pk)
res_dict = {
'id': item.id,
'name': item.name,
'count': item.count,
'date_added': item.date_added,
'exp': item.date_of_expiration,
'added_by': item.added_by,
'cat': str(item.fk_category),
'subcat': str(item.fk_subcategory),
'notes': item.notes
}
return JsonResponse(res_dict)
################################################
# Item URLs
################################################
@login_required
def item(request):
# for GET requests, return a full list of StockItems
if request.method == 'GET':
items = StockItem.objects.filter(active=True)
res_dict = {'items': []}
for new_item in items:
res_dict['items'].append({
'id': new_item.id,
'name': new_item.name,
'count': new_item.count,
'date_added': new_item.date_added,
'exp': new_item.date_of_expiration,
'added_by': new_item.added_by,
'cat': str(new_item.fk_category),
'subcat': str(new_item.fk_subcategory),
'notes': new_item.notes
})
return JsonResponse(res_dict)
# for POST request, attempt to create a new StockItem
if request.method == 'POST':
try:
new_item = StockItem(
name=request.POST.get('name'),
count=int(request.POST.get('count')),
date_of_expiration=request.POST.get('exp'),
added_by=str(request.user),
fk_category=Category.objects.get(name=request.POST.get('cat')),
notes=request.POST.get('notes'),
)
# check for optional subcategory
if request.POST.get('subcat'):
new_item.fk_subcategory = SubCategory.objects.get(name=request.POST.get('subcat'))
new_item.save()
return HttpResponse(status=200)
except IntegrityError:
return HttpResponse(status=400)
return HttpResponse(status=400)
@login_required
def item_update(request):
"""
Updates the specified items with the set of values passed in through POST.
"""
if request.method == 'POST':
item_to_update = get_object_or_404(StockItem, pk=request.POST['id'])
item_to_update.name = request.POST['name']
item_to_update.count = int(request.POST['count'])
item_to_update.date_of_expiration = request.POST['exp']
item_to_update.fk_category = Category.objects.get(name=request.POST['cat'])
item_to_update.fk_subcategory = SubCategory.objects.get(name=request.POST['subcat'])
item_to_update.notes = request.POST['notes']
item_to_update.save()
return HttpResponse(status=200)
@login_required
def item_delete(request):
"""
Deactivates the items with the specified ID. Note that this
DOES NOT delete the items from the DB. It is simply a "soft
deactivation" to prevent the items from being listed.
"""
if request.method == 'POST':
item_to_delete = get_object_or_404(StockItem, pk=request.POST['id'])
item_to_delete.active = False
item_to_delete.save()
return HttpResponse(status=200)
#############################################
# Category URLs
#############################################
@login_required
def category(request):
# for GET request, return a list of all categories/sub-categories
if request.method == 'GET':
return JsonResponse({
'cats': [{'id': cat.id, 'name': cat.name} for cat in Category.objects.all()],
'subcats': [{'id': cat.id, 'name': cat.name} for cat in SubCategory.objects.all()]
})
# for POST request, attempt to create a new category
if request.method == 'POST':
try:
Category.objects.create(name=request.POST.get('name'))
return HttpResponse(status=200)
except IntegrityError:
return HttpResponse(status=400)
return HttpResponse(status=400)
@login_required
def category_update(request):
if request.method == 'POST':
cat = get_object_or_404(Category, pk=request.POST.get('id'))
cat.name = request.POST.get('name')
cat.save()
return HttpResponse(status=200)
@login_required
def category_delete(request):
"""
Delets the Category instance with the name specified in POST.
"""
if request.POST:
cat = get_object_or_404(Category, pk=request.POST.get('id'))
cat.delete()
return HttpResponse(status=200)
def weekly_report(request):
"""
Sends a POST request to the server to have it generate and
send a report to the registered email addresses.
"""
if TimeCheck().is_ready():
# get the list of items for the email
# this will include all active items with an expiration date
# that occurs within the next 31 days
exclude_date = dt.now() + datetime.timedelta(days=31)
items = StockItem.objects\
.filter(active=True)\
.exclude(date_of_expiration__gt=exclude_date)\
.order_by('date_of_expiration')
response = send_weekly_report(items)
return HttpResponse(response.content)
else:
return HttpResponse('It is too soon to send another email.')
<file_sep>(function() {
'use strict';
angular.module('dk').service('itemSvc', [
'$http', '$q',
function($http, $q) {
var API_URL_GETPOST = 'items/api/item/';
var API_URL_UPDATE = 'items/api/item/update/';
var API_URL_DELETE = 'items/api/item/delete/';
var vm = this;
var items = [];
/**
* Queries the API for a full list of active items.
*
* @param {bool} forceUpdate - Whether an update should be forced (i.e.
* even if the model has already been filled).
*/
vm.query = function(forceUpdate) {
var deferred = $q.defer();
var force = forceUpdate || false;
if (items.length > 0 && !force) {
deferred.resolve(items);
} else {
$http.get(API_URL_GETPOST)
.then(function(res) {
items = [];
var jsonItems = res.data.items;
for (var i in jsonItems) {
if (jsonItems.hasOwnProperty(i)) {
items.push(jsonItems[i]);
}
}
deferred.resolve(items);
// in case of error response, display error and return to home state
}, function(res) {
alert('There was an error getting the items ' +
'list from the server.\nStatus code: ' + res.status);
});
}
return deferred.promise;
};
/**
* Sends a POST request with the specified item to the server.
* Returns the Promise objects from the query.
*
* @param {Object} item - The new item to create.
* @returns {HttpPromise}
*/
vm.create = function(item) {
return $http.post(API_URL_GETPOST, item);
};
/**
* Sends a POST request with the specified item to the server
* to be updated. Returns the Promise object from the query.
*
* @param {Object} item - The item details to update.
* @returns {HttpPromise}
*/
vm.update = function(item) {
return $http.post(API_URL_UPDATE, item);
};
/**
* Sends the request to the server to delete the specified item.
*
* @param {Object} item - The Item to be deleted.
*/
vm.delete = function(item) {
return $http.post(API_URL_DELETE, {
id: item.id
});
};
}
]);
})();
<file_sep>import requests
from django.conf import settings
from django.http import HttpResponse
from .emails.weekly_report import WeeklyReport
from .utils.timecheck import TimeCheck
def send_weekly_report(items):
api_key = settings.MAILGUN_API_KEY
url = settings.MAILGUN_API_URL
if api_key == '' or url == '':
return HttpResponse('The API key and/or URL is not set.')
else:
email = WeeklyReport(items)
return requests.post(url, auth=('api', api_key), data={
'from': email.from_field,
'to': email.to_field,
'subject': email.subject,
'html': email.content
})
<file_sep>(function() {
'use strict';
angular.module('dk').controller('ItemListCtrl', [
'$stateParams', 'itemListSvc', 'itemSvc',
function($stateParams, itemListSvc, itemSvc) {
// pre-calcuate the number of milliseconds in a dsy
var MS_IN_DAY = 1000 * 60 * 60 * 24;
// the possibilities for sorting the entry list
var ORDER_OPTIONS = [
'name',
'cat',
'subcat',
'count',
'date_added',
'exp'
];
var vm = this;
// check the state params if we need to force a list update
// (i.e. has an items been updated/added/deleted/etc.?)
var forceListUpdate = $stateParams.forceUpdate || false;
// a rounded version of today's date in 'YYYY-MM-DD' format
var nowRounded;
vm.loading = true;
vm.items = null;
// the current sorting option we are using
// default is 'expiration date DESC'
vm.ordering = '-exp';
/**
* Parses the item's expiration date against today's date and
* returns a flat "number of days until expiration" value.
*
* @param {Object} item - The item to test against.
* @returns {Number} - The number of days until the item expires.
*/
function getDaysUntilExpiration(item) {
if (!nowRounded) {
var now = new Date(Date.now());
nowRounded = Date.parse(
now.getFullYear() + '-' +
(now.getMonth() + 1) + '-' +
now.getDate()
);
}
return Math.floor((Date.parse(item.exp) - nowRounded) / MS_IN_DAY) + 1;
}
/**
* Sets the value to use for sorting the item list. If the value
* supplied is the same as the current sort value, the order will
* be reversed.
*
* @param {String} value - The new value to use for sorting.
*/
vm.setOrderBy = function(value) {
if ($.inArray(value, ORDER_OPTIONS) !== -1) {
// if the value is the same as our current value, reverse it
if (vm.ordering === value) {
vm.ordering = '-' + value;
} else {
vm.ordering = value;
}
}
};
/*
Initializes the controller.
*/
(function() {
// load the list of current items
itemSvc.query(forceListUpdate).then(function(res) {
vm.items = res;
// update each of the items' info
for (var i in vm.items) {
var item = vm.items[i];
// store an int value of its expiration based on how
// many days FROM TODAY it expires
item.timeLeft = getDaysUntilExpiration(item);
// set the item's parent TR's class
if (item.timeLeft < 14) {
item.trClass = 'danger';
} else if (item.timeLeft < 31) {
item.trClass = 'warning';
} else {
item.trClass = 'success';
}
}
vm.loading = false;
});
})();
}]);
})();
<file_sep>from django import forms
from .models import StockItem
class ModelFormSub(forms.ModelForm):
def add_attr(self, field, attr, value):
"""Adds an attr to a form field"""
self.fields[field].widget.attrs[attr] = value
def add_attrs(self, field, attrs):
"""Adds an entire set of attrs based on the dict received """
for k, v in attrs.items():
self.add_attr(field, k, v)
class ItemForm(ModelFormSub):
class Meta:
model = StockItem
fields = (
'name', 'count', 'date_of_expiration',
'fk_category', 'fk_subcategory', 'notes'
)
labels = {
'name': 'Item name:',
'count': 'Count:',
'date_of_expiration': 'Expiration (YYYY-MM-DD):',
'fk_category': 'Category:',
'fk_subcategory': 'Sub-category:',
'notes': 'Additional notes (optional):',
}
def __init__(self, *args, **kwargs):
super(ItemForm, self).__init__(*args, **kwargs)
self.add_attrs('name', {'class': 'u-full-width'})
self.add_attrs('count', {'class': 'u-full-width'})
self.add_attrs('date_of_expiration', {'class': 'u-full-width'})
self.add_attrs('fk_category', {'class': 'u-full-width'})
self.add_attrs('fk_subcategory', {'class': 'u-full-width'})
self.add_attrs('notes', {'class': 'u-full-width'})
<file_sep>import datetime
import os
import dj_database_url
from .base import *
SECRET_KEY = os.environ['SECRET_KEY']
MAILGUN_API_KEY = os.environ['MAILGUN_API_KEY']
MAILGUN_API_URL = os.environ['MAILGUN_API_URL']
DEBUG = True
TEMPLATE_DEBUG = True
BUILD = 'staging'
EMAIL_INTERVAL = datetime.timedelta(minutes=1)
DATABASES = {'default': dj_database_url.config()}
<file_sep>from django.core.urlresolvers import reverse
class WeeklyReport:
def __init__(self, items):
self.items = items
self._from_field = 'disaster_kit <<EMAIL>>'
self._to_field = '<EMAIL>'
self._subject = 'Your Weekly disaster_kit Update'
self._content = self.build_content()
@property
def from_field(self):
return self._from_field
@property
def to_field(self):
return self._to_field
@property
def subject(self):
return self._subject
@property
def content(self):
return self._content
def build_content(self):
# style definitions
style_td = 'text-align: left; padding: 2px; padding-right: 35px;'
# the greeting line
title_line = '<h4>Hello, disaster_kit user!</h4>'
# the basic message area, before the main table
message = '''
<p>
This is your weekly update from disaster_kit.
The following items will expire within the next 31 days:
</p>
<br>
'''
# the main table, showing items and expiration
table = '''
<table>
<tr>
<th style="{style_td}">Name</th>
<th style="{style_td}">Count</th>
<th style="{style_td}">Expiration</th>
</tr>
'''.format(style_td=style_td)
# build the body of the table
table_body = ''
for i in self.items:
table_body += '<tr>'
# item name
table_body += '<td style="{}">{}</td>'.format(
style_td, i.name)
# item count
table_body += '<td style="{}">{}</td>'.format(
style_td, i.count)
# item expiration
table_body += '<td style="{}">{}</td>'.format(
style_td, i.date_of_expiration)
table_body += '</tr>'
table_body += '</table><br>'
# the conclusion body
conclusion = '''
<p>
Please take all necessary actions to consume and
replace all of these yummy items!
</p>
<p>
Your friend in the apocalypse,<br>
disaster_kit
</p>
'''
return '''
{title_line}
{message}
{table}
{table_body}
{conclusion}
'''.format(title_line=title_line,
message=message,
table=table,
table_body=table_body,
conclusion=conclusion)
<file_sep>from django.conf.urls import patterns, include, url
from django.contrib import admin
admin.autodiscover()
import items.views
urlpatterns = patterns(
'',
# index URL; main page
url(r'^$', items.views.index, name='index'),
# items app
url(r'^items/', include('items.urls', namespace='items'), name='items'),
# login/logout
url(r'^accounts/login/$', 'django.contrib.auth.views.login'),
url(r'^accounts/logout/$', 'django.contrib.auth.views.logout', {'next_page': '/'}),
# admin section
url(r'^admin/', include(admin.site.urls), name='admin'),
)
<file_sep>describe('Controller: ItemListCtrl', function() {
'use strict';
beforeEach(module('dk'));
var ctrl;
beforeEach(inject(function($controller) {
ctrl = $controller('ItemListCtrl');
})
);
// check loading state
it('should initialize in loading state.', function() {
expect(ctrl.loading).toBe(true);
});
// check default sorting order
it('should order in by expiration date in descending order.', function() {
expect(ctrl.ordering).toBe('-exp');
});
// check the ability to set the sorting order
it('should set the sorting order to the supplied value.', function() {
ctrl.setOrderBy('name');
expect(ctrl.ordering).toBe('name');
});
// check that invalid order values are ignored
it('should not update sorting order for invalid values.', function() {
ctrl.setOrderBy('name');
ctrl.setOrderBy('asdoiqewff');
expect(ctrl.ordering).toBe('name');
});
// check that calling the existing sort order reverses it
it('should reverse the sort order if the same value is called.', function() {
ctrl.setOrderBy('name');
ctrl.setOrderBy('name');
expect(ctrl.ordering).toBe('-name');
ctrl.setOrderBy('name');
expect(ctrl.ordering).toBe('name');
});
});
<file_sep>(function() {
'use strict';
angular.module('dk').controller('ItemUpdateCtrl', [
'$scope', '$state', '$stateParams',
'itemListSvc', 'categorySvc', 'itemSvc',
function($scope, $state, $stateParams,
itemListSvc, categorySvc, itemSvc) {
var vm = this;
vm.loading = true;
// the items whose details we are viewing
vm.item = {};
// the list of categories from the server
vm.cats = [];
// the list of sub-categories from the server
vm.subcats = [];
/**
* Checks if all necessary values have been loaded, and sets the
* 'loading' flag to false once they have.
*/
function updateLoadingStatus() {
if (vm.item.id &&
vm.cats.length > 0 &&
vm.subcats.length > 0) {
vm.loading = false;
}
}
/**
* Performs any necessary initializtion for this controller.
*/
vm.load = function() {
// get the details for the current items
itemListSvc.getItemById($stateParams.id)
.then(function(res) {
vm.item = res;
updateLoadingStatus();
});
// get the list of categories and sub-categories for the <select>s
categorySvc.query()
.then(function(res) {
vm.cats = res.cats;
vm.subcats = res.subcats;
updateLoadingStatus();
});
};
/**
* Sends the current changes to the items back to the server.
*/
vm.saveEdits = function() {
// if we are all valid, submit the request to the server
$scope.submitted = false;
// submit as normal if the form is validated
if (vm.canSaveEdits()) {
itemSvc.update(vm.item)
.then(function(res) {
$state.go('dk.item_list', {forceUpdate: true});
}, function(res) {
alert('There was an error when attempting to ' +
'update the item.\nStatus code: ' + res.status);
$state.go('dk.item_list');
});
// otherwise, show form errors erorrs
} else {
$scope.updateForm.submitted = true;
}
};
/**
* Returns whether the current state of edits meets the requirements
* to be saved.
*
* @returns {Boolean} - Whether we can save the current edits.
*/
vm.canSaveEdits = function() {
// TODO: check that any values have actually changed before submitting this
return $scope.updateForm.$valid;
};
// init
(function() {
vm.load();
})();
}]);
})();
<file_sep># DisasterKit
A small app to help us manage emergency supplies. Any well-prepared household should have enough food, water, and supplies to last a few days in the case of a major emergency, but the downside of this is that it gives you a lot of expiration dates to keep track of, so you can replace said food when necessary.
I built this app to help my wife and me keep track of all of our supplies and send us weekly email reminders with a list of what needs to be consumed and replaced.
The was the first Django app that I actually pushed into production, and it worked well, but I have certainly come a long way since this time and at this point, it is mostly just here for archiving purposes.
Built with Django 1.8 and AngularJS 1.4, and deployed to Heroku. The biggest issue was that I built the entire stack as a single project, so even minor changes to the front end code required a full redeployment, which became a bit of a pain to manage. The project structure is also a little awkward to navigate, since all of the front end Angular code is nested within the Django app. Lesson learned: multi-tier deployment FTW.
<file_sep>(function() {
'use strict';
angular.module('dk').controller('CategoryListCtrl', [
'$stateParams', 'categorySvc',
function($stateParams, categorySvc) {
var vm = this;
vm.loading = true;
// list of all categories
vm.cats = [];
// list of all sub-categories
vm.subcats = [];
// the category object to use for tracking/submitting edits
vm.edit = {
id: -1,
name: ''
};
vm.editOriginalName = '';
// the model for the new category name
vm.newCategory = '';
// collection of error objects
vm.errors = {
duplicate: false
};
/**
* Queries the server for the current list of categories/sub-categories.
*/
function loadCategories(force) {
vm.loading = true;
categorySvc.query(force)
.then(function(res) {
vm.cats = res.cats;
vm.subcats = res.subcats;
vm.loading = false;
});
}
/**
* Checks if the current value of the new category name
* is a duplicate of an existing one.
*/
vm.newCatKeyUp = function() {
vm.errors.duplicate = false;
_.each(vm.cats, function(element) {
if (element.name === vm.newCategory) {
return vm.errors.duplicate = true;
}
});
};
/*========================================
* Category Creation Methods
*========================================*/
/**
* Clears the current value of the new category model and
* resets error messages.
*/
vm.clearCategoryInput = function() {
vm.newCategory = '';
vm.errors.duplicate = false;
};
/**
* Sends the specified new category to the server.
*/
vm.saveNewCategory = function() {
if (vm.canSaveNewCategory()) {
categorySvc.create({
name: vm.newCategory
})
.then(function(res) {
vm.clearCategoryInput();
loadCategories(true);
});
}
};
/**
* Returns whether the new category can currently be saved as-is.
* Requires it to not be blank and not be a duplicate.
*/
vm.canSaveNewCategory = function() {
return vm.newCategory !== '' && !vm.errors.duplicate;
};
/*========================================
* Category Editing Methods
*========================================*/
/**
* Enables the category with the specified ID to be editied.
*
* @param {Number} catID - The ID for category to begin editing.
*/
vm.enableEditing = function(catID) {
// set the default value to -1; if we receive an invalid ID,
// it will stay at -1, and no category will be enabled for editing
vm.edit.id = -1;
// find the category with the specified ID and enabled it for editing
// save the original value so we can compare for changes before saving
_.each(vm.cats, function(element) {
if (element.id === catID) {
vm.edit.name = element.name;
vm.editOriginalName = vm.edit.name;
return vm.edit.id = catID;
}
});
};
/**
* Saves the current edits on the active category.
*/
vm.saveEdits = function() {
if (vm.canSaveEdits()) {
categorySvc.update(vm.edit)
.then(function(res) {
vm.cancelEditing();
loadCategories(true);
});
}
};
/**
* Cancels the category editing process and resets all necessary values
*/
vm.cancelEditing = function() {
vm.edit.id = -1;
};
/**
* Returns whether the specified ID is the one currently set for editing.
*
* @param {Number} catID - The ID to check.
* @returns {Boolean} - Whether the specified ID is the one being edited.
*/
vm.isEditing = function(catID) {
return vm.edit.id !== -1 && catID === vm.edit.id;
};
/**
* Returns whether the current state of edits meets the requirements
* to be saved.
*
* @returns {Boolean} - Whether we can save the current edits.
*/
vm.canSaveEdits = function() {
return vm.edit.name !== '' &&
vm.edit.name !== vm.editOriginalName;
};
/*========================================
* Category Deletion Methods
*========================================*/
/**
* Sends the request to the server to delete the specified category.
*/
vm.deleteCategory = function(category) {
if (confirm('Delete category "' + category.name + '"?')) {
categorySvc.delete(category)
.then(function(res) {
loadCategories(true);
}, function(res) {
alert('The category could not be deleted.' +
'\nStatus code: ' + res.status);
});
}
};
/*========================================
* Initialization
*========================================*/
(function() {
loadCategories(false);
})();
}
]);
})();
<file_sep>(function() {
'use strict';
angular.module('dk').directive('itemEntryForm', [
function() {
return {
restrict: 'A',
scope: {
ctrl: '=',
form: '='
},
templateUrl: '/static/app/items/form/item-form.html'
};
}]);
})();
<file_sep>__author__ = 'gkhargra'
<file_sep>from django.contrib import admin
from .models import *
admin.site.register(StockItem)
admin.site.register(Category)
admin.site.register(SubCategory)
<file_sep>from django.test import TestCase
class CategoryModelTests(TestCase):
pass
class SubCategoryModelTests(TestCase):
pass
class StockItemModelTests(TestCase):
pass
<file_sep>(function() {
'use strict';
angular.module('dk', [
'ngMessages',
'ui.router'
])
.config([
'$interpolateProvider', '$httpProvider',
'$stateProvider', '$urlRouterProvider',
function($interpolateProvider, $httpProvider,
$stateProvider, $urlRouterProvider) {
/* set up custom interpolation handlebars,
* so that NG can work together with Django templates */
$interpolateProvider.startSymbol('{A');
$interpolateProvider.endSymbol('A}');
/*
* routing set up
**********************************************/
$stateProvider
.state('dk', {
url: '',
abstract: true
})
// a state showing full items list
.state('dk.item_list', {
url: '/items/:forceUpdate',
views: {
'item_list@': {
controller: 'ItemListCtrl as itemListCtrl',
templateUrl: '/static/app/items/list/item-list.html'
}
}
})
// a state to show details of an individual items
.state('dk.item_detail', {
url: '/items/detail/:id',
views: {
'item_detail@': {
controller: 'ItemDetailCtrl as itemDetailCtrl',
templateUrl: '/static/app/items/detail/item-detail.html'
}
}
})
// a state to create a new items
.state('dk.item_create', {
url: '/items/add/',
views: {
'item_create@': {
controller: 'ItemCreateCtrl as itemCreateCtrl',
templateUrl: '/static/app/items/create/item-create.html'
}
}
})
// a state to show details of an individual items
.state('dk.item_update', {
url: '/items/update/:id',
views: {
'item_update@': {
controller: 'ItemUpdateCtrl as itemUpdateCtrl',
templateUrl: '/static/app/items/update/item-update.html'
}
}
})
// a list display all current categories
.state('dk.category_list', {
url: '/categories/',
views: {
'category_list@': {
controller: 'CategoryListCtrl as catCtrl',
templateUrl: '/static/app/categories/list/category-list.html'
}
}
});
$urlRouterProvider.otherwise('/items/');
/*
* boiler-plate for getting NG to work properly with
* Django's security requirements
***********************************************************/
// get a CSRF token to make Django happy!
$httpProvider.defaults.xsrfCookieName = 'csrftoken';
$httpProvider.defaults.xsrfHeaderName = 'X-CSRFToken';
// Use x-www-form-urlencoded Content-Type
$httpProvider.defaults.headers.post['Content-Type'] =
'application/x-www-form-urlencoded;charset=utf-8';
// The workhorse; converts an object to x-www-form-urlencoded serialization.
var param = function(obj) {
var query = '';
var name;
var value;
var fullSubName;
var subName;
var subValue;
var innerObj;
var i;
for (name in obj) {
value = obj[name];
if (value instanceof Array) {
for (i = 0; i < value.length; ++i) {
subValue = value[i];
fullSubName = name + '[' + i + ']';
innerObj = {};
innerObj[fullSubName] = subValue;
query += param(innerObj) + '&';
}
} else if (value instanceof Object) {
for (subName in value) {
subValue = value[subName];
fullSubName = name + '[' + subName + ']';
innerObj = {};
innerObj[fullSubName] = subValue;
query += param(innerObj) + '&';
}
} else if (value !== undefined && value !== null) {
query += encodeURIComponent(name) + '=' +
encodeURIComponent(value) + '&';
}
}
return query.length ?
query.substr(0, query.length - 1) :
query;
};
// Override $http service's default transformRequest
$httpProvider.defaults.transformRequest = [function(data) {
return angular.isObject(data) && String(data) !== '[object File]' ?
param(data) :
data;
}];
}
]);
})();
<file_sep>import datetime
import os
import dj_database_url
from .base import *
# for dev builds, read the secret key from file
with open('etc/secret_key.txt') as f:
SECRET_KEY = f.read().strip()
with open('etc/mailgun_key.txt') as f:
MAILGUN_API_KEY = f.read().strip()
with open('etc/mailgun_url.txt') as f:
MAILGUN_API_URL = f.read().strip()
DEBUG = True
TEMPLATE_DEBUG = True
BUILD = 'dev'
EMAIL_INTERVAL = datetime.timedelta(seconds=5)
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql_psycopg2',
'NAME': 'dkit_local',
'USER': '',
'PASSWORD': '',
'HOST': 'localhost',
'PORT': '5432'
}
}
<file_sep>import datetime
from django.conf import settings
dt = datetime.datetime
# the name of the file to read/write last submission
FILE_NAME = 'last.txt'
class TimeCheck:
def __init__(self):
self.now = dt.now()
self.last = self.now
self.ready = False
def is_ready(self):
"""
Checks if the current time is further from the last check
than the specified interval.
:return True if enough time has passed; otherwise False.
"""
try:
with open(FILE_NAME) as f:
time_str = '%Y-%m-%d %H:%M:%S.%f'
self.last = dt.strptime(f.read().strip(), time_str)
# if no file is found, set a time way in the past to trigger the email
except FileNotFoundError:
self.last = dt.strptime('2000-01-01', '%Y-%m-%d')
# update the file with the new current time
# and return whether the elapsed time is large enough
with open(FILE_NAME, 'w') as f:
f.write(str(self.now))
return (self.now - self.last) > settings.EMAIL_INTERVAL
if __name__ == '__main__':
print(TimeCheck().is_ready())
<file_sep>(function() {
'use strict';
angular.module('dk').service('itemListSvc', [
'$http', '$q', '$state',
function($http, $q, $state) {
var vm = this;
var items = [];
/**
* Returns an invidual items instance matching the specified ID.
*
* @param {int} targetID - The ID of the items to find.
*/
vm.getItemById = function(targetID) {
var deferred = $q.defer();
$http.get('items/api/get_item_by_id/' + targetID)
.then(function(res) {
deferred.resolve(res.data);
// in case of error response, display error and return to list state
}, function(res) {
// for 404s, just redirect.
// for other errors, show the error number before redirecting
if (res.status != '404') {
alert('There was an error getting the items\'s ' +
'details from the server.\nStatus code: ' + res.status);
}
$state.go('dk.item_list');
});
return deferred.promise;
};
}]);
})();
<file_sep>module.exports = function(grunt) {
grunt.initConfig({
config: {
title: 'disaster_kit',
date: function() {
var d = new Date();
return d.getFullYear() + '/' + (d.getMonth() + 1) + '/' + d.getDate();
}
},
sass: {
dist: {
files: {
'items/static/css/styles.css': 'items/static/css/styles.scss'
}
}
},
/* uglify
********************************************/
uglify: {
main: {
options: {
mangle: false,
banner: '/* <%= config.title %> | built on <%= config.date() %> */'
},
files: [{
'items/static/app/app.min.js': [
'items/static/app/app.js',
'items/static/app/main-controller.js',
'items/static/app/categories/**/*.js',
'items/static/app/items/**/*.js'
]
}]
}
}
});
grunt.loadNpmTasks('grunt-contrib-sass');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.registerTask('build', ['sass', 'uglify']);
};
<file_sep>from django.conf.urls import url
from . import views
urlpatterns = [
# URL to fetch details for a single items, as specified by ID
# /items/api/get_item_by_id/<pk>
url(r'^api/get_item_by_id/(?P<pk>\d+)/?$',
views.get_item_by_id, name='get_item_by_id'),
#############################################
# Item URLs
#############################################
# URL to GET or POST items
# /items/api/item/
# GET request returns a full list of StockItems
# POST request will attempt to create a new StockItem
url(r'^api/item/?$',
views.item, name='item'),
# URL to update a item via POST submission
# items/api/item/update/
url(r'^api/item/update/?$',
views.item_update, name='item_update'),
# URL to delete a item via POST submission
# items/api/item/delete/
url(r'^api/item/delete/?$',
views.item_delete, name='item_delete'),
#############################################
# Category URLs
#############################################
# URL to GET or POST categories
# /items/api/category/
# GET request returns a full list of cats/sub-cats
# POST request will attempt to create a new category
url(r'^api/category/?$',
views.category, name='category'),
# URL to update a category via POST submission
# items/api/category/update/
url(r'^api/category/update/?$',
views.category_update, name='category_update'),
# URL to delete a category via POST submission
# items/api/category/delete/
url(r'^api/category/delete/?$',
views.category_delete, name='category_delete'),
#############################################
# Various API URLs
#############################################
# URL to send a report via email
# items/api/email/weekly_report
url(r'^api/email/weekly_report/?$',
views.weekly_report, name='weekly_report')
]
<file_sep>(function() {
'use strict';
angular.module('dk').directive('itemWidget', [
function() {
return {
restrict: 'A',
scope: {
itemData: '='
},
templateUrl: '/static/app/items/row/item-row.html'
};
}]);
})();
<file_sep>(function() {
'use strict';
angular.module('dk').controller('MainCtrl', [
'$http',
function($http) {
var vm = this;
vm.sendWeeklyReport = function() {
$http.get('/items/api/email/weekly_report');
};
}
]);
})();
<file_sep>from django.core.urlresolvers import reverse
from django.db import models
class Category(models.Model):
name = models.CharField(max_length=64, blank=False, unique=True)
order = models.IntegerField(default=1)
class Meta:
ordering = ['order', 'name']
def __str__(self):
return self.name
class SubCategory(models.Model):
name = models.CharField(max_length=64, blank=False, unique=True)
order = models.IntegerField(default=1)
class Meta:
ordering = ['order', 'name']
def __str__(self):
return self.name
class StockItem(models.Model):
name = models.CharField(max_length=128, blank=False)
count = models.IntegerField(blank=False)
date_added = models.DateField(auto_now_add=True)
date_of_expiration = models.DateField(blank=False)
added_by = models.CharField(max_length=64)
fk_category = models.ForeignKey(Category, blank=False)
fk_subcategory = models.ForeignKey(SubCategory, blank=True, null=True)
notes = models.TextField(blank=True)
# whether this instance should show up in the list
# we will use this to hide it as a form of "soft delete"
active = models.BooleanField(blank=True, default=True)
def __str__(self):
return self.name
<file_sep>describe('Controller: CategoryListCtrl', function() {
'use strict';
beforeEach(module('dk'));
var ctrl;
beforeEach(inject(function($controller) {
ctrl = $controller('CategoryListCtrl');
})
);
// check loading state
it('should have default values at start.', function() {
expect(ctrl.loading).toBe(true);
expect(ctrl.cats.length).toBe(0);
expect(ctrl.subcats.length).toBe(0);
});
// check resetting values
it('should reset the value of the new category name.', function() {
ctrl.errors.duplicate = true;
ctrl.newCategory = 'NewCategory';
ctrl.clearCategoryInput();
expect(ctrl.errors.duplicate).toBeFalsy();
expect(ctrl.newCategory).toBe('');
});
// check that we are correctly detecting duplicates
it('should detect existing value from new category input.', function() {
ctrl.cats = [{id: 0, name: 'Food'}];
ctrl.errors.duplicate = false;
ctrl.newCategory = 'Food';
ctrl.newCatKeyUp();
expect(ctrl.errors.duplicate).toBeTruthy();
});
it('should enable editing for the specified ID.', function() {
ctrl.cats = [{id: 0, name: 'Food'}];
ctrl.enableEditing(0);
expect(ctrl.edit.id).toEqual(0);
expect(ctrl.edit.name).toEqual(ctrl.cats[0].name);
});
it('should reset to default value for invalid editing ID.', function() {
ctrl.cats = [{id: 0, name: 'Food'}];
ctrl.enableEditing(0);
ctrl.enableEditing(-100);
expect(ctrl.edit.id).toEqual(-1);
});
it('should indicate if the ID is enabled for editing.', function() {
ctrl.cats = [{id: 0, name: 'Food'}];
ctrl.enableEditing(0);
expect(ctrl.isEditing(0)).toBeTruthy();
});
it('should reset the value when editing is cancelled.', function() {
ctrl.cats = [{id: 0, name: 'Food'}];
ctrl.enableEditing(0);
ctrl.cancelEditing();
expect(ctrl.edit.id).toBe(-1);
});
});
<file_sep>(function() {
'use strict';
angular.module('dk').service('categorySvc', [
'$http', '$q', '$state',
function($http, $q, $state) {
var API_URL_GETPOST = 'items/api/category/';
var API_URL_UPDATE = 'items/api/category/update';
var API_URL_DELETE = 'items/api/category/delete/';
var vm = this;
var combined = {};
/**
* Queries the API for a full list of categories and subcategories.
*/
vm.query = function(forceUpdate) {
var force = forceUpdate || false;
var deferred = $q.defer();
if (combined.cats && combined.subcats && !force) {
deferred.resolve(combined);
} else {
$http.get(API_URL_GETPOST)
.then(function(res) {
combined = {
cats: res.data.cats,
subcats: res.data.subcats
};
deferred.resolve(combined);
// in case of error response, display error and return to home state
}, function(res) {
alert('There was an error getting the categories ' +
'list from the server.\nStatus code: ' + res.status);
$state.go('dk.home');
});
}
return deferred.promise;
};
/**
* Sends a POST request with the specified category to the server.
* Returns the Promise objects from the query.
*
* @param {Object} category - The new category to create.
* @returns {HttpPromise}
*/
vm.create = function(category) {
return $http.post(API_URL_GETPOST, category);
};
/**
* Sends a POST request with the specified category to the server
* to be updated. Returns the Promise object from the query.
*
* @param {Object} category - The category details to update.
* @returns {HttpPromise}
*/
vm.update = function(category) {
return $http.post(API_URL_UPDATE, category);
};
/**
* Sends the request to the server to delete the specified category.
*
* @param {Object} category - The Category to be deleted.
*/
vm.delete = function(category) {
return $http.post(API_URL_DELETE, {id: category.id});
};
}]);
})();
<file_sep># -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import models, migrations
class Migration(migrations.Migration):
dependencies = [
]
operations = [
migrations.CreateModel(
name='Category',
fields=[
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('name', models.CharField(max_length=64)),
],
),
migrations.CreateModel(
name='StockItem',
fields=[
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('name', models.CharField(max_length=128)),
('count', models.IntegerField()),
('date_added', models.DateField(auto_now_add=True)),
('date_of_expiration', models.DateField()),
('added_by', models.CharField(max_length=64)),
('notes', models.TextField(blank=True, default='')),
('fk_category', models.ForeignKey(to='items.Category')),
],
),
migrations.CreateModel(
name='SubCategory',
fields=[
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('name', models.CharField(max_length=64)),
],
),
migrations.AddField(
model_name='stockitem',
name='fk_subcategory',
field=models.ForeignKey(blank=True, to='items.SubCategory', null=True),
),
]
<file_sep>(function() {
'use strict';
angular.module('dk').controller('ItemCreateCtrl', [
'$scope', '$state', 'categorySvc', 'itemSvc',
function($scope, $state, categorySvc, itemSvc) {
var vm = this;
vm.loading = true;
// the items being created
vm.item = {};
// the list of categories from the server
vm.cats = [];
// the list of sub-categories from the server
vm.subcats = [];
/**
* Performs any necessary initializtion for this controller.
*/
vm.load = function() {
// get the list of categories and sub-categories for the <select>s
categorySvc.query()
.then(function(res) {
vm.cats = res.cats;
vm.subcats = res.subcats;
// set default selections
vm.item.cat = vm.cats[0].name;
vm.item.subcat = vm.subcats[0].name;
vm.loading = false;
});
};
/**
* Sends the new item data to the server to be saved.
*/
vm.saveNewItem = function() {
$scope.submitted = false;
// submit as normal if the form is validated
if (vm.canSaveNewItem()) {
// make sure we do not pass a null 'notes' field
vm.item.notes = vm.item.notes || '';
itemSvc.create(vm.item)
.then(function(res) {
$state.go('dk.item_list', {forceUpdate: true});
}, function(res) {
alert('The new item could not be created.' +
'\nStatus code: ' + res.status);
$state.go('dk.item_list', {forceUpdate: true});
});
// otherwise, show form errors erorrs
} else {
$scope.createForm.submitted = true;
}
};
/**
* Returns whether the new Item is valid and can be saved.
*
* @returns {Boolean} - Whether we can save the current Item info.
*/
vm.canSaveNewItem = function() {
return $scope.createForm.$valid;
};
// init
(function() {
vm.load();
})();
}]);
})();
| f8b176d7aaa552dba5eb653b7ed70814dddca366 | [
"JavaScript",
"Python",
"Markdown"
] | 30 | Python | gargrave/DisasterKit | 3034fbbe49aba4450da2cc41e90817c8ee8a604f | e3f48b8824d5d38989caf35871fef371a64b4b82 |
refs/heads/master | <file_sep>#!/bin/bash
ROOTDIR=/home/scope
CLINC=-I/opt/intel/opencl-sdk/include/
CLLIB="-L/opt/intel/opencl-sdk/lib64/ -lOpenCL"
CLPRELOAD="LD_PRELOAD=/opt/intel/opencl-sdk/lib64/libOpenCL.so"
if [ $1"y" == "1y" ]; then
cd $ROOTDIR/good_matvec
gcc matvec.c $CLINC $CLLIB 2> /dev/null
$CLPRELOAD ./a.out
elif [ $1"y" == "2y" ]; then
cd $ROOTDIR/good_matvec
../socket/client 192.168.0.102 $2
elif [ $1"y" == "3y" ]; then
cd $ROOTDIR/bad_matvec
../socket/client 192.168.0.102 $2
elif [ $1"y" == "4y" ]; then
diff $ROOTFIR/good_matvec/matvec.c $ROOTDIR/bad_matvec/matvec.c
fi
| 86154e623d17e8963bdc9b84e7810a4f4e81ec02 | [
"Shell"
] | 1 | Shell | NonerKao/HH | a290d527a4cc2192ff80ec8326ec6f9cc45bda09 | ca48aa2c5080bbe4b8476bf6e5ae8f50c6c9443e |
refs/heads/master | <repo_name>af1ne/db-front<file_sep>/src/pages/404.js
import React from "react";
import { GlobalContainer, GreenContainer } from '../components/StyledComponents';
import Layout from "../components/layout";
import GreenTitle from '../components/GreenTitle';
import Identity from '../components/Identity';
import isMobile from '../services/isMobile';
import Portrait from '../components/Portrait';
import SEO from "../components/seo";
const NotFoundPage = () => (
<Layout>
<SEO title="404: Not found" />
<GlobalContainer>
<GreenContainer>
{isMobile()
? ""
: (
<Identity />
)
}
<GreenTitle
firstLine="404"
secondLine="Perdu !?"
/>
</GreenContainer>
<Portrait/>
</GlobalContainer>
</Layout>
);
export default NotFoundPage;
<file_sep>/src/components/MenuList.js
import React from 'react';
import { Link } from "gatsby";
import styled from 'styled-components';
import { bool } from 'prop-types';
import { colors, fontSizes, mobileThresholdPixels } from './StyledComponents';
export const StyledMenu = styled.nav`
display: flex;
flex-direction: column;
justify-content: flex-start;
background: ${colors.transparent};
height: 35vh;
text-align: right;
padding: 1.5rem;
position: absolute;
top: 0;
right: 0;
transition: transform 0.3s ease-in-out;
transform: ${({ open }) => open ? 'translateX(0)' : 'translateX(100%)'};
z-index: 90;
@media (max-width: ${mobileThresholdPixels}) {
width: 100%;
height: 100vh;
background: black;
}
& ul {
font-family: 'Overlock';
font-size: ${fontSizes.xs};
padding: 1rem 0;
margin-right: -0.5rem;
margin-top: 7vh;
font-weight: bold;
letter-spacing: 0.5rem;
text-decoration: none;
list-style-type: none;
}
li {
@media (max-width: ${mobileThresholdPixels}) {
margin-bottom: 6vh;
}
}
`;
const StyledLink = styled(Link)`
text-decoration: none;
color: ${colors.green};
transition: color 0.2s linear;
&:hover {
color: ${colors.purple};
}
`;
const MenuList = ({ open }) => {
return (
<StyledMenu open={open}>
<ul>
<li><StyledLink to="/" >Home</StyledLink></li>
<li><StyledLink to="/portfolio/" >Portfolio</StyledLink></li>
<li><StyledLink to="/curriculum-vitae/" >Curriculum vitae</StyledLink></li>
<li><StyledLink to="/a-propos/" >A propos</StyledLink></li>
<li><StyledLink to="/contact/" >Contact</StyledLink></li>
</ul>
</StyledMenu>
)
};
MenuList.propTypes = {
open: bool.isRequired,
}
export default MenuList;<file_sep>/src/components/GreenTitle.js
import React from "react";
import PropTypes from 'prop-types';
import { Title2 } from './StyledComponents';
const GreenTitle = ({ firstLine, secondLine }) => (
<div>
<Title2>
{firstLine} <br/>
{secondLine === null ? "" : secondLine}
</Title2>
</div>
);
GreenTitle.propTypes = {
firstLine: PropTypes.string.isRequired,
secondLine: PropTypes.string,
};
GreenTitle.defaultProps = {
secondLine: "",
};
export default GreenTitle;
<file_sep>/src/components/Textarea.js
import React from 'react';
import PropTypes from 'prop-types';
import styled from 'styled-components';
import { InputContainer } from './Input';
const TextareaContainer = styled(InputContainer)`
&.merlin-input {
.input {
height: 20vh;
}
}
`;
const Textarea = ({
id,
label,
type,
value,
onChange,
}) => (
<TextareaContainer className="merlin-input">
<textarea
label={label}
id={id}
type={type}
onChange={onChange}
value={value}
className={value ? 'input has-content' : 'input'}
/>
<label
htmlFor={id}
className="label"
>
{label}
</label>
</TextareaContainer>
);
Textarea.propTypes = {
id: PropTypes.string,
label: PropTypes.string,
type: PropTypes.string,
value: PropTypes.string,
onChange: PropTypes.func,
};
Textarea.defaultProps = {
id: '',
label: '',
type: '',
value: '',
onChange() { },
};
export default Textarea;
<file_sep>/src/components/Input.js
import React from 'react';
import PropTypes from 'prop-types';
import styled from 'styled-components';
import { colors, mobileThresholdPixels } from './StyledComponents';
export const InputContainer = styled.div`
&.merlin-input {
width: 25vw;
position: relative;
display: flex;
justify-content: center;
align-items: left;
margin: 1.4vh;
background-color: none;
@media (max-width: ${mobileThresholdPixels}) {
width: 65vw;
}
.input,
.label {
transition: all 0.16s ease-out;
font-family: sans-serif;
font-weight: 300;
font-size: 1em;
background-color: ${colors.whiteTransparency};
}
.input {
width: 100%;
border: 1px #ddd solid;
border-radius: 0.2em;
padding-top: 0.1em;
padding-left: 0.62em;
height: 3.7vh;
}
.label {
pointer-events: none;
position: absolute;
color: ${colors.white};
left: 0;
transform: translate(0.8em, 0.4em);
transform-origin: left;
background-color: inherit;
}
.input.has-content + .label {
color: ${colors.white};
margin-top: -1.4vw;
}
.input.has-content,
.input:focus {
& + label {
transform: translate(0.7em, 0.3em) scale(0.80);
}
}
.input:focus {
border-color: ${colors.green};
outline: none;
& + .label {
color: ${colors.white};
}
}
}
`;
const Input = ({
id,
label,
type,
value,
onChange,
}) => (
<InputContainer className="merlin-input">
<input
label={label}
id={id}
type={type}
onChange={onChange}
value={value}
className={value ? 'input has-content' : 'input'}
/>
<label
className="label"
htmlFor={id}
>
{label}
</label>
</InputContainer>
);
Input.propTypes = {
id: PropTypes.string,
label: PropTypes.string,
type: PropTypes.string,
value: PropTypes.string,
onChange: PropTypes.func,
};
Input.defaultProps = {
id: '',
label: '',
type: '',
value: '',
onChange() {},
};
export default Input;
<file_sep>/src/components/Identity.js
import React from "react";
import PropTypes from 'prop-types';
import { Title1 } from './StyledComponents';
import styled from 'styled-components';
import { mobileThresholdPixels } from '../components/StyledComponents';
const IdentityContener = styled.div`
@media (max-width: ${mobileThresholdPixels}) {
padding-top: 60vh;
padding-right: 15vw;
padding-left: 35vw;
}
`;
const Identity = ({ contact }) => (
<IdentityContener>
<Title1>
<NAME> <br/>
{contact ? "06.13.32.50.60" : ""}
{contact ? <br/> : ""}
{contact ? "<EMAIL>" : ""}
{contact ? <br/> : ""}
Développeuse Javascript React / Node.Js
</Title1>
</IdentityContener>
);
Identity.propTypes = {
contact: PropTypes.bool,
};
Identity.defaultProps = {
contact: false,
};
export default Identity;
<file_sep>/src/components/ContactForm.js
import React, { Component } from 'react';
import styled from 'styled-components';
import { mobileThresholdPixels } from './StyledComponents';
import Button from './Button';
import Input from './Input';
import Textarea from './Textarea';
const Form = styled.form`
display: flex;
flex-direction: column;
width: 25vw;
margin: auto;
align-items: center;
padding-bottom: 3vh;
@media (max-width: ${mobileThresholdPixels}) {
width: 85vw;
}
`;
export default class ContactForm extends Component {
state = {
name: "",
mail: "",
phone: "",
message: "",
}
setInput = (event) => {
this.setState({ [event.target.id]: event.target.value });
};
submitForm = (event) => {
event.preventDefault();
// console.log("envoyer le form");
}
render() {
const { name, mail, phone, message } = this.state;
return (
<Form onSubmit={this.submitForm}>
<Input
label="Nom *"
type="text"
id="name"
value={name}
onChange={this.setInput}
required
/>
<Input
label="Mail *"
type="mail"
id="mail"
value={mail}
onChange={this.setInput}
required
/>
<Input
label="Téléphone"
type="text"
id="phone"
value={phone}
onChange={this.setInput}
/>
<Textarea
label="Message *"
type="text"
id="message"
value={message}
onChange={this.setInput}
required
/>
<Button type="submit" label="Envoyer" />
</Form>
);
}
}
<file_sep>/src/components/Button.js
import React from 'react';
import PropTypes from 'prop-types';
import styled from 'styled-components';
import { colors, mobileThresholdPixels, fontSizes } from './StyledComponents';
const ButtonContainer = styled.div`
width: 40%;
background: ${colors.green};
border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
-webkit-appearance: none;
color: white;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
font-size: ${fontSizes.xs};
font-family: sans-serif;
font-weight: 700;
height: 45px;
margin: 10px auto 0;
opacity: 0.8;
`;
const Button = ({
label,
type,
}) => (
<ButtonContainer type={type}>
{label}
</ButtonContainer>
);
Button.propTypes = {
label: PropTypes.string.isRequired,
type: PropTypes.string.isRequired,
};
export default Button;
<file_sep>/src/services/isMobile.js
import { mobileThreshold } from '../components/StyledComponents';
export default function isMobile() {
return typeof window !== 'undefined' ? window.innerWidth < mobileThreshold : true;
}<file_sep>/src/components/Tooltip.js
import React from 'react';
import PropTypes from 'prop-types';
import Img from 'gatsby-image';
import styled from 'styled-components';
import { colors, mobileThresholdPixels, fontSizes } from './StyledComponents';
const TooltipContainer = styled.div`
position: relative;
display: inline-block;
margin-top: 10px;
border-bottom: 10px dotted ${colors.greenTransparency};
& span {
visibility: hidden;
width: 120px;
background-color: ${colors.green};
color: ${colors.white};
text-align: center;
border-radius: 3px;
padding: 5px;
position: absolute;
z-index: 20;
top: 200%;
left: 50%;
margin-left: -60px;
opacity: 0;
transition: opacity 0.3s;
}
& span:after {
content: "";
position: absolute;
bottom: 100%;
left: 50%;
margin-left: -5px;
border-width: 5px;
border-style: solid;
border-color: ${colors.green} transparent transparent transparent;
}
&:hover span {
visibility: visible;
opacity: 1;
}
`;
const Span = styled.span`
fontSizes: 10px;
`;
const Tooltip = ({
text
}) => (
<TooltipContainer>
<Span>{text}</Span>
</TooltipContainer>
);
Tooltip.propTypes = {
text: PropTypes.string.isRequired,
};
export default Tooltip;
<file_sep>/src/components/ProjectCardDetails.js
import React from "react";
import Img from 'gatsby-image';
import PropTypes from 'prop-types';
import styled from 'styled-components';
import { colors, mobileThresholdPixels, fontSizes, Title2, A } from './StyledComponents';
const CardContainer = styled.div`
width: 35vw;
height: 35vh;
margin-left: 10vw;
padding-right: 1vw;
align-item: right;
@media (max-width: ${mobileThresholdPixels}) {
width: 80vw;
height: 30vh;
}
`;
const TitleProject = styled(Title2)`
font-size: ${fontSizes.m};
@media (max-width: ${mobileThresholdPixels}) {
font-size: ${fontSizes.s};
}
`;
const UrlProject = styled(Title2)`
font-size: ${fontSizes.xs};
@media (max-width: ${mobileThresholdPixels}) {
font-size: ${fontSizes.xs};
}
`;
const DescriptionProject = styled.p`
font-family: 'Overlock';
color: ${colors.white};
font-size: ${fontSizes.s};
text-align: right;
@media (max-width: ${mobileThresholdPixels}) {
font-size: ${fontSizes.xs};
}
`;
const TechnoContainer = styled.div`
display: flex;
flex-direction: raw;
justify-content: flex-end;
`;
const Techno = styled.div`
display: flex;
flex-direction: column;
justify-content: center;
margin-left: 1vw;
filter: grayscale(100%);
transform: scale(1);
transition: .3s ease-in-out;
&:hover {
filter: grayscale(0);
transform: scale(1.2);
}
`;
const ProjectCardDetails = ({ title, url, description, technos, date }) => (
<CardContainer>
<TitleProject>{title}<br/>{date}</TitleProject>
<UrlProject>
<A
href={url}
target="_blank"
rel="noreferrer noopener"
>
{url}
</A>
</UrlProject>
<DescriptionProject>{description}</DescriptionProject>
<TechnoContainer>
{technos.map(techno => (
<Techno key={techno.id}>
<Img
key={techno.id}
fixed={techno.logo.childImageSharp.fixed}
title={techno.name}
alt={`logo ${techno.name}`}
/>
</Techno>
))}
</TechnoContainer>
</CardContainer>
);
ProjectCardDetails.propTypes = {
title: PropTypes.string.isRequired,
url: PropTypes.string.isRequired,
description: PropTypes.string.isRequired,
technos: PropTypes.array.isRequired,
date: PropTypes.string.isRequired,
};
export default ProjectCardDetails;
<file_sep>/src/pages/curriculum-vitae.js
import React from 'react';
import { GlobalContainer, GreenContainer } from '../components/StyledComponents';
import Layout from '../components/layout';
import GreenTitle from '../components/GreenTitle';
import Identity from '../components/Identity';
import isMobile from '../services/isMobile';
const CurriculumVitae = ({ data }) => (
<Layout>
<GlobalContainer>
<GreenContainer>
{isMobile()
? ""
: (
<Identity/>
)
}
<GreenTitle
firstLine="Curriculum"
secondLine="vitae"
/>
</GreenContainer>
</GlobalContainer>
</Layout>
);
export default CurriculumVitae;
export const experienceQuery = graphql`
query cvQuery {
allStrapiExperience {
edges {
node {
id
job_title
}
}
}
}
`;<file_sep>/src/components/layout.js
/**
* Layout component that queries for data
* with Gatsby's useStaticQuery component
*
* See: https://www.gatsbyjs.org/docs/use-static-query/
*/
import React, { useState, useRef } from 'react';
import PropTypes from 'prop-types';
import { useStaticQuery, graphql } from 'gatsby';
import styled from 'styled-components';
import { colors, mobileThresholdPixels } from './StyledComponents';
import { useOnClickOutside } from '../hooks';
import BackgroundImage from 'gatsby-background-image';
import MenuBurger from './MenuBurger';
import MenuList from './MenuList';
import './layout.css';
const Main = styled.main`
margin: auto;
justify-content: space-between;
overflow: hidden;
`;
const StyledBackgroundImage = styled(BackgroundImage)`
width: 100%;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
@media (max-width: ${mobileThresholdPixels}) {
height: auto;
}
`;
const Layout = ({ children }) => {
const [open, setOpen] = useState(false);
const node = useRef();
useOnClickOutside(node, () => setOpen(false));
const data = useStaticQuery(graphql`
query {
desktop: file(relativePath: {eq: "feuillage.png"}) {
childImageSharp {
fluid(quality: 90, maxWidth: 1920) {
...GatsbyImageSharpFluid_withWebp
}
}
}
}
`);
return (
<>
<Main>
<StyledBackgroundImage
Tag="section"
fluid={data.desktop.childImageSharp.fluid}
backgroundColor={colors.green}
>
<div ref={node}>
<MenuBurger open={open} setOpen={setOpen}/>
<MenuList open={open} setOpen={setOpen}/>
</div>
{children}
</StyledBackgroundImage>
</Main>
</>
);
};
Layout.propTypes = {
children: PropTypes.node.isRequired,
};
export default Layout;
<file_sep>/src/pages/index.js
import React from "react";
import { graphql } from "gatsby";
import { GlobalContainer, GreenContainer } from '../components/StyledComponents';
import Layout from "../components/layout";
import GreenTitle from '../components/GreenTitle';
import Identity from '../components/Identity';
import isMobile from '../services/isMobile';
import Portrait from '../components/Portrait';
const IndexPage = ({ data }) => (
<Layout>
<GlobalContainer>
<GreenContainer>
{isMobile()
? ""
: (
<Identity />
)
}
<GreenTitle
firstLine="Ecologeek "
secondLine="par nature"
/>
</GreenContainer>
<Portrait/>
</GlobalContainer>
</Layout>
);
export default IndexPage;
| 0e5545a7f8e6f2bd9c4b2a087a6971195b823e7d | [
"JavaScript"
] | 14 | JavaScript | af1ne/db-front | da69d6c9a39dd26e5c8d1897ba1a1bd4589ead4c | c1c73fe7686df46b3b935771120831c704582e0b |
refs/heads/master | <file_sep>package com.uhc.pages;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.support.FindBy;
import org.openqa.selenium.support.PageFactory;
public class HomePage {
private WebDriver driver;
public HomePage(WebDriver driver){
this.driver=driver;
PageFactory.initElements(driver, this);
}
@FindBy(css="li[class^='individual-family']")
public WebElement individualOrFamily;
}
<file_sep>package com.uhc.pages;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.support.FindBy;
import org.openqa.selenium.support.PageFactory;
public class UHOnePage {
private WebDriver driver;
public UHOnePage(WebDriver driver){
this.driver=driver;
PageFactory.initElements(driver, this);
}
//@FindBy(css="LocationViewModel_ZipCode")
@FindBy(id="LocationViewModel_ShowRedirectMessage")
public WebElement zipcode;
@FindBy(css="#PrimaryApplicant_Gender")
public WebElement applicant;
@FindBy(css="#PrimaryApplicant_BirthDate")
public WebElement applicantBirthDay;
@FindBy(css="#PrimaryApplicant_HasTobaccoUsage")
public WebElement tabacoUsage;
@FindBy(css="#hylViewPlans")
public WebElement plans;
}
<file_sep><h2>Methods run, sorted chronologically</h2><h3>>> means before, << means after</h3><p/><br/><em>Suite</em><p/><small><i>(Hover the method name to see the test class name)</i></small><p/>
<table border="1">
<tr><th>Time</th><th>Delta (ms)</th><th>Suite<br>configuration</th><th>Test<br>configuration</th><th>Class<br>configuration</th><th>Groups<br>configuration</th><th>Method<br>configuration</th><th>Test<br>method</th><th>Thread</th><th>Instances</th></tr>
<tr bgcolor="e8a876"> <td>17/10/06 12:01:04</td> <td>0</td> <td> </td><td title=">>TestForOnePerson.setUp(java.lang.String)[pri:0, instance:com.uhc.tests.TestForOnePerson@ff5b51f]">>>setUp</td>
<td> </td><td> </td><td> </td><td> </td> <td>main@1836797772</td> <td></td> </tr>
<tr bgcolor="e8a876"> <td>17/10/06 12:01:05</td> <td>1133</td> <td> </td><td> </td><td> </td><td> </td><td> </td><td title="TestForOnePerson.step1(java.lang.String)[pri:0, instance:com.uhc.tests.TestForOnePerson@ff5b51f]">step1</td>
<td>main@1836797772</td> <td></td> </tr>
<tr bgcolor="e8a876"> <td>17/10/06 12:02:28</td> <td>84256</td> <td> </td><td> </td><td> </td><td> </td><td> </td><td title="TestForOnePerson.step2()[pri:0, instance:com.uhc.tests.TestForOnePerson@ff5b51f]">step2</td>
<td>main@1836797772</td> <td></td> </tr>
<tr bgcolor="e8a876"> <td>17/10/06 12:02:31</td> <td>87943</td> <td> </td><td> </td><td> </td><td> </td><td> </td><td title="TestForOnePerson.step3()[pri:0, instance:com.uhc.tests.TestForOnePerson@ff5b51f]">step3</td>
<td>main@1836797772</td> <td></td> </tr>
<tr bgcolor="e8a876"> <td>17/10/06 12:02:35</td> <td>91599</td> <td> </td><td> </td><td> </td><td> </td><td> </td><td title="TestForOnePerson.step4(java.lang.String)[pri:0, instance:com.uhc.tests.TestForOnePerson@ff5b51f]">step4</td>
<td>main@1836797772</td> <td></td> </tr>
<tr bgcolor="e8a876"> <td>17/10/06 12:02:49</td> <td>105585</td> <td> </td><td> </td><td> </td><td> </td><td> </td><td title="TestForOnePerson.step5()[pri:0, instance:com.uhc.tests.TestForOnePerson@ff5b51f]">step5</td>
<td>main@1836797772</td> <td></td> </tr>
<tr bgcolor="e8a876"> <td>17/10/06 12:02:50</td> <td>106705</td> <td> </td><td> </td><td> </td><td> </td><td> </td><td title="TestForOnePerson.step6()[pri:0, instance:com.uhc.tests.TestForOnePerson@ff5b51f]">step6</td>
<td>main@1836797772</td> <td></td> </tr>
<tr bgcolor="e8a876"> <td>17/10/06 12:02:54</td> <td>110825</td> <td> </td><td> </td><td> </td><td> </td><td> </td><td title="TestForOnePerson.step7()[pri:0, instance:com.uhc.tests.TestForOnePerson@ff5b51f]">step7</td>
<td>main@1836797772</td> <td></td> </tr>
<tr bgcolor="e8a876"> <td>17/10/06 12:02:56</td> <td>112896</td> <td> </td><td> </td><td> </td><td> </td><td> </td><td title="TestForOnePerson.step8()[pri:0, instance:com.uhc.tests.TestForOnePerson@ff5b51f]">step8</td>
<td>main@1836797772</td> <td></td> </tr>
<tr bgcolor="e8a876"> <td>17/10/06 12:02:59</td> <td>115942</td> <td> </td><td> </td><td> </td><td> </td><td> </td><td title="TestForOnePerson.step9()[pri:0, instance:com.uhc.tests.TestForOnePerson@ff5b51f]">step9</td>
<td>main@1836797772</td> <td></td> </tr>
</table>
<file_sep>package com.uhc.pages;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.support.FindBy;
import org.openqa.selenium.support.PageFactory;
public class IndividualAndFamily {
private WebDriver driver;
public IndividualAndFamily (WebDriver driver){
this.driver=driver;
PageFactory.initElements(driver, this);
}
@FindBy(css=".button-primary-common.button-digital-blue")
public WebElement viewPlan;
}
| addc8bf1d9077fb150241f90529c7f367837e9fb | [
"Java",
"HTML"
] | 4 | Java | mates71/United_Health | 9fa5091497baed781b52cd54b497c2376cbe339e | 9a5c1ff8b96be5f658f12a3f7f5442d0f8b73dbd |
refs/heads/master | <file_sep>package com.richard;
import java.util.Scanner;
public class OthelloInteractiveGame {
private static Scanner scanner = new Scanner(System.in);
public static void main(String[] args) {
rungame();
}
private static void rungame() {
boolean isContinue = true;
Othello game = new Othello(100);
output(game.getChessBoardStr() + "\n");
while (isContinue) {
char player = game.getPlayer();
output(String.format("Player '%s' move ('pb' for passback):", player));
String step = input();
try {
game.playGameSingleRound(step);
output(game.getChessBoardStr() + "\n");
}
catch (InvalidMoveException ie) {
output("Invalid move. Please try again.\n\n");
}
catch (GameIsOverException e) {
isContinue = false;
output("game is over\n");
output(game.getChessBoardStr());
int[] counts = game.getDiskCounts();
int darkc = counts[0];
int lightc = counts[1];
StringBuilder str = new StringBuilder();
str.append("No further moves available\n");
if (darkc == lightc) {
str.append(String.format("Draw (%s vs %s)\n", darkc, lightc));
} else {
char winner = darkc > lightc ? game.getDark() : game.getLight();
str.append(String.format("Player '%s' wins (%s vs %s)\n"
, winner, darkc, lightc));
}
output(str.toString());
}
}
}
private static void output(String msg) {
System.out.printf(msg);
}
private static String input() {
return scanner.next();
}
}
<file_sep>#!/bin/bash
./run_batch.sh "D3,E3,F4,G3,F3,C5,H3,F2,C4,C3,E2,E1,B3,H4,H5,A3"
<file_sep>#!/bin/bash
jar="target/Reversi-jar-with-dependencies.jar"
java -cp $jar com.richard.OthelloInteractiveGame
<file_sep>#!/bin/bash
jar="target/Reversi-jar-with-dependencies.jar"
mvn clean install test package
if [ ! -f "$jar" ]; then echo "target jar file not exists!!!"; exit -1; else echo "build sucess."; fi
<file_sep># reversi
This is a java based reversi game
Prerequsites
=============
jdk 1.8<br/>
maven<br/>
Detail
=======
This is an application to play with Othello/Reversi.<br/><br/>
In order to build, please type:<br/>
cd Reversi<br/>
./build.sh<br/><br/>
In order to run batch mode, please type:<br/>
cd Reversi<br/>
./run_batch.sh "[your arg here]"<br/><br/>
In order to run interactive mode, please type:<br/>
cd Reversi<br/>
./run_interactive.sh<br/><br/>
For log checking, please check at Reversi/log/out.log
Release Note
=============
1.0
----
Initial version
1.1
----
1. update the log level to INFO for testing part to get rid of excessive log<br/>
2. Introduce Displacement interface to replace Operators functions. Displacement.next() is a function to accept current position (zero-based integer) and return the next position in zero-based integer. This can make the searching of same disk type item logic more generic by abstracting the position next logic<br/>
3. Some terms are not in standard java camel-casing. Fixed in this release<br/>
4. For batch mode, there will be a printout of chess board after each step<br/>
5. There is a new build.sh created to run test, install and package (creating a fat jar for running application)<br/>
6. run*sh commands are updated to use java command rather than mvn exec command as the latter in/out console seems problematic occasionally. It is tested in mac os and mvn version does not work.<br/>
<file_sep>#!/bin/bash
args="$1"
echo "args--$args"
jar="target/Reversi-jar-with-dependencies.jar"
java -cp $jar com.richard.OthelloBatchGame "$args"
<file_sep>package com.richard;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;
import java.util.Arrays;
import java.util.List;
import org.junit.Before;
import org.junit.Test;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
public class OthelloTest {
private static Logger logger = LoggerFactory.getLogger(OthelloTest.class);
private Othello obj = null;
@Before
public void setup() {
obj = new Othello();
}
@Test
public void testIsValidDisk() {
assertTrue(obj.isValidDisk(obj.getDark()));
assertTrue(obj.isValidDisk(obj.getLight()));
assertFalse(obj.isValidDisk(obj.getBlank()));
}
@Test(expected=IllegalArgumentException.class)
public void testGetCounterpartyDiskInvalid() {
obj.getCounterpartyDisk(obj.getBlank());
}
@Test
public void testGetCounterpartyDiskValid() {
assertEquals(obj.getLight(),obj.getCounterpartyDisk(obj.getDark()));
assertEquals(obj.getDark(),obj.getCounterpartyDisk(obj.getLight()));
}
@Test
public void testInitChessBoard() {
char[] r = obj.initChessBoard();
assertEquals(64, r.length);
for (int i = 0; i < 64; i++) {
if (i == 27)
assertEquals('O', r[i]);
else if (i == 28)
assertEquals('X', r[i]);
else if (i == 35)
assertEquals('X', r[i]);
else if (i == 36)
assertEquals('O', r[i]);
else
assertEquals('-', r[i]);
}
}
@Test(expected = IllegalArgumentException.class)
public void testGetchessboardStrNotValid1() {
obj.getChessBoardStr(null);
}
@Test(expected = IllegalArgumentException.class)
public void testGetchessboardStrNotValid2() {
obj.getChessBoardStr(new char[2]);
}
@Test
public void testGetchessboardStrInit() {
/*
* 1 -------- 2 -------- 3 -------- 4 ---OX--- 5 ---XO--- 6 -------- 7
* -------- 8 -------- abcdefgh
*/
StringBuilder str = new StringBuilder();
str.append("1 --------").append('\n');
str.append("2 --------").append('\n');
str.append("3 --------").append('\n');
str.append("4 ---OX---").append('\n');
str.append("5 ---XO---").append('\n');
str.append("6 --------").append('\n');
str.append("7 --------").append('\n');
str.append("8 --------").append('\n');
str.append(" abcdefgh").append('\n');
String expect = str.toString();
String actual = obj.getChessBoardStr(obj.initChessBoard());
logger.debug("expect init chessboard str:\n{}", expect);
logger.debug("actual init chessboard str:\n{}", actual);
assertEquals(expect, actual);
}
@Test(expected = IllegalArgumentException.class)
public void testVerticalBackwardDisplacementInvalid1() {
Displacement d = new VerticalBackwardDisplacement();
d.next(7);
}
@Test(expected = IllegalArgumentException.class)
public void testVerticalBackwardDisplacementInvalid2() {
Displacement d = new VerticalBackwardDisplacement();
d.next(65);
}
@Test
public void testVerticalBackwardDisplacementValid() {
Displacement d = new VerticalBackwardDisplacement();
assertTrue(3 == d.next(11));
assertTrue(20 == d.next(28));
}
@Test(expected = IllegalArgumentException.class)
public void testVerticalForwardDisplacementInvalid1() {
Displacement d = new VerticalForwardDisplacement();
d.next(-1);
}
@Test(expected = IllegalArgumentException.class)
public void testVerticalForwardDisplacementInvalid2() {
Displacement d = new VerticalForwardDisplacement();
d.next(60);
}
@Test
public void testVerticalForwardDisplacementValid() {
Displacement d = new VerticalForwardDisplacement();
assertTrue(11 == d.next(3));
assertTrue(28 == d.next(20));
}
@Test(expected = IllegalArgumentException.class)
public void testHorizontalDisplacementBackwardInvalid1() {
Displacement d = new HorizontalBackwardDisplacement();
d.next(-1);
}
@Test(expected = IllegalArgumentException.class)
public void testHorizontalDisplacementBackwardInvalid2() {
Displacement d = new HorizontalBackwardDisplacement();
d.next(65);
}
@Test
public void testHorizontalDisplacementBackwardInvalid3() {
Displacement d = new HorizontalBackwardDisplacement();
int exceptioncaught = 0;
for (int i = 0; i < 8; i++) {
try {
d.next(i * 8);
} catch (Exception e) {
exceptioncaught++;
}
}
assertEquals(8, exceptioncaught);
}
@Test
public void testHorizontalDisplacementBackwardValid() {
Displacement d = new HorizontalBackwardDisplacement();
assertTrue(0 == d.next(1));
assertTrue(10 == d.next(11));
}
@Test(expected = IllegalArgumentException.class)
public void testHorizontalForwardDisplacementInvalid1() {
Displacement d = new HorizontalForwardDisplacement();
d.next(-1);
}
@Test(expected = IllegalArgumentException.class)
public void testHorizontalForwardDisplacementInvalid2() {
Displacement d = new HorizontalForwardDisplacement();
d.next(68);
}
@Test
public void testHorizontalForwardDisplacementInvalid3() {
Displacement d = new HorizontalForwardDisplacement();
int exceptioncaught = 0;
for (int i = 0; i < 8; i++) {
try {
d.next(7 + i * 8);
} catch (Exception e) {
exceptioncaught++;
}
}
assertEquals(8, exceptioncaught);
}
@Test
public void testHorizontalForwardDisplacementValid() {
Displacement d = new HorizontalForwardDisplacement();
assertTrue(1 == d.next(0));
assertTrue(12 == d.next(11));
}
@Test
public void testDiagonalLeft2RightBackwardDisplacementResultsInvalid() {
Displacement d = new DiagonalLeft2RightBackwardDisplacement();
int exceptioncaught = 0;
try {
d.next(5);
}
catch (Exception e) {
exceptioncaught++;
}
try {
d.next(8);
}
catch (Exception e) {
exceptioncaught++;
}
try {
d.next(68);
}
catch (Exception e) {
exceptioncaught++;
}
assertTrue(3 == exceptioncaught);
}
@Test
public void testDiagonalLeft2RightBackwardDisplacementResultsValid() {
Displacement d = new DiagonalLeft2RightBackwardDisplacement();
assertTrue(11 == d.next(20));
assertTrue(46 == d.next(55));
}
@Test
public void testDiagonalRight2LeftForwardDisplacementInvalid() {
Displacement d = new DiagonalRight2LeftForwardDisplacement();
int exceptioncaught = 0;
try {
d.next(57);
}
catch (Exception e) {
exceptioncaught++;
}
try {
d.next(-1);
}
catch (Exception e) {
exceptioncaught++;
}
try {
d.next(16);
}
catch (Exception e) {
exceptioncaught++;
}
assertTrue(3 == exceptioncaught);
}
@Test
public void testDiagonalRight2LeftForwardDisplacementValid() {
Displacement d = new DiagonalRight2LeftForwardDisplacement();
assertTrue(27 == d.next(20));
assertTrue(40 == d.next(33));
}
@Test
public void testDiagonalRight2LeftBackwardDisplacementInvalid() {
Displacement d = new DiagonalRight2LeftBackwardDisplacement();
int exceptioncaught = 0;
try {
d.next(-1);
}
catch (Exception e) {
exceptioncaught++;
}
try {
d.next(7);
}
catch (Exception e) {
exceptioncaught++;
}
try {
d.next(15);
}
catch (Exception e) {
exceptioncaught++;
}
assertTrue(3 == exceptioncaught);
}
@Test
public void testDiagonalLeft2RightForwardDisplacementResultsInvalid() {
Displacement d = new DiagonalLeft2RightForwardDisplacement();
int exceptioncaught = 0;
try {
d.next(-1);
}
catch (Exception e) {
exceptioncaught++;
}
try {
d.next(60);
}
catch (Exception e) {
exceptioncaught++;
}
try {
d.next(23);
}
catch (Exception e) {
exceptioncaught++;
}
assertTrue(3 == exceptioncaught);
}
@Test
public void testDiagonalLeft2RightForwardResultsValid() {
Displacement d = new DiagonalLeft2RightForwardDisplacement();
assertTrue(29 == d.next(20));
assertTrue(42 == d.next(33));
}
@Test
public void testIsPassBack() {
assertFalse(obj.isPassBackRequest(""));
assertFalse(obj.isPassBackRequest(" "));
assertFalse(obj.isPassBackRequest(null));
assertFalse(obj.isPassBackRequest("2"));
assertFalse(obj.isPassBackRequest("2b"));
assertFalse(obj.isPassBackRequest("b2"));
assertFalse(obj.isPassBackRequest("nnnnn"));
assertTrue(obj.isPassBackRequest("pb"));
assertTrue(obj.isPassBackRequest("PB"));
}
@Test
public void testConvertStrCoordinates2IntInvalid1() {
//blank string
int exceptioncaught = 0;
try {
obj.convertStrCoordinates2Int(null);
}
catch (Exception e) {
exceptioncaught++;
}
//blank string
try {
obj.convertStrCoordinates2Int("");
}
catch (Exception e) {
exceptioncaught++;
}
//too long
try {
obj.convertStrCoordinates2Int("12a");
}
catch (Exception e) {
exceptioncaught++;
}
//too short
try {
obj.convertStrCoordinates2Int("b");
}
catch (Exception e) {
exceptioncaught++;
}
assertTrue(4 == exceptioncaught);
}
@Test
public void testConvertStrCoordinates2IntInvalid2() {
int exceptioncaught = 0;
// same type
try {
obj.convertStrCoordinates2Int("ab");
}
catch (Exception e) {
exceptioncaught++;
}
try {
obj.convertStrCoordinates2Int("13");
}
catch (Exception e) {
exceptioncaught++;
}
assertTrue(2 == exceptioncaught);
}
@Test
public void testConvertStrCoordinates2IntInvalid3() {
int exceptioncaught = 0;
// out of bound
try {
obj.convertStrCoordinates2Int("a9");
}
catch (Exception e) {
exceptioncaught++;
}
try {
obj.convertStrCoordinates2Int("z2");
}
catch (Exception e) {
exceptioncaught++;
}
try {
obj.convertStrCoordinates2Int("z9");
}
catch (Exception e) {
exceptioncaught++;
}
assertTrue(3 == exceptioncaught);
}
@Test
public void testConvertStrCoordinates2IntValid() {
assertTrue(16==obj.convertStrCoordinates2Int("a3"));
assertTrue(16==obj.convertStrCoordinates2Int("3a"));
assertTrue(33==obj.convertStrCoordinates2Int("b5"));
assertTrue(33==obj.convertStrCoordinates2Int("5b"));
}
@Test
public void testGetListOfCoordinatesCanTurnDiskFound() {
char[] chessboard = obj.initChessBoard();
List<Integer> result1 = obj.getListOfCoordinatesCanTurnDisk(obj.getDark(), chessboard, new HorizontalForwardDisplacement(), 26);
logger.debug("result1:{}", result1);
assertEquals(1, result1.size());
assertTrue(27==result1.get(0));
List<Integer> result2 = obj.getListOfCoordinatesCanTurnDisk(obj.getDark(), chessboard, new VerticalForwardDisplacement(), 19);
logger.debug("result2:{}", result2);
assertEquals(1, result2.size());
assertTrue(27==result2.get(0));
List<Integer> result3 = obj.getListOfCoordinatesCanTurnDisk(obj.getDark(), chessboard, new VerticalBackwardDisplacement(), 44);
logger.debug("result3:{}", result3);
assertEquals(1, result3.size());
assertTrue(36==result3.get(0));
List<Integer> result4 = obj.getListOfCoordinatesCanTurnDisk(obj.getDark(), chessboard, new HorizontalBackwardDisplacement(), 37);
logger.debug("result4:{}", result4);
assertEquals(1, result4.size());
assertTrue(36==result4.get(0));
}
@Test
public void testGetListOfCoordinatesCanTurnDiskNotFound() {
char[] chessboard = obj.initChessBoard();
List<Integer> result1 = obj.getListOfCoordinatesCanTurnDisk(obj.getDark(), chessboard, new HorizontalForwardDisplacement(), 18);
logger.debug("result1:{}", result1);
assertEquals(0, result1.size());
List<Integer> result2 = obj.getListOfCoordinatesCanTurnDisk(obj.getDark(), chessboard, new HorizontalForwardDisplacement(), 0);
logger.debug("result2:{}", result2);
assertEquals(0, result2.size());
// hitting edge
List<Integer> result3 = obj.getListOfCoordinatesCanTurnDisk(obj.getDark(), chessboard, new HorizontalForwardDisplacement(), 0);
logger.debug("result3:{}", result3);
assertEquals(0, result3.size());
// manually update chessboard through altering char values (not for actual game playing disk turning
chessboard[0] = obj.getLight();
if (logger.isDebugEnabled())
logger.debug("after manually altering chessboard:\n{}", obj.getChessBoardStr(chessboard));
// caught 1 light but eventually hit edge
List<Integer> result4 = obj.getListOfCoordinatesCanTurnDisk(obj.getDark(), chessboard, new HorizontalBackwardDisplacement(), 1);
logger.debug("result4:{}", result4);
assertEquals(0, result4.size());
}
@Test
public void getListOfCoordinatesCanTurnDiskNotValid() {
char[] chessboard = obj.initChessBoard();
int exceptioncaught = 0;
try {
obj.getListOfCoordinatesCanTurnDisk(obj.getDark(), chessboard, -1);
}
catch (Exception e) {
exceptioncaught++;
}
try {
obj.getListOfCoordinatesCanTurnDisk(obj.getDark(), chessboard, 64);
}
catch (Exception e) {
exceptioncaught++;
}
try {
obj.getListOfCoordinatesCanTurnDisk(obj.getDark(), chessboard, 27);
}
catch (Exception e) {
exceptioncaught++;
}
try {
obj.getListOfCoordinatesCanTurnDisk(obj.getBlank(), chessboard, 26);
}
catch (Exception e) {
exceptioncaught++;
}
assertTrue(4 == exceptioncaught);
}
@Test
public void getListOfCoordinatesCanTurnDiskValid() {
char[] chessboard = obj.initChessBoard();
List<Integer> result1 = obj.getListOfCoordinatesCanTurnDisk(obj.getDark(), chessboard, 26);
logger.debug("getListOfCoordinatesCanTurnDiskValid result1:{}", result1);
assertEquals(1, result1.size());
assertTrue(27==result1.get(0));
List<Integer> result2 = obj.getListOfCoordinatesCanTurnDisk(obj.getDark(), chessboard, 18);
logger.debug("getListOfCoordinatesCanTurnDiskValid result2:{}", result2);
assertEquals(0, result2.size());
}
@Test
public void testUpdateChessBoard() {
char[] chessboard = obj.initChessBoard();
List<Integer> updatepos = Arrays.asList(0,1,2);
char[] newchessboard = obj.updateChessBoard(chessboard, obj.getLight(), updatepos);
StringBuilder str = new StringBuilder();
str.append("1 OOO-----").append('\n');
str.append("2 --------").append('\n');
str.append("3 --------").append('\n');
str.append("4 ---OX---").append('\n');
str.append("5 ---XO---").append('\n');
str.append("6 --------").append('\n');
str.append("7 --------").append('\n');
str.append("8 --------").append('\n');
str.append(" abcdefgh").append('\n');
String expect = str.toString();
String actual = obj.getChessBoardStr(newchessboard);
logger.debug("actual:\n{}", actual);
assertEquals(expect,actual);
}
@Test
public void testGetPlayerBasedOnRoundsPlayed() {
int exceptioncaught = 0;
try {
obj.getPlayerBasedOnRoundsPlayed(-1);
}
catch (Exception e) {
exceptioncaught++;
}
assertTrue(1 == exceptioncaught);
assertEquals(obj.getDark(), obj.getPlayerBasedOnRoundsPlayed(0));
assertEquals(obj.getLight(), obj.getPlayerBasedOnRoundsPlayed(1));
assertEquals(obj.getDark(), obj.getPlayerBasedOnRoundsPlayed(2));
assertEquals(obj.getLight(), obj.getPlayerBasedOnRoundsPlayed(3));
}
@Test
public void testCanValidMoveBeFound() {
char[] chessboard = obj.initChessBoard();
// init chess
assertTrue(obj.canValidMoveBeFound(obj.getDark(), chessboard));
assertTrue(obj.canValidMoveBeFound(obj.getLight(), chessboard));
char[] chessboard2 = new char[64];
for (int i = 0; i < 64; i++) {
chessboard2[i] = obj.getDark();
}
assertFalse(obj.canValidMoveBeFound(obj.getDark(), chessboard2));
assertFalse(obj.canValidMoveBeFound(obj.getLight(), chessboard2));
}
@Test(expected=InvalidMoveException.class)
public void testPlayGameSingleStepInvalidMove1() {
Othello game = new Othello();
try {
// left upper corner far away from starting
game.playGameSingleRound("1a");
} catch (InvalidMoveException ie) {
assertTrue(0==game.getNoOfRoundsPlayed());
assertTrue(game.getStepsGoneThrough().isEmpty());
throw ie;
}
}
@Test(expected=InvalidMoveException.class)
public void testPlayGameSingleStepInvalidMove2() {
Othello game = new Othello();
try {
// attempt to move to a non-blank position
game.playGameSingleRound("4d");
} catch (InvalidMoveException ie) {
assertTrue(0==game.getNoOfRoundsPlayed());
assertTrue(game.getStepsGoneThrough().isEmpty());
throw ie;
}
}
@Test
public void testPlayGameSingleStepValid1() {
Othello game = new Othello();
game.playGameSingleRound("3d");
assertTrue(1==game.getNoOfRoundsPlayed());
assertTrue(1==game.getStepsGoneThrough().size());
StringBuilder str = new StringBuilder();
str.append("1 --------").append('\n');
str.append("2 --------").append('\n');
str.append("3 ---X----").append('\n');
str.append("4 ---XX---").append('\n');
str.append("5 ---XO---").append('\n');
str.append("6 --------").append('\n');
str.append("7 --------").append('\n');
str.append("8 --------").append('\n');
str.append(" abcdefgh").append('\n');
String expect = str.toString();
String actual = game.getChessBoardStr();
logger.debug("testPlayGameSingleStepValid1 actual:\n{}", actual);
assertEquals(expect,actual);
}
@Test
public void testPlayGameSingleStepValid2() {
Othello game = new Othello();
game.playGameSingleRound("4c");
assertTrue(1==game.getNoOfRoundsPlayed());
assertTrue(1==game.getStepsGoneThrough().size());
StringBuilder str = new StringBuilder();
str.append("1 --------").append('\n');
str.append("2 --------").append('\n');
str.append("3 --------").append('\n');
str.append("4 --XXX---").append('\n');
str.append("5 ---XO---").append('\n');
str.append("6 --------").append('\n');
str.append("7 --------").append('\n');
str.append("8 --------").append('\n');
str.append(" abcdefgh").append('\n');
String expect = str.toString();
String actual = game.getChessBoardStr();
logger.debug("testPlayGameSingleStepValid2 actual:\n{}", actual);
assertEquals(expect,actual);
}
@Test
public void testPlayGameSingleStepValid3() {
Othello game = new Othello();
game.playGameSingleRound("4c");
assertTrue(1==game.getNoOfRoundsPlayed());
assertTrue(1==game.getStepsGoneThrough().size());
game.playGameSingleRound("5c");
assertTrue(2==game.getNoOfRoundsPlayed());
List<String> steps = game.getStepsGoneThrough();
assertTrue(2==steps.size());
assertEquals("4c", steps.get(0));
assertEquals("5c", steps.get(1));
StringBuilder str = new StringBuilder();
str.append("1 --------").append('\n');
str.append("2 --------").append('\n');
str.append("3 --------").append('\n');
str.append("4 --XXX---").append('\n');
str.append("5 --OOO---").append('\n');
str.append("6 --------").append('\n');
str.append("7 --------").append('\n');
str.append("8 --------").append('\n');
str.append(" abcdefgh").append('\n');
String expect = str.toString();
String actual = game.getChessBoardStr();
logger.debug("testPlayGameSingleStepValid3 actual:\n{}", actual);
assertEquals(expect,actual);
}
@Test
public void testPlayGameSingleStepValid4() {
// with passback
Othello game = new Othello();
game.playGameSingleRound("4c");
assertTrue(1==game.getNoOfRoundsPlayed());
assertTrue(1==game.getStepsGoneThrough().size());
game.playGameSingleRound("pb");
assertTrue(2==game.getNoOfRoundsPlayed());
List<String> steps = game.getStepsGoneThrough();
assertTrue(2==steps.size());
assertEquals("4c", steps.get(0));
assertEquals("pb", steps.get(1));
StringBuilder str = new StringBuilder();
str.append("1 --------").append('\n');
str.append("2 --------").append('\n');
str.append("3 --------").append('\n');
str.append("4 --XXX---").append('\n');
str.append("5 ---XO---").append('\n');
str.append("6 --------").append('\n');
str.append("7 --------").append('\n');
str.append("8 --------").append('\n');
str.append(" abcdefgh").append('\n');
String expect = str.toString();
String actual = game.getChessBoardStr();
logger.debug("testPlayGameSingleStepValid4 actual:\n{}", actual);
assertEquals(expect,actual);
}
@Test
public void testPlayGame() {
Othello game = new Othello();
String inputSteps = "f5, 6f, f7, 4f, f3, 3e, d3, c5";
game.playGame(inputSteps, null, false);
assertTrue(8==game.getNoOfRoundsPlayed());
List<String> steps = Arrays.asList(new String[]{"f5", "6f", "f7", "4f", "f3", "3e", "d3", "c5"});
assertEquals(steps, game.getStepsGoneThrough());
StringBuilder str = new StringBuilder();
str.append("1 --------").append('\n');
str.append("2 --------").append('\n');
str.append("3 ---XXX--").append('\n');
str.append("4 ---XXX--").append('\n');
str.append("5 --OOOX--").append('\n');
str.append("6 -----X--").append('\n');
str.append("7 -----X--").append('\n');
str.append("8 --------").append('\n');
str.append(" abcdefgh").append('\n');
String expect = str.toString();
String actual = game.getChessBoardStr();
logger.debug("testPlayGame actual:\n{}", actual);
assertEquals(expect,actual);
}
@Test(expected=InvalidMoveException.class)
public void testPlayGameHitInvalid() {
Othello game = new Othello();
// 1a is invalid move
String inputSteps = "f5, 6f, f7, 4f, f3, 3e, d3, c5, 1a, 5g";
try {
game.playGame(inputSteps, null, false);
}
catch (InvalidMoveException ie) {
assertTrue(8==game.getNoOfRoundsPlayed());
List<String> steps = Arrays.asList(new String[]{"f5", "6f", "f7", "4f", "f3", "3e", "d3", "c5"});
assertEquals(steps, game.getStepsGoneThrough());
throw ie;
}
}
@Test(expected=InvalidMoveException.class)
public void testPlayGameHitInvalid2() {
Othello game = new Othello();
// 1a is invalid move
String inputSteps = "f5, 6f, f7, 4f, f3, 3e, d3, c5, 99, 5g";
try {
game.playGame(inputSteps, null, false);
}
catch (InvalidMoveException ie) {
assertTrue(8==game.getNoOfRoundsPlayed());
List<String> steps = Arrays.asList(new String[]{"f5", "6f", "f7", "4f", "f3", "3e", "d3", "c5"});
assertEquals(steps, game.getStepsGoneThrough());
throw ie;
}
}
@Test
public void testGetDiskCounts() {
char[] chessboard = obj.initChessBoard();
int[] r = obj.getDiskCounts(chessboard);
assertTrue(2==r[0] && 2==r[1]);
}
@Test
public void testIsEndGame() {
char[] chessboard = new char[64];
for (int i = 0; i < 64; i++) {
chessboard[i] = obj.getDark();
}
assertTrue(obj.isEndGameDetected(chessboard, 0));
assertTrue(obj.isEndGameDetected(chessboard, 1));
char[] chessboard2 = obj.initChessBoard();
Arrays.asList(4,12,13,16,17,18,19,20,21,22,26,27,28,29,34,35,36)
.forEach(i->chessboard2[i] = obj.getLight());
Arrays.asList(23,31,39)
.forEach(i->chessboard2[i] = obj.getDark());
if (logger.isDebugEnabled())
logger.debug("chessboard2:\n{}", obj.getChessBoardStr(chessboard2));
assertTrue(obj.isEndGameDetected(chessboard2, 15));
}
}
<file_sep>package com.richard;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
public class OthelloBatchGame {
private static Logger logger = LoggerFactory.getLogger(OthelloBatchGame.class);
public static void main(String[] args) {
if (args.length < 1) {
System.err.println("Usage java OthelloBatchGame [game steps], e.g. \"1a, 2b\"");
System.exit(-1);
}
Othello game = new Othello();
output("initialize....");
output(game.getChessBoardStr());
try {
game.playGame(args[0]);
}
catch (InvalidMoveException ie) {
output("hit an invalid move....");
output("steps gone through: " + game.getStepsGoneThrough());
}
catch (GameIsOverException ge) {
output("game is over");
}
catch (Exception e) {
output(e.getMessage());
}
if (logger.isInfoEnabled()) {
logger.info("chessboard:\n{}", game.getChessBoardStr());
logger.info("steps:{}",game.getStepsGoneThrough());
}
output("Current Chessboard:");
output(game.getChessBoardStr());
//output(game.getStepsGoneThrough().toString());
//output(String.valueOf(game.getLastRoundDetectedInvalid()));
if (game.isEndGame()) {
int[] counts = game.getDiskCounts();
int darkc = counts[0];
int lightc = counts[1];
StringBuilder str = new StringBuilder();
str.append("No further moves available\n");
if (darkc == lightc) {
str.append(String.format("Draw (%s vs %s)\n", darkc, lightc));
} else {
char winner = darkc > lightc ? game.getDark() : game.getLight();
str.append(String.format("Player '%s' wins (%s vs %s)\n"
, winner, darkc, lightc));
}
output(str.toString());
}
}
private static void output(String msg) {
System.out.println(msg);
}
}
<file_sep>#!/bin/bash
./run_batch.sh "f5, 6f, f7, 4f, f3, 3e, d3, c5"
<file_sep>package com.richard;
import java.io.PrintStream;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.HashMap;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import java.util.function.UnaryOperator;
import org.apache.commons.lang3.StringUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* Hello world!
*
*/
public class Othello
{
private static Logger logger = LoggerFactory.getLogger(Othello.class);
private static final Set<Character> ROW_INDEX = new HashSet<Character>();
private static final Set<Character> COL_INDEX = new HashSet<Character>();
static {
ROW_INDEX.add('1');
ROW_INDEX.add('2');
ROW_INDEX.add('3');
ROW_INDEX.add('4');
ROW_INDEX.add('5');
ROW_INDEX.add('6');
ROW_INDEX.add('7');
ROW_INDEX.add('8');
COL_INDEX.add('a');
COL_INDEX.add('b');
COL_INDEX.add('c');
COL_INDEX.add('d');
COL_INDEX.add('e');
COL_INDEX.add('f');
COL_INDEX.add('g');
COL_INDEX.add('h');
}
public final char getBlank() { return '-'; }
public final char getDark() { return 'X'; }
public final char getLight() { return 'O'; }
protected final boolean isValidDisk(char input) {
return (input == getDark() || input == getLight());
}
/**
* This method will return the counterparty disk
* getdark() -> getlight(); getlight() -> getdark();
* Otherwise will throw IllegalArgumentException
*
* @param input
* @return
*/
protected final char getCounterpartyDisk(char input) {
if (!isValidDisk(input)) {
throw new IllegalArgumentException("input disk invalid: " + input);
}
return input == getDark() ? getLight() : getDark();
}
protected final Set<Character> getRowIndices() { return ROW_INDEX; }
protected final Set<Character> getColIndices() { return COL_INDEX; }
/**
* This method aims to initialize
* the chessboard. The chessboard
* is an array of char with size 64
* (8 x 8). For row 1 col a, array[0]
* (1st) value is array[0]. For row 1
* col b value is array[1] (2nd). For
* row 2 col a value is array[8] (9th)
* @return
*/
protected char[] initChessBoard() {
char[] r = new char[64];
Map<Integer,Character> map = new HashMap<Integer,Character>();
map.put(27, getLight());
map.put(28, getDark());
map.put(35, getDark());
map.put(36, getLight());
for (int i = 0; i < 64; i++) {
r[i] = map.getOrDefault(i, getBlank());
}
return r;
}
/**
* This operator will base on input to determine
* the new index which is up
*
* @return
*/
@Deprecated
protected UnaryOperator<Integer> getUpOperator() {
return i-> {
if (i >= 8 && i <= 63) {
return i - 8;
}
else {
throw new IllegalArgumentException("not allowed");
}
};
}
/**
* This operator will base on input to determine
* the new index which is down
*
* @return
*/
@Deprecated
protected UnaryOperator<Integer> getDownOperator() {
return i-> {
if (i >= 0 && i <= 55) {
return i + 8;
}
else {
throw new IllegalArgumentException("not allowed");
}
};
}
/**
* This operator will base on input to determine
* the new index which is left
*
* @return
*/
@Deprecated
protected UnaryOperator<Integer> getLeftOperator() {
return i-> {
if (i >= 0 && i <= 63) {
if (i % 8 == 0) {
throw new IllegalArgumentException("left edge");
} else {
return i - 1;
}
} else {
throw new IllegalArgumentException("not allowed");
}
};
}
/**
* This operator will base on input to determine
* the new index which is right
*
* @return
*/
@Deprecated
protected UnaryOperator<Integer> getRightOperator() {
return i-> {
if (i >= 0 && i <= 63) {
if (i % 8 == 7) {
throw new IllegalArgumentException("right edge");
} else {
return i + 1;
}
} else {
throw new IllegalArgumentException("not allowed");
}
};
}
/**
* This operator will base on input to determine
* the new index which is up and left
*
* @return
*/
@Deprecated
protected UnaryOperator<Integer> getUpLeftOperator() {
return i->getLeftOperator().apply(getUpOperator().apply(i));
}
/**
* This operator will base on input to determine
* the new index which is up and right
*
* @return
*/
@Deprecated
protected UnaryOperator<Integer> getUpRightOperator() {
return i->getRightOperator().apply(getUpOperator().apply(i));
}
/**
* This operator will base on input to determine
* the new index which is down and left
*
* @return
*/
@Deprecated
protected UnaryOperator<Integer> getDownLeftOperator() {
return i->getLeftOperator().apply(getDownOperator().apply(i));
}
/**
* This operator will base on input to determine
* the new index which is down and right
*
* @return
*/
@Deprecated
protected UnaryOperator<Integer> getDownRightOperator() {
return i->getRightOperator().apply(getDownOperator().apply(i));
}
@Deprecated
protected List<UnaryOperator<Integer>> getAllOperators() {
List<UnaryOperator<Integer>> op = new ArrayList<UnaryOperator<Integer>>();
op.add(getUpOperator());
op.add(getDownOperator());
op.add(getLeftOperator());
op.add(getRightOperator());
op.add(getUpLeftOperator());
op.add(getUpRightOperator());
op.add(getDownLeftOperator());
op.add(getDownRightOperator());
return op;
}
protected List<Displacement> getAllDisplacementOps() {
return Arrays.asList(new VerticalBackwardDisplacement(), new VerticalForwardDisplacement()
, new HorizontalBackwardDisplacement(), new HorizontalForwardDisplacement()
, new DiagonalLeft2RightBackwardDisplacement(), new DiagonalLeft2RightForwardDisplacement()
, new DiagonalRight2LeftBackwardDisplacement(), new DiagonalRight2LeftForwardDisplacement());
}
/**
* Define the pattern of input String to be
* interpreted as passback request
*
* @param input
* @return
*/
protected boolean isPassBackRequest(String input) {
if (StringUtils.isBlank(input)) return false;
return getPassBackStr().equals(input.toLowerCase().trim());
}
protected String getPassBackStr() { return "pb"; }
/**
* convert String coordinates to a int
* zero based position for char[] to
* retrieve its value
*
* @param input
* @return
*/
protected int convertStrCoordinates2Int(String input) {
if (StringUtils.isBlank(input)) {
throw new IllegalArgumentException("blank string not accepted");
}
if (input.length() != 2) {
throw new IllegalArgumentException("2 char length only");
}
char c1 = input.charAt(0);
char c2 = input.charAt(1);
if (getRowIndices().contains(c1) && getColIndices().contains(c2)) {
return convertCharsCoordinates2Int(c1, c2);
} else if (getRowIndices().contains(c2) && getColIndices().contains(c1)) {
return convertCharsCoordinates2Int(c2, c1);
} else {
throw new IllegalArgumentException("unknown combination: " + input);
}
}
/**
* Return the zero-based position based on row index: c1 (1-8)
* and col index: c2 (a-h)
* @param c1
* @param c2
* @return
*/
protected int convertCharsCoordinates2Int(char c1, char c2) {
int row = c1 - 48 - 1; //48 is the ascii value of '1', '1' -> 1, zero base -> 0
int col = c2 - 97; // 97 is the ascii value of 'a'
logger.debug("c1: {} c2: {} row: {} col:{}", c1, c2, row, col);
if (row >= 0 && row <= 7 && col >= 0 && col <= 7) {
return row * 8 + col;
}
else {
throw new IllegalArgumentException("out of the bound " + row + " " + col);
}
}
/**
* This method will return a list of counterparty disk positions
* to be absorbed by input diskType. This method is just checking
* a single operator point of view
*
* @param diskType
* @param chessboard
* @param displacementops
* @param startingpos
* @return
*/
protected List<Integer> getListOfCoordinatesCanTurnDisk(char diskType, char[] chessboard, Displacement ops, int startingpos) {
if (!isValidDisk(diskType))
throw new IllegalArgumentException("disk invalid: " + diskType);
boolean iscontinue = true;
boolean isvalid = false;
int pos = startingpos;
List<Integer> result = new ArrayList<Integer>();
while (iscontinue) {
try {
int nextpos = ops.next(pos);
if (chessboard[nextpos] == getCounterpartyDisk(diskType)) {
result.add(nextpos);
pos = nextpos;
}
else if (chessboard[nextpos] == diskType && !result.isEmpty()) {
// something absorbed and eventually meet the same disk type
iscontinue = false;
isvalid = true;
}
else {
iscontinue = false;
isvalid = false;
}
}
catch (IllegalArgumentException e) {
logger.debug("exception caught", e);
iscontinue = false;
isvalid = false;
}
}
logger.debug("getListOfCoordinatesCanTurnDisk disk: {} op: {} startpos: {} isvalid: {} result: {}", diskType, ops, startingpos, isvalid, result);
return isvalid ? result : new ArrayList<Integer>();
}
/**
* This method will list all the counterparty disk position
* to be "absorbed" by that particular move. It is a aggregate
* method to check all possible operators. It is just to
* include all positions detected of all possible operators
* and return this list of position
*
* @param diskType
* @param chessboard
* @param startpos
* @return
*/
protected List<Integer> getListOfCoordinatesCanTurnDisk(char diskType, char[] chessboard, int startpos) {
// check disktype
if (!isValidDisk(diskType))
throw new IllegalArgumentException("not a valid disk");
// checking whether startpos is within range and is blank
if (startpos < 0 || startpos > 63) {
throw new IllegalArgumentException("startpos not in range!" + startpos + " not within 0 to 63 inclusively");
}
// checking target position is blank or not
if (chessboard[startpos] != getBlank()) {
throw new IllegalArgumentException("this position is not blank!");
}
List<Integer> result = new ArrayList<Integer>();
getAllDisplacementOps().forEach(op->{result.addAll(getListOfCoordinatesCanTurnDisk(
diskType, chessboard, op, startpos));});
logger.debug("result from getListOfCoordinatesCanTurnDisk: {}", result);
return result;
}
/**
* Check a particular position is possible for
* the diskType to make a move
*
* @param diskType
* @param chessboard
* @param startpos
* @return
*/
protected boolean isValidMove(char diskType, char[] chessboard, int startpos) {
try {
List<Integer> r = getListOfCoordinatesCanTurnDisk(diskType, chessboard, startpos);
logger.debug("isValidMove diskType: {} startpos: {} result: {}", diskType, startpos, r);
return !r.isEmpty();
}
catch (IllegalArgumentException e) {
logger.debug("invalid move", e);
return false;
}
}
/**
* This method will accept a list of positions to be updated
* in the chessboard based on diskType.
*
* @param chessboard
* @param diskType
* @param updatepos
* @return
*/
protected char[] updateChessBoard(char[] chessboard, char diskType, List<Integer> updatepos) {
updatepos.forEach(i->{chessboard[i] = diskType; });
return chessboard;
}
/**
* This is about returning a makeup string
* to render the chessboard.
* @param input
* @return
*/
protected String getChessBoardStr(char[] input) {
if (input == null) {
throw new IllegalArgumentException("chessboard null!");
}
if (input.length != 64) {
throw new IllegalArgumentException("chessboard length <> 64!");
}
StringBuilder str = new StringBuilder();
for (int i = 1; i <= 8; i++) {
str.append(i).append(' ');
for (int j = 0; j <= 7; j++) {
str.append(input[(i - 1) * 8 + j]);
}
str.append('\n');
}
// print foot row
str.append(" abcdefgh\n");
return str.toString();
}
/**
* Base on the noofround played to determine upcoming
* which diskType can move. 0,2,4.... for getdark()
* 1,3,5.... for getlight()
*
* @param noOfRoundsPlayed
* @return
*/
protected char getPlayerBasedOnRoundsPlayed(int noOfRoundsPlayed) {
if (noOfRoundsPlayed < 0)
throw new IllegalArgumentException("not accept negative");
return noOfRoundsPlayed % 2 == 0 ? getDark() : getLight();
}
/**
* This method go through the chessboard and see
* any positions can accept the diskType to make
* a move. If there is 1 possible move found,
* searching will stop and return the result as
* true. If no invalid move can be found even
* finish going through the chessboard, false
* will be returned.
*
* @param diskType
* @param chessboard
* @return
*/
protected boolean canValidMoveBeFound(char diskType, char[] chessboard) {
boolean isFound = false;
boolean isContinue = true;
int pos = -1;
for (int i = 0; i < 64 && isContinue; i++) {
if (isValidMove(diskType, chessboard, i)) {
isContinue = false;
isFound = true;
pos = i;
}
}
logger.debug("canValidMoveBeFound disk: {} valid pos: {}", diskType, pos);
return isFound;
}
/**
* Checking whether the current chessboard status
* is the game end status. Based on the no of rounds
* played, we can determine the diskType (dark/light)
* , then we can see any valid moves found for that
* disk type. If there is no, we will further check
* the counterparty disk has any valid move. If both
* cannot move, we will claim this is an end game
*
* @param chessboard
* @param currentRound
* @return
*/
protected boolean isEndGameDetected(char[] chessboard, int currentRound) {
char diskType = getPlayerBasedOnRoundsPlayed(currentRound);
return !canValidMoveBeFound(diskType, chessboard) && !canValidMoveBeFound(getCounterpartyDisk(diskType), chessboard);
}
/**
* Get disk counts on the chessboard
* Two values will be returned in an
* int[]. int[0] represents dark count.
* int[1] represents light count.
*
* @param chessboard
* @return
*/
protected int[] getDiskCounts(char[] chessboard) {
int darkc = 0;
int lightc = 0;
for (int i = 0; i < 64; i++) {
if (chessboard[i] == getDark()) darkc++;
if (chessboard[i] == getLight()) lightc++;
}
return new int[] {darkc, lightc};
}
/********** instance variables and public/non-mutable private methods ***************/
private char[] gamechessboard = null;
private int noofrounds = 0;
private long sleeptimeperround = 1000;
private List<String> stepsGoneThrough = new ArrayList<String>();
private boolean isEndGame = false;
public Othello(long sleeptimeperround) {
this.gamechessboard = this.initChessBoard();
this.sleeptimeperround = sleeptimeperround;
}
public Othello() {
this(0);
}
public boolean isEndGame() { return isEndGame; }
public int getNoOfRoundsPlayed() { return noofrounds; }
public char getPlayer() {
return getPlayerBasedOnRoundsPlayed(getNoOfRoundsPlayed());
}
public int[] getDiskCounts() {
return this.getDiskCounts(gamechessboard);
}
public List<String> getStepsGoneThrough() {
// return a immutable list rather
// than a list reference to
// external caller
return Arrays.asList(
stepsGoneThrough.toArray(
new String[stepsGoneThrough.size()]));
}
public String getChessBoardStr() {
return this.getChessBoardStr(gamechessboard);
}
/**
* There is a playing single round game
* @param step
*/
public void playGameSingleRound(String step) {
prePlayGame();
playGameCore(step);
postPlayGame();
}
private void prePlayGame() {
}
private void postPlayGame() {
boolean isCurrentEndGame = isEndGameDetected(gamechessboard, noofrounds);
if (isCurrentEndGame)
isEndGame = isCurrentEndGame;
if (isEndGame) throw new GameIsOverException();
try {
Thread.sleep(sleeptimeperround);
}
catch (InterruptedException e) {
logger.warn("sleep interrupted",e);
}
}
private void playGameCore(String step) {
logger.info("Step: {} is progress...", step);
if (isEndGame()) {
throw new GameIsOverException();
}
if (this.isPassBackRequest(step)) {
// add 1 more round
noofrounds++;
// as pass pack is a sign of no valid move
stepsGoneThrough.add(step);
} else {
try {
// get the startpos request
int startpos = convertStrCoordinates2Int(step);
// get disk type
char diskType = getPlayerBasedOnRoundsPlayed(noofrounds);
// get affecteddiskpos
List<Integer> affecteddiskpos= getListOfCoordinatesCanTurnDisk(diskType, gamechessboard, startpos);
logger.info("noofroundplayed: {} diskType: {} step: {} startpos: {} affecteddiskpos: {}", noofrounds, diskType, step, startpos, affecteddiskpos);
// check this move has affected disk position
if (affecteddiskpos.isEmpty()) {
throw new IllegalArgumentException("this move involves no counterparty disk pos affected!");
}
// for updating chessboard, include the position to be moved
affecteddiskpos.add(startpos);
// update the chessboard
this.updateChessBoard(gamechessboard, diskType, affecteddiskpos);
// update rounds and step gone thru
noofrounds++;
stepsGoneThrough.add(step);
}
catch (IllegalArgumentException e) {
//as this move is invalid, we did not
//increment noofrounds and record
//step
throw new InvalidMoveException(e);
}
}
}
public void playGame(String inputSteps) {
this.playGame(inputSteps, System.out, true);
}
/**
* The entry to play games in
* batch mode
* @param inputSteps
* @param out
* @parem isPrintRequired
*/
public void playGame(String inputSteps, PrintStream out, boolean isPrintRequired ) {
try {
Arrays.asList(inputSteps.split(",")).forEach(
step -> {
String step2 = step.trim().toLowerCase();
this.playGameSingleRound(step2);
if (isPrintRequired) {
out.printf("Step: %s\n", step);
out.printf("--------------\n%s\n", this.getChessBoardStr());
}
}
);
} catch (RuntimeException re) {
logger.error("issue found during running through the steps...", re);
throw re;
}
}
}
| abd0822d535cbe9ad0a155dbacc5b5650bc4e2cb | [
"Markdown",
"Java",
"Shell"
] | 10 | Java | richardchankiyin/reversi | 55a9c728de40ebd788e4465e2a3e9fcc677f0109 | 746504b61e427b845535237ac1f5457af3e9ee25 |
refs/heads/main | <repo_name>marinap81/FizzBuzz<file_sep>/Program.cs
using System;
namespace fizzbuzz
{
class Program
{
static void Main(string[] args)
{
for (int i = 1; i <= 100; i = i + 1)
{
int mod3 = i % 3; // same as i divided by 3 but give me just the numbers after the decimal, % means modulus
int mod5 = i % 5;
if ( mod3 == 0 && mod5 == 0 )
{
Console.WriteLine("FizzBuzz");
}
else if ( mod3 == 0 ) // When there ir no remainder (ie. 9/3 = 3.0 ) there is a zero after the decimal, so print Fizz.
{
Console.WriteLine("Fizz");
}
else if ( mod5 == 0 )
{
Console.WriteLine("Buzz");
}
else
{
Console.WriteLine(i);
}
}
}
}
}
| 0c6bc82beac9ef51c44acc84db103b2bf714000b | [
"C#"
] | 1 | C# | marinap81/FizzBuzz | c44cf85224b1f815cf92e5ec08de9b3c0a7c011a | c225a35fd2195a8f94ef1e4c7288dbffa14d4915 |
refs/heads/master | <file_sep>phpmailer-phar
==============
Based On https://codeload.github.com/Synchro/PHPMailer/zip/master
<file_sep><?php
/**
* User : Nikita.Makarov
* Date : 3/28/14
* Time : 7:32 PM
* E-Mail: <EMAIL>
*/
$library_path = implode(DIRECTORY_SEPARATOR, array(dirname(dirname(__FILE__)), 'compiled')) . DIRECTORY_SEPARATOR . 'PHPMailer.';
if (extension_loaded('bz2')) {
require_once 'phar://' . $library_path . 'bz2';
echo 'BZ2 Loaded' . PHP_EOL;
} elseif (extension_loaded('zlib')) {
require_once 'phar://' . $library_path . 'gz';
echo 'GZ Loaded' . PHP_EOL;
} else {
require_once 'phar://' . $library_path . 'phar';
echo 'RAW Loaded' . PHP_EOL;
}
//Create a new PHPMailer instance
$mail = new PHPMailer();
//Set who the message is to be sent from
$mail->setFrom('<EMAIL>', 'First Last');
//Set an alternative reply-to address
$mail->addReplyTo('<EMAIL>', 'First Last');
//Set who the message is to be sent to
$mail->addAddress('<EMAIL>', '<NAME>');
//Set the subject line
$mail->Subject = 'PHPMailer mail() test';
//Read an HTML message body from an external file, convert referenced images to embedded,
//convert HTML into a basic plain-text alternative body
$mail->msgHTML(file_get_contents('contents.html'), dirname(__FILE__));
//Replace the plain text body with one created manually
$mail->AltBody = 'This is a plain-text message body';
//Attach an image file
$mail->addAttachment('images/phpmailer_mini.png');
//send the message, check for errors
if (!$mail->send()) {
echo "Mailer Error: " . $mail->ErrorInfo;
} else {
echo "Message sent!";
} | b518b332c7bec2e64e593b7fcde2a0fa29a8db24 | [
"Markdown",
"PHP"
] | 2 | Markdown | inri13666/phar-phpmailer | f9ee258a3484f3041b0fa735492253f4c96e8fcb | c4834f4a206dcb30e053a0c52b09b36113655901 |
refs/heads/master | <repo_name>lnxglycyq1971/xxqg-helper<file_sep>/old_versions/xxqg_v3.0.2.js
"ui";
importClass(android.database.sqlite.SQLiteDatabase);
/**
* @Description: Auto.js xxqg-helper (6+6)+(6+6)+(1+1+2)+6=34分
* @version: 3.0.2
* @Author: Ivan
* @Date: 2020-1-5
*/
var aCount=8;//文章学习篇数
var vCount=7;//小视频学习个数
var cCount=2;//收藏+分享+评论次数
var aTime=90;//每篇文章学习-90秒 90*8=720秒=12分钟
var vTime=15;//每个小视频学习-16秒
var rTime=1080;//广播收听-18分钟
var commentText=["支持党,支持国家!","为实现中华民族伟大复兴而不懈奋斗!","紧跟党走,毫不动摇!","不忘初心,牢记使命","努力奋斗,报效祖国!"];//评论内容,可自行修改,大于5个字便计分
var aCatlog="推荐"//文章学习类别
var qCount=3;//挑战答题轮数
var lNum=5;//每轮答题数
/**
* @description: 延时函数
* @param: seconds-延迟秒数
* @return: null
*/
function delay(seconds)
{
sleep(1000*seconds);//sleep函数参数单位为毫秒所以乘1000
}
/**
* @description: 文章学习计时(弹窗)函数
* @param: n-文章标号 seconds-学习秒数
* @return: null
*/
function article_timing(n,seconds)
{
h=device.height;//屏幕高
w=device.width;//屏幕宽
x=(w/3)*2;
h1=(h/6)*5;
h2=(h/6);
for(var i=0;i<seconds;i++)
{
while(!textContains("欢迎发表你的观点").exists())//如果离开了文章界面则一直等待
{
console.error("当前已离开第"+(n+1)+"文章界面,请重新返回文章页面...");
delay(2);
}
if(i%5==0)//每5秒打印一次学习情况
{
console.info("第"+(n+1)+"篇文章已经学习"+(i+1)+"秒,剩余"+(seconds-i-1)+"秒!");
}
delay(1);
if(i%10==0)//每10秒滑动一次,如果android版本<7.0请将此滑动代码删除
{
toast("这是防息屏toast,请忽视-。-");
if(i<=seconds/2)
{
swipe(x,h1,x,h2,500);//向下滑动
}
else
{
swipe(x,h2,x,h1,500);//向上滑动
}
}
}
}
/**
* @description: 视频学习计时(弹窗)函数
* @param: n-视频标号 seconds-学习秒数
* @return: null
*/
function video_timing_bailing(n,seconds)
{
for(var i=0;i<seconds;i++)
{
while(!textContains("分享").exists())//如果离开了百灵小视频界面则一直等待
{
console.error("当前已离开第"+(n+1)+"个百灵小视频界面,请重新返回视频");
delay(2);
}
delay(1);
console.info("第"+(n+1)+"个小视频已经观看"+(i+1)+"秒,剩余"+(seconds-i-1)+"秒!");
}
}
/**
* @description: 新闻联播小视频学习计时(弹窗)函数
* @param: n-视频标号 seconds-学习秒数
* @return: null
*/
function video_timing_news(n,seconds)
{
for(var i=0;i<seconds;i++)
{
while(!textContains("欢迎发表你的观点").exists())//如果离开了百灵小视频界面则一直等待
{
console.error("当前已离开第"+(n+1)+"个新闻小视频界面,请重新返回视频");
delay(2);
}
delay(1);
console.info("第"+(n+1)+"个小视频已经观看"+(i+1)+"秒,剩余"+(seconds-i-1)+"秒!");
}
}
/**
* @description: 广播学习计时(弹窗)函数
* @param: r_time-已经收听的时间 seconds-学习秒数
* @return: null
*/
function radio_timing(r_time,seconds)
{
for(var i=0;i<seconds;i++)
{
delay(1);
if(i%5==0)//每5秒打印一次信息
{
console.info("广播已经收听"+(i+1+r_time)+"秒,剩余"+(seconds-i-1)+"秒!");
}
if(i%15==0)//每15秒弹一次窗防止息屏
{
toast("这是防息屏弹窗,可忽略-. -");
}
}
}
/**
* @description: 日期转字符串函数
* @param: y,m,d 日期数字 2019 1 1
* @return: s 日期字符串 "2019-xx-xx"
*/
function dateToString(y,m,d)
{
var year=y.toString();
if((m+1)<10){
var month="0"+(m+1).toString();
}
else{
var month=(m+1).toString();
}
if(d<10){
var day="0"+d.toString();
}
else{
var day=d.toString();
}
var s=year+"-"+month+"-"+day;//年-月-日
return s;
}
/**
* @description: 获取当天日期字符串函数
* @param: null
* @return: s 日期字符串 "2019-xx-xx"
*/
function getTodayDateString()
{
var date=new Date();
var y=date.getFullYear();
var m=date.getMonth();
var d=date.getDate();
var s=dateToString(y,m,d);//年-月-日
return s
}
/**
* @description: 获取昨天日期字符串函数
* @param: null
* @return: s 日期字符串 "2019-xx-xx"
*/
function getYestardayDateString()
{
var date=new Date();
date.setDate(date.getDate()-1);
var y=date.getFullYear();
var m=date.getMonth();
var d=date.getDate();
var s=dateToString(y,m,d);//年-月-日
return s
}
/**
* @description: 文章学习函数 (阅读文章+文章学习时长)---6+6=12分
* @param: null
* @return: null
*/
function articleStudy(aCount,aTime,cCount,aCatlog)
{
while(!desc("学习").exists());//等待加载出主页
desc("学习").click();//点击主页正下方的"学习"按钮
delay(2);
var listView=className("ListView");//获取文章ListView控件用于翻页
click(aCatlog);
delay(2);
var zt_flag=false;//判断进入专题界面标志
var fail=0;//点击失败次数
var date_string=getTodayDateString();//获取当天日期字符串
for(var i=0,t=0;i<aCount;)
{
if(click(date_string,t)==true)//如果点击成功则进入文章页面,不成功意味着本页已经到底,要翻页
{
let n=0;
while(!textContains("欢迎发表你的观点").exists())//如果没有找到评论框则认为没有进入文章界面,一直等待
{
delay(1);
console.warn("正在等待加载文章界面...");
if(n>3)//等待超过3秒则认为进入了专题界面,退出进下一篇文章
{
console.warn("没找到评论框!该界面非文章界面!");
zt_flag=true;
break;
}
n++;
}
if(desc("展开").exists())//如果存在“展开”则认为进入了文章栏中的视频界面需退出
{
console.warn("进入了视频界面,即将退出并进下一篇文章!");
t++;
back();
delay(1);
click("电台");
delay(1);
click("最近收听");
console.log("因为广播被打断,正在重新收听广播...");
delay(2);
back();
while(!desc("学习").exists());
desc("学习").click();
delay(2);
continue;
}
if(zt_flag==true)//进入专题页标志
{
console.warn("进入了专题界面,即将退出并进下一篇文章!")
t++;
back();
delay(2);
zt_flag=false;
continue;
}
console.log("正在学习第"+(i+1)+"篇文章...");
fail=0;//失败次数清0
article_timing(i,aTime);
if(i<cCount)//收藏分享2篇文章
{
CollectAndShare(i);//收藏+分享 若c运行到此报错请注释本行!
Comment(i);//评论
}
back();//返回主界面
while(!desc("学习").exists());//等待加载出主页
delay(1);
i++;
t++;//t为实际点击的文章控件在当前布局中的标号,和i不同,勿改动!
}
else
{
if(i==0)//如果第一次点击就没点击成功则认为首页无当天文章
{
date_string=getYestardayDateString();
console.warn("首页没有找到当天文章,即将学习昨日新闻!");
continue;
}
if(fail>3)//连续翻几页没有点击成功则认为今天的新闻还没出来,学习昨天的
{
date_string=getYestardayDateString();
console.warn("没有找到当天文章,即将学习昨日新闻!");
continue;
}
if(!textContains(date_string).exists())//当前页面当天新闻
{
fail++;//失败次数加一
}
listView.scrollForward();//向下滑动(翻页)
t=0;
delay(2);
}
}
}
/**
* @description: “百灵”小视频学习函数
* @param: vCount,vTime
* @return: null
*/
function videoStudy_bailing(vCount,vTime)
{
h=device.height;//屏幕高
w=device.width;//屏幕宽
x=(w/3)*2;//横坐标2分之3处
h1=(h/6)*5;//纵坐标6分之5处
h2=(h/6);//纵坐标6分之1处
click("百灵");
delay(2);
click("竖");
delay(2);
//gesture(500,[w/2,h/4],[w/2,h/3],[w/2,h/4]);//稍微滑动一下,防止检测
//delay(1);
var a=className("FrameLayout").depth(23).findOnce(0);//根据控件搜索视频框,但部分手机不适配,改用下面坐标点击
a.click();
//click((w/2)+random()*10,h/4);//坐标点击第一个视频
delay(1);
for(var i=0;i<vCount;i++)
{
console.log("正在观看第"+(i+1)+"个小视频");
video_timing_bailing(i,vTime);//观看每个小视频
if(i!=vCount-1){
swipe(x,h1,x,h2,500);//往下翻(纵坐标从5/6处滑到1/6处)
}
}
back();
delay(2);
}
/**
* @description:新闻联播小视频学习函数
* @param: vCount,vTime
* @return: null
*/
function videoStudy_news(vCount,vTime)
{
click("电视台");
delay(1.5)
click("联播频道");
delay(3);
var listView=className("ListView");//获取listView视频列表控件用于翻页
let s=getYestardayDateString();
let date=new Date();
let hour=date.getHours()
if(hour>=21){//晚上9点之后就能学习当天联播
s=getTodayDateString();
}
for(var i=0,t=1;i<vCount;)
{
if(click(s,t)==true)
{
console.log("即将学习第"+(i+1)+"个视频!");
video_timing_news(i,vTime);//学习每个新闻联播小片段
back();//返回联播频道界面
while(!desc("学习").exists());//等待加载出主页
delay(1);
i++;
t++;//t为实际点击的文章在listView控件中的标号,和i不同,勿改动!
}
else
{
listView.scrollForward();//翻页
delay(2);
t=4;
}
}
}
/**
* @description: 听“电台”新闻广播函数 (视听学习+视听学习时长)---6+6=12分
* @param: null
* @return: null
*/
function listenToRadio()
{
click("电台");
delay(2);
click("听新闻广播");
delay(2);
click("推荐收听");
console.log("正在收听“中国之声”广播...");
delay(2);
back();//返回电台界面
}
/**
* @description: 收藏加分享函数 (收藏+分享)---1+1=2分
* @param: i-文章标号
* @return: null
*/
function CollectAndShare(i)
{
while(!textContains("欢迎发表你的观点").exists())//如果没有找到评论框则认为没有进入文章界面,一直等待
{
delay(1);
console.log("等待进入文章界面")
}
console.log("正在进行第"+(i+1)+"次收藏和分享...");
var textOrder=text("欢迎发表你的观点").findOnce().drawingOrder();
var collectOrder=textOrder+2;
var shareOrder=textOrder+3;
var collectIcon=className("ImageView").filter(function(iv){
return iv.drawingOrder()==collectOrder;
}).findOnce();
var shareIcon=className("ImageView").filter(function(iv){
return iv.drawingOrder()==shareOrder;
}).findOnce();
//var collectIcon = classNameContains("ImageView").depth(10).findOnce(0);//右下角收藏按钮
collectIcon.click();//点击收藏
console.info("收藏成功!");
delay(1);
//var shareIcon = classNameContains("ImageView").depth(10).findOnce(1);//右下角分享按钮
shareIcon.click();//点击分享
while(!textContains("分享到学习强").exists());//等待弹出分享选项界面
delay(1);
click("分享到学习强国");
delay(2);
console.info("分享成功!");
back();//返回文章界面
delay(1);
collectIcon.click();//再次点击,取消收藏
console.info("取消收藏!");
delay(1);
}
/**
* @description: 评论函数---2分
* @param: i-文章标号
* @return: null
*/
function Comment(i)
{
while(!textContains("欢迎发表你的观点").exists())//如果没有找到评论框则认为没有进入文章界面,一直等待
{
delay(1);
console.log("等待进入文章界面")
}
click("欢迎发表你的观点");//单击评论框
console.log("正在进行第"+(i+1)+"次评论...");
delay(1);
var num=random(0,commentText.length-1)//随机数
setText(commentText[num]);//输入评论内容
delay(1);
click("发布");//点击右上角发布按钮
console.info("评论成功!");
delay(2);
click("删除");//删除该评论
delay(2);
click("确认");//确认删除
console.info("评论删除成功!");
delay(1);
}
/**
* @description: 启动app
* @param: null
* @return: null
*/
function start_app()
{
console.setPosition(0,device.height/4);//部分华为手机console有bug请注释本行
console.show();//部分华为手机console有bug请注释本行
console.log("正在启动app...");
if(!launchApp("学习强国"))//启动学习强国app
{
console.error("找不到学习强国App!");
return;
}
while(!desc("学习").exists())
{
console.log("正在等待加载出主页");
delay(1);
}
delay(1);
}
//主函数
function main(aCount,aTime,vCount,vTime,rTime,cCount,aCatlog,qCount)
{
start_app();//启动app
var start=new Date().getTime();//程序开始时间
challengeQuestion(qCount);//挑战答题
videoStudy_news(vCount,vTime);//看小视频
listenToRadio();//听电台广播
var r_start=new Date().getTime();//广播开始时间
articleStudy(aCount,aTime,cCount,aCatlog);//学习文章,包含点赞、分享和评论
listenToRadio();//继续听电台
var end=new Date().getTime();//广播结束时间
var radio_time=(parseInt((end-r_start)/1000));//广播已经收听的时间
radio_timing(parseInt((end-r_start)/1000),rTime-radio_time);//广播剩余需收听时间
end=new Date().getTime();
console.log("运行结束,共耗时"+(parseInt(end-start))/1000+"秒");
}
/********************************************UI部分***********************************************/
auto.waitFor();//等待获取无障碍辅助权限
ui.layout(
<vertical>
<text textSize="16sp" textColor="red" text="欢迎使用xxqg-helper!"/>
<button id="all" h="80" text="完整运行"/>
<button id="article" text="只阅读文章(含收藏分享)"/>
<button id="vr" text="只看视频和听广播"/>
<button id="csc" text="只收藏分享评论"/>
<button id="cq" text="挑战答题"/>
<button id="stop" text="停止运行"/>
<horizontal>
<text textSize="16sp" textColor="black" text="文章数量(个):"/>
<input id="acount" w="40" text=""/>
<text textSize="16sp" textColor="black" text="视频数量(个):"/>
<input id="vcount" w="40" text=""/>
</horizontal>
<horizontal>
<text textSize="16sp" textColor="black" text="文章时长(秒):"/>
<input id="atime" w="40" text=""/>
<text textSize="16sp" textColor="black" text="视频时长(秒):"/>
<input id="vtime" w="40" text=""/>
</horizontal>
<horizontal>
<text textSize="16sp" textColor="black" text="广播收听总时长(秒):"/>
<input id="rtime" text=""/>
</horizontal>
<horizontal>
<text textSize="16sp" textColor="black" text="文章学习类别:"/>
<input id="acatlog" text=""/>
</horizontal>
<horizontal>
<text textSize="16sp" textColor="black" text="挑战答题轮数(一轮5题):"/>
<input id="qcount" text=""/>
</horizontal>
<button w="200" layout_gravity="center" id="about" text="关于本助手"/>
</vertical>
);
ui.acount.setText(aCount.toString());
ui.vcount.setText(vCount.toString());
ui.atime.setText(aTime.toString());
ui.vtime.setText(vTime.toString());
ui.rtime.setText(rTime.toString());
ui.acatlog.setText(aCatlog.toString());
ui.qcount.setText(qCount.toString());
var thread=null;
ui.all.click(function(){
if(thread!=null && thread.isAlive()){
alert("注意!","当前程序正在运行,请结束之前进程");
return;
}
toast("开始完整运行");
thread=threads.start(function(){
aCount=ui.acount.getText()
vCount=ui.vcount.getText()
aTime=ui.atime.getText()
vTime=ui.vtime.getText()
rTime=ui.rtime.getText()
aCatlog=ui.acatlog.getText()
qCount=ui.qcount.getText()
main(aCount,aTime,vCount,vTime,rTime,cCount,aCatlog,qCount);
});
});
ui.article.click(function(){
if(thread!=null && thread.isAlive()){
alert("注意!","当前程序正在运行,请结束之前进程");
return;
}
toast("开始看文章");
thread=threads.start(function(){
start_app();
aCount=ui.acount.getText()
aTime=ui.atime.getText()
aCatlog=ui.acatlog.getText()
articleStudy(aCount,aTime,cCount,aCatlog);
});
});
ui.vr.click(function(){
if(thread!=null && thread.isAlive()){
alert("注意!","当前程序正在运行,请结束之前进程");
return;
}
toast("开始看视频和听广播");
thread=threads.start(function(){
start_app();
vCount=ui.vcount.getText()
vTime=ui.vtime.getText()
rTime=ui.rtime.getText()
videoStudy_news(vCount,vTime);
listenToRadio();
radio_timing(0,rTime);
});
});
ui.csc.click(function(){
if(thread!=null && thread.isAlive()){
alert("注意!","当前程序正在运行,请结束之前进程");
return;
}
thread=threads.start(function(){
start_app();
for(let i=0;i<cCount;i++)//收藏分享2篇文章
{
CollectAndShare(i);//收藏+分享
Comment(i);//评论
}
console.hide()
});
});
ui.cq.click(function(){
if(thread!=null && thread.isAlive()){
alert("注意!","当前程序正在运行,请结束之前进程");
return;
}
thread=threads.start(function(){
qCount=ui.qcount.getText()
start_app();
challengeQuestion(qCount);
});
});
ui.stop.click(function(){
if(thread!=null && thread.isAlive()){
threads.shutDownAll();
toast("已停止运行!")
console.hide();
}
else{
toast("当前没有线程在运行!")
}
});
ui.about.click(function(){
alert("xxqg-helper","本脚本只可用于个人学习Auto.js,不得用于一切商业或违法用途,否则追究责任!造成的后果自负!");
});
/*************************************************答题部分********************************************************/
/**
* @description: 从数据库中搜索答案
* @param: question 问题
* @return: answer 答案
*/
function getAnswer(question)
{
var dbName="tiku.db";
var path=files.path(dbName);
if (!files.exists(path)) {
//files.createWithDirs(path);
console.error("未找到题库!请将题库放置与js同一目录下");
return '';
}
var db = SQLiteDatabase.openOrCreateDatabase(path, null);
sql = "SELECT answer FROM tiku WHERE question LIKE '" + question + "%'"
var cursor = db.rawQuery(sql, null);
if(cursor.moveToFirst()){
var answer=cursor.getString(0);
cursor.close()
return answer;
}
else{
console.error("题库中未找到答案");
cursor.close();
return '';
}
}
function indexFromChar(str) {
return str.charCodeAt(0) - "A".charCodeAt(0);
}
/**
* @description: 每次答题循环
* @param: conNum 连续答对的次数
* @return: null
*/
function challengeQuestionLoop(conNum)
{
if(conNum>=lNum)//答题次数足够退出,每轮5次
{
let listArray = className("ListView").findOnce().children();//题目选项列表
let i=random(0,listArray.length-1);
console.log("次数足够,随机点击一个答错退出");
listArray[i].child(0).click();//随意点击一个答案
console.log("-----------------------------------------------------------");
return;
}
if (className("ListView").exists()){
var question = className("ListView").findOnce().parent().child(0).desc();
console.log((conNum+1).toString()+".题目:"+question);
}
else{
console.error("提取题目失败!");
let listArray = className("ListView").findOnce().children();//题目选项列表
let i=random(0,listArray.length-1);
console.log("随机点击一个");
listArray[i].child(0).click();//随意点击一个答案
return;
}
var chutiIndex = question.lastIndexOf("出题单位");
if (chutiIndex != -1) {
question = question.substring(0, chutiIndex - 2);
}
question = question.replace(/\s/g, "");
var options=[];//选项列表
if (className("ListView").exists()) {
className("ListView").findOne().children().forEach(child => {
var answer_q = child.child(0).child(1).desc();
options.push(answer_q);
});
} else {
console.error("答案获取失败!");
return;
}
var answer=getAnswer(question);
console.info("答案:"+answer);
if (/^[a-zA-Z]{1}$/.test(answer)) {//如果为ABCD形式
var indexAnsTiku = indexFromChar(answer.toUpperCase());
answer = options[indexAnsTiku];
toastLog("answer from char=" + answer);
}
let hasClicked=false;
let listArray = className("ListView").findOnce().children();//题目选项列表
if(answer=="")//如果没找到答案
{
let i=random(0,listArray.length-1);
console.error("没有找到答案,随机点击一个");
listArray[i].child(0).click();//随意点击一个答案
hasClicked=true;
console.log("-----------------------------------------------------------");
}
else//如果找到了答案
{
listArray.forEach(item => {
var listDescStr = item.child(0).child(1).desc();
if (listDescStr == answer) {
item.child(0).click();//点击答案
hasClicked=true;
console.log("-----------------------------------------------------------");
}
});
}
if(!hasClicked)//如果没有点击成功
{
console.error("未能成功点击,随机点击一个");
let i=random(0,listArray.length-1);
listArray[i].child(0).click();//随意点击一个答案
console.log("-----------------------------------------------------------");
}
}
/**
* @description: 挑战答题
* @param: qCount 轮数
* @return: null
*/
function challengeQuestion(qCount)
{
click("我的");
delay(1.5);
click("我要答题");
delay(1.5);
desc("挑战答题").click();
delay(4.5);
let conNum=0;// 连续答对的次数
let qNum=1;// 轮数
while (true) {
challengeQuestionLoop(conNum);
delay(3);
if(desc("结束本局").exists())// 答错了
{
if(qNum>=qCount && conNum>=lNum){
back();delay(1);
back();delay(1);
back();delay(1);
break;
}
else{
console.log("等10秒开始下一轮")
delay(10);// 等待10秒才能开始下一轮
desc("结束本局").click();
delay(2);
desc("挑战答题").click();
delay(4);
}
qNum++;
conNum=0;
console.warn("第"+qNum.toString()+"轮开始...")
}
else// 答对了
{
conNum++;
}
}
console.log("挑战答题结束!");
}<file_sep>/README.md
# 公告
* 本助手只供个人**学习Auto.js**使用,不得**传播**和用于**违法或商业用途**,否则造成的一切**后果自负!**
* 为了方便使用,本项目没有分模块,所有代码都在一个js文件中
# 注意事项
* 1.文章根据日期抓取与别的界面混淆问题尚未解决,有好的方案请自行修改或建议
* 2.**华为**等部分手机`console`不支持,如报错中含有`console`关键字请将`start_app()`函数中关于`console`的函数删除
* 3.请尽量更新auto.js版本至**4.0.0beta或 4.0.1beta**,否则部分手机会有兼容性问题
* 4.尽量**不要在凌晨运行**,凌晨主页当天新闻没有刷新,**早上9-10点之后运行**,当天的文章会出来很多
* 5.运行时请保持**网络畅通**,建议在**WIFI**状态下使用,否则中途加载页面或控件过慢会报错
# 使用方式
* 下载Auto.js 4.0.0版本apk并安装
* 打开Auto.js导入最新版xxqg.js文件
* 将**tiku.db**数据库文件放在和js脚本**同一目录下**,通常情况为手机根目录的“**脚本**”文件夹下
* 点击右上角**运行**按钮运行(运行时会提示打开无障碍模式)
# 特别感谢
[lgpersonal](https://github.com/lgpersonal/LazyStudy)
# 更新日志
## v3.1.0
* 新增每日答题,修复联播新闻乱串bug,但文章有时仍会乱串
## v3.0.1
* 修复跨年日期错误bug
## v3.0.0
* 新增挑战答题,修复联播视频问题
## v2.8beta2
* 小视频改回新闻联播
## v2.8beta1
* 新增UI界面,可方便自行修改参数
* 修复了一些问题
## v2.7beta3
* 更新了学习步骤:百灵小视频->电台+文章->电台,广播和文章同时进行,大幅缩短时间。
* 新增控制台`console`打印学习进程,之前的`toast`弃用
* 现在凌晨也能学习,找不到当天新闻自动学习昨日新闻
* 新增页面检测,意外情况离开页面会有提示并停止计时,返回界面继续计时
* 修复文章界面有时会加载视频的情况
## v2.6
* 巨大更新,文章学习根据当天日期抓取当天的文章,不再重复学习昨天的文章!
* 修复了某些情况下由于个别手机加载速度慢导致进入文章页抓取不到页面秒退的情况
## v2.5.1
* 修复新闻进入“专题”一栏无法跳出bug
* “电视台”改为“zhongyang广播电视总台”
## v2.5
* app又换了布局导致按钮控件不能用了(无奈),这次又修改了控件抓取,收藏分享评论又能用了
* 评论随机,评论过后删除
* 学习文章时滚动,学习时间随机上下波动10秒
* 分享改为app内分享,不用打开微信
## v2.4
* 新增评论功能,可自行修改commentText评论内容
* 将点赞与分享整合进前两篇文章学习过程中,节约了一定时间,不再视频学习完之后单独点赞分享
## v2.3
* 更新了视频学习逻辑,延长第一个视频(30分钟新闻正片)的学习时间,缩短了下面小新闻片段的学习数量和时间,分数更加准确
* 新增总运行时间统计
## v2.2
* 因为最新版app更换了页面布局,所以更改了按钮控件的抓取
## v2.1
* 新增弹窗函数,防止部分手机息屏
* 新增延时函数,单位由之前毫秒统一为秒
## v2.0
* 基于控件点击,不再基于屏幕坐标点击,更具有通用性
* 新增收藏和微信分享(2分)
* 修复若干bug
* “视听学习”更改为“电视台”
# 可修改自定义变量
* `aCount`文章学习篇数,`vCount`小视频学习个数,`aTime`每篇文章学习时长(秒),`vTime`每个小视频学习时长(秒),`rTime`广播收听时长(秒), `cCount`收藏和分享次数,`commentText`评论内容,`aCatlog`文章学习类别,`lCount`挑战答题轮数,`qCount`每轮答题数,`dlCount`每日答题轮数
# xxqg-helper
* Auto.js xxqg-helper,文章和视频(24分)、收藏和分享(2分)、评论(2分)、挑战答题(6分)、每日答题(6分)
* 仅限Android系统,需下载auto.js,手机需开启**无障碍模式**
* Android版本至少在5.0之上,最好**7.0之上**,7.0以下**滑动**等函数不能用
* 测试环境:小米MIX 2S, MIUI 11, Auto.js V4.0.0beta
| fef918a66a2ae1591f2ffd43895c9ae19a0052b7 | [
"JavaScript",
"Markdown"
] | 2 | JavaScript | lnxglycyq1971/xxqg-helper | 3caa01ca2c92421f28886434dc32549f8bcb7d75 | 1474d37ea42f4d97a88c1fa76670cee87dd296e2 |
refs/heads/master | <file_sep>
<form method='post'>
<label>Username</label><br>
<input type='text' name='user'><br>
<label>Password</label><br>
<input type='<PASSWORD>' name='pass'><br>
<input type='submit'>
</form>
<?php
if(isset($_POST['user'])) {
if($_POST['user']=='host' && $_POST['pass']=='<PASSWORD>') { ?>
<div>Login Successful :)</div><br>
<?php } elseif ($_POST['user']!='host' && $_POST['pass']!='<PASSWORD>') { ?>
<div>Login Unsuccessful :(</div><br>
<?php }}
?>
<file_sep># comp3134Winter2020
I love coffee! :coffee:
<file_sep><?php
session_start();
$_SESSION["confirmation"] = rand(0,1000);
?>
<html>
<body>
<form method="POST" action="csfr_action.php">
<input type="text" name= "user" value="host"/>
<input type="password" name="pass" value="<PASSWORD>"/>
<input type="submit" name="submit" id="submit"/>
<input type=hidden name=confirmation value=<?php echo $_SESSION['confirmation']?>>
</body>
</html>
<file_sep><form method="GET">
<input type="text" name="name">
<input type="submit" value="submit" name="submit">
</form>
<?php
$servername = "localhost";
$username = "nash";
$password = "<PASSWORD>";
$myDB = "comp3134";
$connection = new mysqli($servername, $username, $password, $myDB);
$return;
if(isset($_GET['name'])) {
$searchinput = $_GET['name']
$sqlquery = "SELECT * FROM ‘users’ WHERE firstname='".$searchinput."' AND active='1'";
$return = $connection->query($sqlquery);
}
if ($return->num_rows > 0) { ?>
<table>
<tr>
<th>Id</th>
<th>Username</th>
<th>First Name</th>
<th>Last Name</th>
<th>Email</th>
<th>Active</th>
</tr>
<?php
while($row = $return->fetch_assoc()){?>
<tr>
<td><?php echo $row['id'];?></td>
<td><?php echo $row['username'];?></td>
<td><?php echo $row['firstname'];?></td>
<td><?php echo $row['lastname'];?></td>
<td><?php echo $row['email'];?></td>
<td><?php echo $row['active'];?></td>
<tr>
<?php}
}
else{
echo "No Results Found";
}
$connection->close();
?>
| 8574ecc7563ecb105fc66b0ffb57ffd1d27ec32d | [
"Markdown",
"PHP"
] | 4 | PHP | nashman100/comp3134Winter2020 | 14b44945748458db60b7e60b79b9f10c8718d73e | ceb15e4ec9bd9536ed3ea71a02d25fb4c1d0fff9 |
refs/heads/master | <file_sep>class CreateUserInfos < ActiveRecord::Migration[5.2]
def change
create_table :user_infos do |t|
t.belongs_to :user
t.string :scenes
t.string :topic
t.string :input_data
t.timestamp :inserted_at
t.timestamps
end
end
end
<file_sep>class CourseTopicsController < ApplicationController
layout 'admin/layouts/admin'
def index
@courses = Course.all.order("id") #搜尋所有情境
end
def show
@course_topics = CourseTopic.where(:course_id => params[:id]).order("number") #搜尋所有課程,條件是該情境的課程
@course_id = params[:id]
@new_course_topic = CourseTopic.new #新增課程
end
def create
course = Course.find(params[:course_id])
course_id = course.id
audio = params[:audio]
if audio
audio_url = save_file(audio, course_id)
end
course_topic = CourseTopic.create({
course_id: params[:course_id],
number: params[:topic_id],
eng_topic: params[:eng_topic],
chi_topic: params[:chi_topic]
})
if course_topic.valid?
redirect_to course_topic_path(params[:course_id])
return
end
end
def update
course = Course.find(params[:course_id])
course_id = course.id
audio = params[:audio]
if audio
audio_url = save_file(audio, course_id)
end
edit_course_topic = CourseTopic.find_by(id: params[:id]) #透過表單 action 裡面的 id 搜尋資料表中對應的課程
if edit_course_topic.update(course_topic_permit)
redirect_to course_topic_path(params[:course_id])
return
end
end
def destroy
course_topic = CourseTopic.find(params[:id])
course_topic.destroy
course_id = course_topic.course.id #抓搜尋到的 course_topic 所屬的 course 的 id
redirect_to course_topic_path(course_id) #利用上面抓到的 course_id 返回該頁面
return
end
private
def course_topic_permit
params.permit([:number, :eng_topic, :chi_topic]) #[裡面的欄位名稱是資料表裡面的欄位名稱,不是表單的名稱]
end
def save_file(newFile, course_id)
dir_url = Rails.root.join('public', "data/#{course_id}/LS/PAUL") #音檔路徑位置
FileUtils.mkdir_p(dir_url) unless File.directory?(dir_url) #如果沒有該路徑,用mkdir_p 建立路徑, 如果路徑存在則不須建立
file_url = dir_url + newFile.original_filename #file_url = 路徑/檔案名稱
File.open(file_url, 'w+b') do |file| #開啟檔案或寫入檔案
file.write(newFile.read)
end
return "data/#{course_id}/LS/PAUL/" + newFile.original_filename
end
end
<file_sep>class UserInfo < ApplicationRecord
belongs_to :user
validates :user_id, :scenes, :topic, :input_data, presence: true
end
<file_sep>require 'test_helper'
class CourseTopicsControllerTest < ActionDispatch::IntegrationTest
# test "the truth" do
# assert true
# end
end
<file_sep>class AdminController < ApplicationController
layout 'admin/layouts/admin'
def index #Dashboard頁面
@recent_log_in_users = User.order(current_sign_in_at: :desc) #搜尋最近登入 User 使用 Desc 排序
log_in_user = User.where(current_sign_in_at: Date.current.to_time.all_day) #搜尋 User登入時間是否符合今天日期
@today_log_in_users = log_in_user.count #計算今天登入的 User數量
practice = UserInfo.where(inserted_at: Date.current.to_time.all_day) #搜尋當天日期的練習量
@today_practice_count = practice.count #今日練習量
end
def user_manage #用戶管理頁面
@users = User.all #搜尋所有 User
@edit_user = User.first #後台按下編輯按鈕尋找 User
end
def user_response #學生作答紀錄
@user_response = User.find_by_sql("select * from users inner join user_infos on users.id = user_infos.user_id order by inserted_at desc") #搜尋 User join UserInfo
end
def click_rates #點擊率頁面
@users = Ctr.find_by_sql("select distinct users.id, users.name from users inner join ctrs on users.id = ctrs.user_id")
@courses = Course.select(:name, :id).order(:id).distinct
@array1 = []
@array2 = []
@i = 0
@users.each_with_index do |users|
@array1.push(users.name)
@courses.each_with_index do |courses|
click_rates_count = Ctr.where(:user_id => users.id).where(:scenes => courses.name).count
@array1.push(click_rates_count)
end
@array2.push(@array1)
@array1 = []
end
end
def user_activity
@users = User.where(:role => 1) #只記錄學生登入情況
end
end
<file_sep>class User < ApplicationRecord
# Include default devise modules. Others available are:
# :confirmable, :lockable, :timeoutable, :trackable and :omniauthable
devise :database_authenticatable, :registerable,
:recoverable, :rememberable, :validatable,
:confirmable, :trackable
validates :name, :student_class, :role, presence: true
enum role: [:guest, :student, :admin]
mount_uploader :avator, CoverImageUploader
has_many :user_infos
protected
# 這段程式碼的用意是在資料表可以看見current_sign_in_at這些欄位,但是在 rails console裡面看不到
# 所以加上這段程式碼可以在 rails console 裡面看到這些欄位
# 但是真正在執行的時候必須要註解掉,不然會報錯
# def serializable_hash(options = nil)
# super(options).merge(current_sign_in_at: current_sign_in_at, last_sign_in_at: last_sign_in_at) # you can keep adding attributes here that you wish to expose
# end
end
<file_sep>class AddUserProfileClassnameAndRole < ActiveRecord::Migration[5.2]
def change
add_column :users, :student_class, :string
add_column :users, :role, :integer, default: 0, null: false
end
end
<file_sep>class UserController < ApplicationController
def update
user = User.find_by(id: params[:id])
if user.update(user_edit_permit)
redirect_to user_manage_admin_index_path
end
end
def destroy
user = User.find(params[:id])
user.destroy
flash[:notice] = "成功刪除!!"
redirect_to user_manage_admin_index_path
return
end
private
def user_edit_permit
params.require(:user).permit([:name, :student_class, :email, :role]) #[裡面的欄位名稱是資料表裡面的欄位名稱,不是表單的名稱]
end
end
<file_sep>class CreateYellows < ActiveRecord::Migration[5.2]
def change
create_table :yellows do |t|
t.text :Verb
t.text :Noun
t.text :Adjective
t.text :Adverb
t.string :Count
t.timestamps
end
end
end
<file_sep>class CtrsController < ApplicationController
def create
click_rates = Ctr.create({
user_id: current_user.id,
scenes: params[:ctr][:scenes],
inserted_at: Time.zone.now
})
end
end
<file_sep>class Yellow < ApplicationRecord
end
<file_sep>Rails.application.routes.draw do
mount RailsAdmin::Engine => '/ncut-admin', as: 'rails_admin'
devise_for :users, controllers: {
registrations: 'users/registrations',
sessions: 'users/sessions',
confirmations: 'users/confirmations',
passwords: '<PASSWORD>',
# omniauth_callbacks: "users/omniauth_callbacks",
unlocks: 'users/unlocks'
}
# For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html
root "home#index"
resources :flashes
resources :user_infos
resources :admin do
collection do
get :user_manage
get :user_response
get :click_rates
get :user_activity
resources :courses
resources :course_topics
resources :yellow
end
end
resources :user
resources :ctrs
end
<file_sep>class QuizScore < ApplicationRecord
validates_numericality_of :user_id, greater_than_or_equal_to: 1
validates_numericality_of :score, greater_than_or_equal_to: 0
validates_numericality_of :use_time, greater_than: 1
end
<file_sep>class UserInfosController < ApplicationController
def index #前台檢視自己資料頁面
@user_data = UserInfo.where(:user_id => current_user.id)
end
def create
@user_info = UserInfo.create({ #學生填完答案後按繳交題目新增一筆資料
user_id: current_user.id,
scenes: params[:user_info][:scenes],
topic: params[:user_info][:topic],
input_data: params[:user_info][:input_data],
inserted_at: Time.zone.now
})
if @user_info.valid? #驗證寫入資料是否成功
count = params[:user_info][:count].to_i #用表單從flashes#show傳過來的題目總數量
url_topic_id = params[:user_info][:topic].to_i + 1 #繳交題目後跳至下一題
if url_topic_id > count #如果題目是最後一題的話,就不能再 +1
url_topic_id -= 1
end
redirect_to "http://localhost:3000/flashes/#{params[:user_info][:scenes_id]}?page=#{url_topic_id}"
else
redirect_to "http://localhost:3000/flashes/#{params[:user_info][:scenes_id]}?page=#{params[:user_info][:topic]}" #驗證不成功顯示錯誤訊息並導回同一題
return
end
end
end
<file_sep>class CourseTopic < ApplicationRecord
belongs_to :course
validates_numericality_of :course_id, greater_than_or_equal_to: 1
validates_numericality_of :number, greater_than_or_equal_to: 0
validates :eng_topic, :chi_topic, presence: true
end
<file_sep>class Ctr < ApplicationRecord
validates :user_id, :scenes, :inserted_at, presence: true
validates_numericality_of :user_id, greater_than_or_equal_to: 1
end
<file_sep>class YellowController < ApplicationController
layout 'admin/layouts/admin'
def index
@yellows = Yellow.all
end
def edit
@yellow = Yellow.find_by_id(params[:id])
end
def create #新增Yellow詞彙
count = 0
unless params[:Verb].blank?
count += 1
end
unless params[:Noun].blank?
count += 1
end
unless params[:Adjective].blank?
count += 1
end
unless params[:Adverb].blank?
count += 1
end
yellow = Yellow.create(yellow_permit.merge({Count: count}))
if yellow.valid?
redirect_to action: :index
return
end
end
def update
yellow = Yellow.find(params[:id])
compare_count = 0 #用來比對count是否有增減
count = params[:Count].to_i #原本的Count數量
unless params[:Verb].blank?
compare_count += 1
end
unless params[:Noun].blank?
compare_count += 1
end
unless params[:Adjective].blank?
compare_count += 1
end
unless params[:Adverb].blank?
compare_count += 1
end
if count > compare_count
compare_total = count - compare_count #比對出來差多少 ex. 差1或差2
count -= compare_total #Count要減去差的數量
elsif count < compare_count
compare_total = compare_count - count #比對出來差多少 ex. 多1或多2
count += compare_total #Count要加上差的數量
end
if yellow.update(yellow_permit.merge({Count: count}))
redirect_to action: :index
return
end
end
private
def yellow_permit
params.permit([:Verb, :Noun, :Adjective, :Adverb])
end
end
<file_sep>class HomeController < ApplicationController
def index
@users = User.count #註冊的會員數量
@courses = Course.count #課程數量
practice = UserInfo.where(inserted_at: Date.current.to_time.all_day) #搜尋當天日期的練習量
@today_practice_count = practice.count #今日練習量
log_in_user = User.where(current_sign_in_at: Date.current.to_time.all_day) #搜尋 User登入時間是否符合今天日期
@today_log_in_user = log_in_user.count #計算今天登入的 User數量
end
end
<file_sep>class Course < ApplicationRecord
has_many :course_topics
validates :name, presence: true
enum status: [:is_hidden, :is_published]
end
<file_sep>class FlashesController < ApplicationController
before_action :redirect_if_not_log_in
before_action :redirect_if_role_is_guest
LIMITED_QUESTION_NUMBER = 1 #每頁顯示一個問題
def index
@courses = Course.all.order("id")
end
def show
@course = Course.find_by_id(params[:id])
@course_topics = CourseTopic.where(:course_id => @course).order("id")
@count = @course_topics.count #總共有幾個問題
# 如果網址沒有page的話,他會顯示最後一個問題,這樣是錯的,應該是顯示第一個問題,所以要加判斷
if params[:page]
@page = params[:page].to_i # 從 params 拿進來的值是字串,所以要轉成 integer
else
@page = 1
end
#將 course_topics分成一頁一題
@first_page = 1
@last_page = ( @count / LIMITED_QUESTION_NUMBER )
@course_topics = @course_topics[ (@page - 1) * LIMITED_QUESTION_NUMBER, LIMITED_QUESTION_NUMBER]
@user_info = UserInfo.new #建立一個空的 UserInfo
@click_rates = Ctr.new #建立一個空的 CTR
end
private
def redirect_if_not_log_in
if !current_user
flash[:notice] = "您尚未登入"
redirect_to root_path
return
end
end
def redirect_if_role_is_guest
if current_user && current_user.role == 'guest'
flash[:notice] = "你的帳號尚未開通,請稍等老師為您開通"
redirect_to root_path
return
end
end
end
<file_sep>class CoursesController < ApplicationController
layout 'admin/layouts/admin'
def index
@courses = Course.is_published.order("id") #搜尋 :status = 1 的情境
@deleted_courses = Course.is_hidden #搜尋 :status = 0 的情境
end
def create
course = Course.create({
name: params[:name],
inserted_at: Time.zone.now,
})
if course.valid?
dir_url = Rails.root.join("public", "data/#{course.id}")
FileUtils.mkdir_p(dir_url) unless File.directory?(dir_url) #新增情境時在public/data資料夾底下新增資料夾
redirect_to action: :index
return
end
end
def update
course = Course.find(params[:id])
course.update({
status: 1 #將 status 設回1
})
redirect_to action: :index
return
end
def destroy
course = Course.find(params[:id])
course.update({
status: 0 #刪除並不是真的刪掉,而是把 status 改成0
})
redirect_to action: :index
return
end
end
<file_sep>class CreateCtrs < ActiveRecord::Migration[5.2]
def change
create_table :ctrs do |t|
t.integer :user_id
t.string :scenes
t.timestamp :inserted_at
t.timestamps
end
end
end
| 869b8c09458d3311e9224a672387ab687919d0f8 | [
"Ruby"
] | 22 | Ruby | TonyHuzz/ncut-flash | 5ef729f2986fde3db9f23d3e6593f2c25e1918d8 | 3159206890bb027381a5188c255d100287a09183 |
refs/heads/master | <file_sep>from django.db.models.signals import post_save
from django.contrib.auth.models import User
from django.dispatch import receiver
from hood.models import Profile
@receiver(post_save,sender = User)
def create_profile(sender,instance,created,**kwargs):
'''
Its a function that creates a profile for user when they sign up
'''
if created:
Profile.objects.create(user = instance)
@receiver(post_save, sender=User)
def save_profile(sender,instance,**kwargs):
'''
this is a function that saves the profile once created after one signs up
'''
instance.profile.save()<file_sep># WelcomeToTheHood
## Author
<NAME>
## Description
A web application that allows you to be in the loop about everything happening in your neighborhood. From contact information of different handyman to meeting announcements.
## Live Link
Click [View Site](https://wleomehood.herokuapp.com/) to visit the site
## User Story
* A user must sign in with the application to start using.
* A user can set up a profile about them.
* A user can find a list of different businesses in their neighborhood.
* A user can create posts that will be visible to everyone.
* A user can change their neighborhood when they decide to move out in their edit Profile.
## Setup and Installation
To get the project .......
##### Cloning the repository:
```bash
https://github.com/RoyRasugu/WelcomeToTheHood.git
```
##### Navigate into the folder and install requirements
```bash
cd project-awwards pip install -r requirements.txt
```
##### Install and activate Virtual
```bash
- python3 -m venv virtual - source virtual/bin/activate
```
##### Install Dependencies
```bash
pip install -r requirements.txt
```
##### Setup Database
SetUp your database User,Password, Host then make migrate
```bash
python manage.py makemigrations blog
```
Now Migrate
```bash
python manage.py migrate
```
##### Run the application
```bash
python manage.py runserver
```
##### Testing the application
```bash
python manage.py test
```
Open the application on your browser `127.0.0.1:8000`.
## Technology used
* [Python3.8](https://www.python.org/)
* [Django 2.2](https://docs.djangoproject.com/en/2.2/)
* [Heroku](https://heroku.com)
* PSQL
* JS
* HTML
* CSS
## Known Bugs
* There are no known bugs currently but pull requests are allowed incase you spot a bug
## Contact Information
You can reach me on my email [royratch<EMAIL>]
## License
* *MIT License:*
* Copyright (c) 2021 **<NAME>**<file_sep>Django==2.2
Pillow==8.4.0
psycopg2==2.8.6
pytz==2021.3
sqlparse==0.4.2
<file_sep>from django.db import models
from django.contrib.auth.models import User
from django.db.models.fields import TextField
# Create your models here.
class Profile(models.Model):
user = models.OneToOneField(User,on_delete=models.CASCADE)
profile_pic = models.ImageField(upload_to='pics/',blank=True)
bio = models.TextField()
neighbourhood = models.CharField(max_length=100)
def __str__(self):
return self.user.username
class Neighbourhood(models.Model):
neighbourhood = models.CharField(max_length=100)
image = models.ImageField(upload_to='photos/',blank=True)
location = models.CharField(max_length=100)
occupants = models.IntegerField(null=True,default=0)
class Business(models.Model):
name = models.CharField(max_length=200)
email = models.EmailField()
description = models.TextField()
owner = models.ForeignKey(User, on_delete=models.CASCADE)
neighbourhood = models.CharField(max_length=100)
address =models.CharField(max_length=100)
contact = models.IntegerField()
def __str__(self):
return self.name
class Police(models.Model):
name = models.CharField(max_length=200)
email = models.EmailField()
phone_number = models.IntegerField()
address =models.CharField(max_length=100)
neighbourhood = models.CharField(max_length=100)
image = models.ImageField(upload_to='photos/', blank=True)
def __str__(self):
return self.name
class Health(models.Model):
name = models.CharField(max_length=200)
phone_number = models.IntegerField()
email = models.EmailField()
image = models.ImageField(upload_to='photos/', blank=True)
address =models.CharField(max_length=100)
neighbourhood = models.CharField(max_length=100)
def __str__(self):
return self.name
class Post(models.Model):
title = models.CharField(max_length=100)
description = TextField()
user = models.ForeignKey(User, on_delete=models.CASCADE)
posted_on = models.DateTimeField(auto_now_add=True)
neigbourhood = models.CharField(max_length=100)
def __str__(self):
return self.title
<file_sep>from django.test import TestCase
from hood.models import Post, Profile, Business, Neighbourhood
from django.contrib.auth.models import User
# Create your tests here.
class Neighbourhoodtest(TestCase):
'''
Class to test all neighbourhood model methods
'''
def setUp(self):
'''
Function to create new instance of a neighbourhood class
'''
self.hood=Neighbourhood(name='Kibera',location='Kibera',image='pic.jpg',)
self.hood.save()
def test_instance(self):
'''
Test neighbourhood class instantiation
'''
self.assertTrue(isinstance(self.hood,Neighbourhood))
def tearDown(self):
'''
Function to delete every test instance after it runs
'''
Neighbourhood.objects.all().delete()
def create_hood_test(self):
'''
Tests that a new hood is saved
'''
self.hood.create_hood()
hoodlist = Neighbourhood.objects.all()
self.assertTrue(len(hoodlist)==1)
def delete_hood_test(self):
'''
Tests that a Neighborhood instance can be deleted
'''
self.hood.save()
Neighbourhood.delete(self.hood)
hoodlist = Neighbourhood.objects.all()
self.assertEqual(len(hoodlist,0))
class Profiletest(TestCase):
'''
Class to test the profile class methods
'''
def setUp(self):
self.profile=Profile(username='test', email='<EMAIL>', profile_pic = 'pic.jpeg', bio = "test", neighbourhood = "nairobi")
def test_instance(self):
'''
Test class to check instantiation of a new profile instance
'''
self.assertTrue(isinstance(self.profile,Profile))
def tearDown(self):
'''
Class to delete all test instances after tests finish running
'''
User.objects.all().delete()
Profile.objects.all().delete()
def save_profile_test(self):
self.profile.save_profile()
profiles=Profile.objects.all()
self.assertTrue(len(profiles)==1)
def delete_profile_test(self):
'''
Tests that a profile instance can be deleted succesfully
'''
self.profile.save()
Profile.delete(self.profile)
profiles = Profile.objects.all()
self.assertEqual(len(profiles,0))
class Businesstest(TestCase):
'''
Class to test the business class models
'''
def setUp(self):
self.bs= Business(name='test',owner="dan",neighbourhoodhood=1,email='<EMAIL>',description='my test')
self.bs.save()
def tearDown(self):
'''
Will delete all test instances on completion
'''
Business.objects.all().delete()
def savebussines_test(self):
'''
testcase to test instantiation of business class object
'''
self.bs.save()
bslist=Business.objects.all()
self.assertTrue(len(bslist)==1)
def delete_business_test(self):
'''
testcase to delete a instance of business class
'''
self.bs.save()
Business.delete_biz(self.bs)
bslist=Business.objects.all()
self.assertTrue(len(bslist)==0)<file_sep>from django.urls import path
from hood import views
urlpatterns = [
path('', views.registration, name='registration'),
path('home', views.home, name='home')
]<file_sep>from django.core.checks import messages
from django.shortcuts import redirect, render
from django.contrib.auth.decorators import login_required
from django.contrib.auth.models import User
from hood.forms import SignupForm
# Create your views here.
def registration(request):
if request.method == 'POST':
form = SignupForm(request.POST)
if form.is_valid():
username = form.cleaned_data.get('username')
email = form.cleaned_data.get('email')
password = form.cleaned_data.get('password')
User.objects.create_user(username=username, email=email, password=password)
return redirect('home')
else:
form = SignupForm()
context = {
'form':form,
}
return render(request, 'auth/signup.html', context)
@login_required
def home(request):
'''
renders our homepage
'''
current_user = get_object_or_404(Profile,user = request.user)
current_user = Profile.objects.get(user=request.user)
business = Business.objects.filter(neighbourhood = current_user.neighbourhood)
police = Police.objects.filter(neighbourhood = current_user.neighbourhood)
hospitals = Health.objects.filter(neighbourhood = current_user.neighbourhood)
user = request.user
business = Business.objects.filter(neighbourhood=current_user.neighbourhood)
locations = Neighbourhood.objects.all()
posts = Post.objects.filter(neighbourhood = current_user.neighbourhood)
context = {
'business':business,
'police':police,
'hospitals':hospitals,
'user':user,
'current_user':current_user,
'locations':locations,
'posts':posts,
}
return render(request,'all/home.html',context)
@login_required
def add_bussiness(request):
'''
this view function either renders our add bussiness form our saves a new bussiness
'''
if request.method == 'POST':
form = BusinessForm(request.POST)
hood = request.POST.get('Location')
if form.is_valid():
bussiness = form.save(commit=False)
bussiness.neighbourhood = hood
bussiness.posted_by = request.user
bussiness.save()
return redirect('home')
else:
messages.info(request,"all fields are required")
return redirect('add-bussiness')
else:
current_user = get_object_or_404(Profile,user = request.user)
current_user = Profile.objects.get(user=request.user)
business = Business.objects.filter(neighbourhood = current_user.neighbourhood)
police = Police.objects.filter(neighbourhood = current_user.neighbourhood)
hospitals = Health.objects.filter(neighbourhood = current_user.neighbourhood)
user = request.user
business = Business.objects.filter(neighbourhood=current_user.neighbourhood)
locations = Neighbourhood.objects.all()
form = BusinessForm()
context = {
'business':business,
'police':police,
'hospitals':hospitals,
'user':user,
'current_user':current_user,
'locations':locations,
'form':form,
}
return render(request,'all/add_bs.html',context)
@login_required
def new_post(request):
'''
this is a view function that renders our new post form aswell as save our new post in the db
'''
profile = Profile.objects.get(user = request.user)
hoods = ['Nairobi','Ngong','Ruiru'
,'Thika','Rwaka','Juja','Kenol','Westlands']
if profile.neighbourhood not in hoods:
messages.info(request,'Provide your neighbourhood information first before adding a post!')
return redirect('update-profile')
else:
if request.method == 'POST':
form = PostForm(request.POST,request.FILES)
if form.is_valid():
post = form.save(commit = False)
post.posted_by = request.user
post.neighbourhood = profile.neighbourhood
post.save()
return redirect('home')
else:
messages.info(request,'All fields are required')
return redirect('new-post')
else:
form = PostForm()
current_user = get_object_or_404(Profile,user = request.user)
current_user = Profile.objects.get(user=request.user)
business = Business.objects.filter(neighbourhood = current_user.neighbourhood)
police = Police.objects.filter(neighbourhood = current_user.neighbourhood)
hospitals = Health.objects.filter(neighbourhood = current_user.neighbourhood)
user = request.user
business = Business.objects.filter(neighbourhood=current_user.neighbourhood)
locations = Neighbourhood.objects.all()
context = {
'business':business,
'police':police,
'hospitals':hospitals,
'user':user,
'current_user':current_user,
'locations':locations,
'form':form,
}
return render(request,'all/new_post.html',context)
@login_required
def update_profile(request):
'''
this is a view function that handles the update funtionality of our profile
'''
if request.method == 'POST':
hood = request.POST.get('Location')
profileform = UpdateProfileForm(request.POST,request.FILES,instance=request.user.profile)
userform = UserUpdateform(request.POST,instance=request.user)
if profileform.is_valid() and userform.is_valid():
profile = profileform.save(commit=False)
profile.neighbourhood = hood
profile.user = request.user
profile.save()
userform.save()
return redirect('profile')
else:
messages.info(request,'All fields are required!')
return redirect('update-profile')
else:
profileform = UpdateProfileForm(instance=request.user.profile)
userform = UserUpdateform(instance=request.user)
current_user = get_object_or_404(Profile,user = request.user)
current_user = Profile.objects.get(user=request.user)
business = Business.objects.filter(neighbourhood = current_user.neighbourhood)
police = Police.objects.filter(neighbourhood = current_user.neighbourhood)
hospitals = Health.objects.filter(neighbourhood = current_user.neighbourhood)
user = request.user
business = Business.objects.filter(neighbourhood=current_user.neighbourhood)
locations = Neighbourhood.objects.all()
form = BusinessForm()
context = {
'business':business,
'police':police,
'hospitals':hospitals,
'user':user,
'current_user':current_user,
'locations':locations,
'profileform':profileform,
"userform":userform,
}
return render(request,'all/update_prof.html',context)
@login_required
def profile(request):
profile = Profile.objects.filter(user= request.user)
posts = Post.objects.filter(posted_by = request.user)
current_user = get_object_or_404(Profile,user = request.user)
current_user = Profile.objects.get(user=request.user)
business = Business.objects.filter(neighbourhood = current_user.neighbourhood)
police = Police.objects.filter(neighbourhood = current_user.neighbourhood)
hospitals = Health.objects.filter(neighbourhood = current_user.neighbourhood)
user = request.user
business = Business.objects.filter(neighbourhood=current_user.neighbourhood)
locations = Neighbourhood.objects.all()
context = {
'business':business,
'police':police,
'hospitals':hospitals,
'user':user,
'current_user':current_user,
'locations':locations,
'profile':profile,
'posts':posts,
}
return render(request,'all/profile.html',context)
@login_required()
def location_view(request,id):
current_user = Profile.objects.get(user=request.user)
business = Business.objects.filter(neighbourhood = current_user.neighbourhood)
police = Police.objects.filter(neighbourhood = current_user.neighbourhood)
hospitals = Health.objects.filter(neighbourhood = current_user.neighbourhood)
user = request.user
locations = Neighbourhood.objects.all()
location = get_object_or_404(Neighbourhood,id=id)
occupants = Profile.objects.filter(neighbourhood = location.name)
hospital_list= Health.objects.filter(neighbourhood = location.name)
police_list = Police.objects.filter(neighbourhood = location.name)
business_list = Business.objects.filter(neighbourhood = location.name)
context = {
'business':business,
'police':police,
'hospitals':hospitals,
'user':user,
'current_user':current_user,
'locations':locations,
'location':location,
'occupants':occupants,
'hospital_list':hospital_list,
'police_list':police_list,
'business_list':business_list
}
return render(request,'all/single_hood.html',context)
@login_required()
def business_view(request,id):
bs = get_object_or_404(Business,id=id)
current_user = Profile.objects.get(user=request.user)
business = Business.objects.filter(neighbourhood = current_user.neighbourhood)
police = Police.objects.filter(neighbourhood = current_user.neighbourhood)
hospitals = Health.objects.filter(neighbourhood = current_user.neighbourhood)
user = request.user
locations = Neighbourhood.objects.all()
context = {
'business':business,
'police':police,
'hospitals':hospitals,
'user':user,
'current_user':current_user,
'locations':locations,
'bs':bs,
}
return render(request,'all/business.html',context)
<file_sep>from django.contrib import admin
from hood.models import Neighbourhood, Post, Profile, Business, Health, Police
# Register your models here.
admin.site.register(Neighbourhood)
admin.site.register(Business)
admin.site.register(Profile)
admin.site.register(Post)
admin.site.register(Health)
admin.site.register(Police) | f64e243a02b87766664e309ce1b0e742bb2d3511 | [
"Markdown",
"Python",
"Text"
] | 8 | Python | RoyRasugu/WelcomeToTheHood | 1f964675243ec88d6cafc3ae49d6e1aa8563eb1f | 20fc4c83b9ed431ef85a0c8df3067909631d7a93 |
refs/heads/master | <file_sep>/*
<NAME>
btw3ta
CS4414 Midterm 1
Problem 8
*/
fn one() -> (bool) {
if (two() == true) {
return true;
} else {
return false;
}
}
fn two () -> (bool) {
if (one() == true) {
return true;
} else {
return false;
}
}
fn main() {
one();
}
| a2b4683c7265fbfd0fb13ea59b967337ca67919d | [
"Rust"
] | 1 | Rust | btwright/cs4414-mt | 4f70f8da063784ea32593e9dd320f6ef376da6fe | 27c0de0ef9eda945e6871223045bde92546d5601 |
refs/heads/master | <file_sep>import React, {useState} from 'react';
import { StyleSheet, View, SafeAreaView } from 'react-native';
import * as Font from 'expo-font';
import { AppLoading } from 'expo';
import Header from './components/Header';
import StartGame from './screens/StartGame';
import GameScreen from './screens/GameScreen';
import GameOver from './screens/GameOver';
const fetchFonts = () => {
return Font.loadAsync({
'open-sans': require('./assets/fonts/OpenSans-Regular.ttf'),
'open-sans-bold': require('./assets/fonts/OpenSans-Bold.ttf')
})
}
export default function App() {
const [userNumber, setUserNumber] = useState();
const [guessRounds, setGuessRounds] = useState(0);
const [dataLoaded, setDataLoaded] = useState(false);
if (!dataLoaded) {
return <AppLoading startAsync={fetchFonts}
onFinish={() => setDataLoaded(true)} />;
}
const configureNewGame = () => {
setGuessRounds(0);
setUserNumber(null);
}
const startGameHandler = (selectedNumber) => {
setUserNumber(selectedNumber);
}
const gameOverHandler = numberOfRounds => {
setGuessRounds(numberOfRounds);
}
let content = <StartGame startGameHandler={startGameHandler}/>
if (userNumber && guessRounds <= 0) {
content = <GameScreen userChoice={userNumber}
gameOverHandler={gameOverHandler} />
} else if (guessRounds > 0) {
content = <GameOver NOfRounds={guessRounds}
rightNumber={userNumber}
configureNewGame={configureNewGame} />
}
return (
<SafeAreaView style={styles.screen}>
<Header title="Adivina el número" />
{content}
</SafeAreaView>
);
}
const styles = StyleSheet.create({
screen: {
flex: 1
}
});
<file_sep># Acierta el número
Aplicación desarrollada con React Native & Expo.
Juego en el que el usuario escoge un número y el ordenador intenta adivinarlo por medio de las pistas facilitadas por el jugador.
<img src="/img/vista1.jpeg" width="400"><img src="/img/vista2.jpeg" width="400">
| 99916de4240a61a142923e3a74eae44e2681a749 | [
"JavaScript",
"Markdown"
] | 2 | JavaScript | eli-alkorta/acierta-el-numero | 4840a8029de4ee92967ac8e7945a2007b81b2b27 | d401a9f423aa1cefbd6cd27faff93810f2a5695d |
refs/heads/main | <repo_name>leimenghao1991/flutter_reader<file_sep>/README.md
# flutter_reader
Flutter Reader App
## Features
1. 创建书架展示书籍
2. 使用数据库保持添加的书籍和阅读的内容
3. 添加本地书籍
4. 解析并展示书籍内容
5. 根据用户的设置展示阅读的UI(调节字体,背景等)
6. 使用多种模式展示书籍(书架模式、画廊模式等)
<file_sep>/android/app/src/main/kotlin/com/lemon/flutter_reader/MainActivity.kt
package com.lemon.flutter_reader
import io.flutter.embedding.android.FlutterActivity
class MainActivity: FlutterActivity() {
}
| e641a240d5cb88ba048722fbef5403cdf93fffef | [
"Markdown",
"Kotlin"
] | 2 | Markdown | leimenghao1991/flutter_reader | c7a0c47b09a1836d58dae67d92f9b06a9774288c | ed67d6108b1d21a88d0e27e9597a5b8082e1bd4c |
refs/heads/master | <repo_name>LuisPalominoTrevilla/JsonSpotify<file_sep>/js/app.js
$(document).foundation()
$(document).ready(function(){
var button = $("#ck");
var image = document.getElementsByClassName("artist-picture");
var name = document.getElementsByClassName("artist-name");
var spotify = document.getElementsByClassName("artist-spotify");
var followers = document.getElementsByClassName("artist-followers");
var popularity = document.getElementsByClassName("artist-popularity");
var progress = document.getElementsByClassName("progress-meter");
var info = document.getElementsByClassName("artist-info");
$(".orbit").hide();
hideSlides();
button.click(function(){
$(".orbit").show();
var input = $("#input-artist").val(); //Stores artist
var artist = removeSpaces(input);
$.getJSON("https://api.spotify.com/v1/search?q=" + input +"&type=artist", function(data){
var obj = data;
console.log(obj);
var img = 0;
var espacios = 0;
showSlides();
for(var i = 0; i < obj.artists.items.length; i++){
if(img === image.length){
break;
}
if(obj.artists.items[i].images.length !== 0){
image[img].src = obj.artists.items[i].images[0].url;
image[img].style.height = '450px';
name[img].innerHTML = obj.artists.items[i].name;
spotify[img].href = obj.artists.items[i].external_urls.spotify;
followers[img].innerHTML = obj.artists.items[i].followers.total;
popularity[img].innerHTML = obj.artists.items[i].popularity;
progress[img].style.width = obj.artists.items[i].popularity + "%";
img++;
espacios++;
}
}
//checa si era menor la lista de objetos
if(espacios < image.length){
for(var i = espacios; i < image.length; i++){
image[i].src = "notfound.jpg";
resetInfo(i);
//image[i].style.display = "none";
info[i].style.display = "none";
}
}
});
$("#input-artist").val("");
});
function removeSpaces(str){
/*
str must not be empty
*/
var strNoSpaces = "";
for (var i = 0; i < str.length; i++) {
if(str[i] === " "){
strNoSpaces += "+";
}else{
strNoSpaces += str[i];
}
}
return strNoSpaces;
}
function resetInfo(pos){
name[pos].innerHTML = "";
spotify[pos].href = "#";
followers[pos].innerHTML = "";
popularity[pos].innerHTML = "";
}
function hideSlides(){
for(var i = 0; i < image.length; i++){
image[i].style.display = "none";
}
}
function showSlides(){
for(var i = 0; i < image.length; i++){
image[i].style.display = "block";
info[i].style.display = "block";
}
}
});
| 92d528c4657023549bbd11102eb2a536fe02a191 | [
"JavaScript"
] | 1 | JavaScript | LuisPalominoTrevilla/JsonSpotify | 1f58d6e5965b5bf957e5620ee15d82fb693e8efb | 89954e2d909872e88591cc9857d1ca75a7027f94 |
refs/heads/master | <repo_name>rkluszczynski/tutorial-kafka-streaming<file_sep>/README.md
# tutorial-kafka-streaming
## Setup
Obtain current IP address and set environment variable `KAFKA_ADVERTISED_HOST_NAME` with it in `docker-compose.yml` file.
Next, just type:
```bash
docker-compose up
```
and Kafka should start.
## Testing
Create topic:
```bash
./bin/kafka-topics.sh --create --partitions 1 --replication-factor 1 --topic topic1 --zookeeper localhost:2181
```
Produce some data:
```bash
./bin/kafka-console-producer.sh --topic=topic1 --broker-list=localhost:9092
```
Consume data:
```bash
./bin/kafka-console-consumer.sh --from-beginning --topic=topic1 --bootstrap-server=localhost:9092
```
Describe topic metadata:
```bash
./bin/kafka-topics.sh --describe --topic=topic1 --zookeeper=localhost:2181
```
Eventually delete topic:
```bash
./bin/kafka-topics.sh --delete --topic=topic1 --zookeeper=localhost:2181
```
### Clean docker
```bash
docker rm single-kafka single-zookeeper local-flink-cluster
docker-compose down --rmi all
```
## Links
- http://blog.coffeeandcode.com/cleanup-docker-images-and-exited-containers/
## Credits
- https://hub.docker.com/r/wurstmeister/kafka/
<file_sep>/spring-producer-project/README.md
spring-producer
===============
## Build
```bash
./gradlew bootRepackage
```
## Run
```bash
./build/libs/spring-producer.jar \
--kafka.servers=localhost:9092 \
--kafka.topic=topic1 \
--kafka.message=TEST \
--kafka.count=1
```
<file_sep>/docker-compose.yml
# single zookeeper, single kafka borker, local flink cluster
version: '3.3'
services:
zookeeper:
container_name: single-zookeeper
image: zookeeper:3.4.10
ports:
- '2181:2181'
kafka:
container_name: single-kafka
image: wurstmeister/kafka:0.10.2.1
links:
- zookeeper
ports:
- '9092:9092'
environment:
KAFKA_ADVERTISED_HOST_NAME: 192.168.1.6
KAFKA_ADVERTISED_PORT: 9092
KAFKA_CREATE_TOPICS: topic1:1:1
KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181
volumes:
- /var/run/docker.sock:/var/run/docker.sock
flink:
container_name: local-flink-cluster
image: flink:1.3.1-hadoop26-scala_2.11
command: local
ports:
- '8081:8081'
<file_sep>/spring-producer-project/build.gradle
plugins {
id 'java'
id 'org.springframework.boot' version '1.5.4.RELEASE'
}
group = 'io.github.rkluszczynski'
version = ''
sourceCompatibility = 1.8
targetCompatibility = 1.8
bootRepackage.executable = true
dependencies {
compile 'org.springframework.boot:spring-boot-starter',
'org.springframework.kafka:spring-kafka:1.2.2.RELEASE'
}
repositories {
mavenCentral()
}
task wrapper(type: Wrapper) {
gradleVersion = '4.0.1'
}
<file_sep>/scripts/execute-docker-on-mac.sh
#!/bin/sh
scriptDir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
ipAddress="$( ipconfig getifaddr en0 )"
sourceDockerConfig=${scriptDir}/../docker-compose.yml
targetDockerConfig=${scriptDir}/docker-compose.yml
if [ "${1}" == "clean" ]
then
for name in $(grep container_name ${sourceDockerConfig} | cut -d':' -f2)
do
docker-compose rm -f ${name}
done
fi
sed "s/KAFKA_ADVERTISED_HOST_NAME:.*/KAFKA_ADVERTISED_HOST_NAME: ${ipAddress}/" ${sourceDockerConfig} > ${targetDockerConfig}
cat ${targetDockerConfig}
sleep 2 && read -p "Press enter to continue..."
( cd ${scriptDir} && docker-compose build --no-cache && docker-compose up --force-recreate )
rm ${targetDockerConfig}
| 3f9fc000277611b2d93dae6b495b26887b974546 | [
"Markdown",
"YAML",
"Shell",
"Gradle"
] | 5 | Markdown | rkluszczynski/tutorial-kafka-streaming | 8243c31aa28685ff2884585e1222b7a5d9cda6bc | 28b69a247eaf86e8a514df1d49c077e92078d214 |
refs/heads/master | <file_sep>MongooseObserver
=========
A small library that provides methods to listen changes in mongoose models.
## Installation
```shell
npm install mongoose-observer
```
## Usage
In order to use this library, you have to create and register a model using mongoose. After that, you can
register listeners to create and update events using the following API:
```js
mongooseObserver.register(modelName, event, callback)
```
Example:
```js
var mongooseObserver = require('mongoose-observer')
mongooseObserver.register('User', 'create', function(createdUser){
// this callback will be executed when a new user is created
// Do something here, for example, send a email to the created user
});
mongooseObserver.register('User', 'update', function(updatedUser){
// this callback will be executed when a User record is updated
// Do something here, for example, emit changes to client via socket.io
});
mongooseObserver.register('User', 'remove', function(removedUser){
// this callback will be executed when a User record is removed
// Do something here, for example, emit changes to client via socket.io
});
```
## Tests
npm test
## Contributing
Add unit tests for any new or changed functionality. Lint and test your code.
## Release History
* 0.1.1 Small changes to README.md
* 0.1.0 Initial release<file_sep>var mongooseObserver = require('../index.js');
var mongoose = require('mongoose');
var Schema = mongoose.Schema;
require('should');
function registerUserModel(){
mongoose.model('User', new Schema({
username: String,
name: String
}));
}
function getModel(){
return mongoose.model('User');
}
function connectDatabase(done){
mongoose.connect('mongodb://localhost/model_observer_test', function(){
registerUserModel();
done();
});
}
function disconnectDatabase(done){
mongoose.connection.db.dropDatabase(function(){
mongoose.connection.close(done);
});
}
describe('ModelObsever Tests', function(){
before(function(done){
connectDatabase(done);
});
after(function(done){
disconnectDatabase(done);
});
it('should fire create event when a record is recently created', function(done){
var User = getModel();
mongooseObserver.register('User', 'create', function(doc){
doc.username.should.equal('username');
doc.name.should.equal('name');
mongooseObserver.unregister('User', 'create');
done();
});
User.create({ username: 'username', name: 'name' });
});
it('should fire update event when a record is updated', function(done){
var User = getModel();
mongooseObserver.register('User', 'create', function(doc){
doc.username = 'updated username';
doc.save();
});
mongooseObserver.register('User', 'update', function(doc){
doc.username.should.equal('updated username');
mongooseObserver.unregister('User', 'create');
mongooseObserver.unregister('User', 'update');
done();
});
User.create({ username: 'username', name: 'name' });
});
it('should fire remove event when a record is removed', function(done){
var User = getModel();
mongooseObserver.register('User', 'create', function(doc){
doc.remove();
});
mongooseObserver.register('User', 'remove', function(doc){
doc.username.should.equal('username');
done();
});
User.create({ username: 'username', name: 'name' });
});
});<file_sep>var mongoose = require('mongoose');
var _ = require('underscore');
var observers = {};
var registered = {};
function registerPre(modelName){
var schema = mongoose.model(modelName).schema;
schema.pre('save', function(next){
this.wasNew = this.isNew;
next();
});
schema.post('save', function(doc){
if(doc.wasNew)
notify(modelName, 'create', doc);
else
notify(modelName, 'update', doc);
});
schema.post('remove', function(doc){
notify(modelName, 'remove', doc);
});
registered[modelName] = true;
}
function register(modelName, method, callback){
observers[modelName] = observers[modelName] || {};
observers[modelName][method] = observers[modelName][method] || [];
observers[modelName][method].push(callback);
if(!_.has(registered, modelName))
registerPre(modelName);
}
function unregister(modelName, method){
if(_.has(registered, modelName)){
delete observers[modelName][method];
}
}
function notify(modelName, method, newDoc){
_.each(observers[modelName][method], function(callback){
callback(newDoc);
});
}
module.exports = {
register: register,
unregister: unregister
}; | 95d325567385ee0a5c8e4cccaccb2374b349ee30 | [
"Markdown",
"JavaScript"
] | 3 | Markdown | muZk/mongoose-observer | d3a076641fc04dafbb232b5fece6d25a8270e53a | 4f29686a1df7da4648974583331d2ce1c6defab5 |
refs/heads/master | <file_sep>/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package DTO;
import java.io.Serializable;
/**
*
* @author Admin
*/
public class DangNhapDTO implements Serializable{
private String TENDN;
private String MATKHAU;
private String LoaiTK;
public String getLoaiTK() {
return LoaiTK;
}
public void setLoaiTK(String LoaiTK) {
this.LoaiTK = LoaiTK;
}
public DangNhapDTO(String TENDN, String MATKHAU, String LoaiTK) {
this.TENDN = TENDN;
this.MATKHAU = MATKHAU;
this.LoaiTK = LoaiTK;
}
public DangNhapDTO() {
}
/**
* @return the TENDN
*/
public String getTENDN() {
return TENDN;
}
/**
* @param TENDN the TENDN to set
*/
public void setTENDN(String TENDN) {
this.TENDN = TENDN;
}
/**
* @return the MATKHAU
*/
public String getMATKHAU() {
return MATKHAU;
}
/**
* @param MATKHAU the MATKHAU to set
*/
public void setMATKHAU(String MATKHAU) {
this.MATKHAU = MATKHAU;
}
/**
* @return the tenDN
*/
}<file_sep>/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package GUI;
import BLL.PhieuNhapSachBLL;
import DAL.PhieuNhapSachDAL;
import DAL.QuanLyDanhMucServices;
import DTO.NXBDTO;
import DTO.PhieuNhapSachDTO;
import DTO.SachDTO;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.MouseAdapter;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.ResultSet;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.TimeZone;
import java.util.Vector;
import javax.swing.JOptionPane;
import javax.swing.table.DefaultTableModel;
import javax.swing.table.TableModel;
import net.sf.jasperreports.engine.JasperCompileManager;
import net.sf.jasperreports.engine.JasperFillManager;
import net.sf.jasperreports.engine.JasperPrint;
import net.sf.jasperreports.engine.JasperReport;
import net.sf.jasperreports.view.JasperViewer;
/**
*
* @author Admin
*/
public class quanlydanhmuc extends javax.swing.JFrame implements ActionListener{
/**
* Creates new form quanlydanhmuc
*/
ResultSet rs;
DefaultTableModel model;
DefaultTableModel model2;
QuanLyDanhMucServices danhmuc;
ArrayList<SachDTO> dsSach;
Connection conn;
ArrayList<NXBDTO> dsNhaXB;
public quanlydanhmuc() {
initComponents();
addControls();
HienThiDanhSachSach();
// HienThiDanhSachNhaXB();
HienThiDanhSachChiTietNXB();
this.setDefaultPhieuMuon();
this.BThemVaoPhieuTam.addActionListener(this);
this.BThemPhieu.addActionListener(this);
this.BXoaPhieu.addActionListener(this);
this.setLocationRelativeTo(null);
this.BSuaPhieu.addActionListener(this);
this.CBBNXB.removeAllItems();
new PhieuNhapSachDAL().DoDuLieuVaoCBBNXB(this.CBBNXB);
this.TablePhieuNhap.addMouseListener(new MouseAdapter() {
public void mouseClicked(java.awt.event.MouseEvent evt) {
int row = TablePhieuNhap.rowAtPoint(evt.getPoint());
TextMaNhap.setText((String) TablePhieuNhap.getValueAt(row, 0));
TextTenSach.setText((String) TablePhieuNhap.getValueAt(row, 1));
TextSL.setText(String.valueOf(TablePhieuNhap.getValueAt(row, 2)) );
TextDonGia.setText(String.valueOf(TablePhieuNhap.getValueAt(row, 3)));
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
// set formatter to use UTC (instead of JVM default timezone)
sdf.setTimeZone(TimeZone.getTimeZone("UTC"));
try {
// parse it as midnight (no shift to 01:00)
java.util.Date date = sdf.parse((String) TablePhieuNhap.getValueAt(row, 4));
java.util.Date dateutil = new java.util.Date(date.getTime());
DateNgayGiao.setDate(dateutil);
} catch (ParseException ex) {
ex.printStackTrace();
}
TextMaNV.setText((String) TablePhieuNhap.getValueAt(row, 5));
for(int i=0;i<CBBNXB.getItemCount();i++){
NXBDTO nxb=(NXBDTO) CBBNXB.getSelectedItem();
System.out.println(TablePhieuNhap.getValueAt(row, 6));
if(nxb.getMaNXB().equals(TablePhieuNhap.getValueAt(row, 6))){
return;
}else{
int index=CBBNXB.getSelectedIndex();
if(index+1==CBBNXB.getItemCount()){
CBBNXB.setSelectedIndex(0);
}else{
CBBNXB.setSelectedIndex(i+1);
}
}
}
}
});
this.TablePhieuTam.addMouseListener(new MouseAdapter() {
public void mouseClicked(java.awt.event.MouseEvent evt) {
int row = TablePhieuTam.rowAtPoint(evt.getPoint());
DefaultTableModel model = (DefaultTableModel) TablePhieuTam.getModel();
model.removeRow(row);
TablePhieuTam.setModel(model);
// int col = jTable1.columnAtPoint(evt.getPoint());
}
});
}
/**
* This method is called from within the constructor to initialize the form.
* WARNING: Do NOT modify this code. The content of this method is always
* regenerated by the Form Editor.
*/
@SuppressWarnings("unchecked")
// <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents
private void initComponents() {
PnMain = new javax.swing.JPanel();
PnDanhMuc = new javax.swing.JPanel();
jTabbedPane1 = new javax.swing.JTabbedPane();
jPanel8 = new javax.swing.JPanel();
jPanel10 = new javax.swing.JPanel();
jPanel11 = new javax.swing.JPanel();
jLabel2 = new javax.swing.JLabel();
txtTenSach = new javax.swing.JTextField();
jLabel3 = new javax.swing.JLabel();
jLabel4 = new javax.swing.JLabel();
jLabel5 = new javax.swing.JLabel();
txtTheLoai = new javax.swing.JTextField();
txtTacGia = new javax.swing.JTextField();
txtNgonNgu = new javax.swing.JTextField();
jLabel17 = new javax.swing.JLabel();
txtMaNXB = new javax.swing.JTextField();
jLabel19 = new javax.swing.JLabel();
txtMaNhap = new javax.swing.JTextField();
jLabel20 = new javax.swing.JLabel();
jLabel21 = new javax.swing.JLabel();
txtTaiBan = new javax.swing.JTextField();
txtTrangThai = new javax.swing.JTextField();
jLabel24 = new javax.swing.JLabel();
txtNamXB = new javax.swing.JTextField();
btnHuy = new javax.swing.JButton();
btnXoa = new javax.swing.JButton();
btnCAPNHAT = new javax.swing.JButton();
btnThem = new javax.swing.JButton();
btnTimKiem = new javax.swing.JButton();
btnDangXuat = new javax.swing.JButton();
jButton20 = new javax.swing.JButton();
jLabel16 = new javax.swing.JLabel();
jScrollPane4 = new javax.swing.JScrollPane();
bang_sach = new javax.swing.JTable();
jLabel18 = new javax.swing.JLabel();
jLabel23 = new javax.swing.JLabel();
jLabel22 = new javax.swing.JLabel();
jLabel39 = new javax.swing.JLabel();
jButton6 = new javax.swing.JButton();
jLabel37 = new javax.swing.JLabel();
jPanel9 = new javax.swing.JPanel();
jPanel12 = new javax.swing.JPanel();
jScrollPane3 = new javax.swing.JScrollPane();
bang_nxb = new javax.swing.JTable();
jPanel13 = new javax.swing.JPanel();
jLabel12 = new javax.swing.JLabel();
jLabel13 = new javax.swing.JLabel();
txtDiaChi = new javax.swing.JTextField();
jLabel14 = new javax.swing.JLabel();
txtSDT = new javax.swing.JTextField();
jLabel25 = new javax.swing.JLabel();
txtmaNXB = new javax.swing.JTextField();
txtTenNXB = new javax.swing.JTextField();
btnHuy2 = new javax.swing.JButton();
btnThemNXB = new javax.swing.JButton();
jButton14 = new javax.swing.JButton();
btnSuaNXB = new javax.swing.JButton();
jLabel26 = new javax.swing.JLabel();
jLabel27 = new javax.swing.JLabel();
jLabel28 = new javax.swing.JLabel();
jLabel29 = new javax.swing.JLabel();
jButton1 = new javax.swing.JButton();
jButton4 = new javax.swing.JButton();
jLabel1 = new javax.swing.JLabel();
jLabel34 = new javax.swing.JLabel();
jPanel2 = new javax.swing.JPanel();
TextMaNV = new javax.swing.JTextField();
jLabel15 = new javax.swing.JLabel();
BThemVaoPhieuTam = new javax.swing.JButton();
jLabel6 = new javax.swing.JLabel();
DateNgayGiao = new com.toedter.calendar.JDateChooser();
jLabel7 = new javax.swing.JLabel();
jScrollPane2 = new javax.swing.JScrollPane();
TablePhieuTam = new javax.swing.JTable();
jLabel8 = new javax.swing.JLabel();
BThemPhieu = new javax.swing.JButton();
jLabel9 = new javax.swing.JLabel();
BXoaPhieu = new javax.swing.JButton();
jLabel10 = new javax.swing.JLabel();
BSuaPhieu = new javax.swing.JButton();
jLabel35 = new javax.swing.JLabel();
TextMaNhap = new javax.swing.JTextField();
TextTenSach = new javax.swing.JTextField();
jLabel36 = new javax.swing.JLabel();
jScrollPane1 = new javax.swing.JScrollPane();
TablePhieuNhap = new javax.swing.JTable();
TextSL = new javax.swing.JTextField();
CBBNXB = new javax.swing.JComboBox<>();
TextDonGia = new javax.swing.JTextField();
jButton2 = new javax.swing.JButton();
jButton3 = new javax.swing.JButton();
jLabel11 = new javax.swing.JLabel();
jLabel31 = new javax.swing.JLabel();
jLabel30 = new javax.swing.JLabel();
jLabel32 = new javax.swing.JLabel();
jLabel38 = new javax.swing.JLabel();
jLabel41 = new javax.swing.JLabel();
jButton5 = new javax.swing.JButton();
jLabel33 = new javax.swing.JLabel();
setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
setTitle("THƯ VIỆN TRƯỜNG THPT DƯỠNG ĐIỀM");
setMinimumSize(new java.awt.Dimension(1210, 574));
PnMain.setLayout(new java.awt.CardLayout());
PnDanhMuc.setPreferredSize(new java.awt.Dimension(1190, 557));
jPanel8.setMinimumSize(new java.awt.Dimension(1600, 600));
jPanel8.setPreferredSize(new java.awt.Dimension(1600, 600));
jPanel10.setLayout(null);
jPanel11.setBorder(javax.swing.BorderFactory.createLineBorder(new java.awt.Color(0, 102, 102), 3));
jLabel2.setText("Tên sách");
txtTenSach.setEditable(false);
txtTenSach.setBorder(javax.swing.BorderFactory.createLineBorder(new java.awt.Color(0, 102, 102)));
txtTenSach.setPreferredSize(new java.awt.Dimension(4, 18));
jLabel3.setText("Thể loại");
jLabel4.setText("Ngôn ngữ");
jLabel5.setText("Tác giả");
txtTheLoai.setBorder(javax.swing.BorderFactory.createLineBorder(new java.awt.Color(0, 102, 102)));
txtTheLoai.setPreferredSize(new java.awt.Dimension(4, 18));
txtTacGia.setBorder(javax.swing.BorderFactory.createLineBorder(new java.awt.Color(0, 102, 102)));
txtTacGia.setPreferredSize(new java.awt.Dimension(4, 18));
txtTacGia.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
txtTacGiaActionPerformed(evt);
}
});
txtNgonNgu.setBorder(javax.swing.BorderFactory.createLineBorder(new java.awt.Color(0, 102, 102)));
txtNgonNgu.setMinimumSize(new java.awt.Dimension(4, 18));
jLabel17.setText("Mã nhà xuất bản");
txtMaNXB.setBorder(javax.swing.BorderFactory.createLineBorder(new java.awt.Color(0, 102, 102)));
jLabel19.setText("Mã nhập");
txtMaNhap.setBorder(javax.swing.BorderFactory.createLineBorder(new java.awt.Color(0, 102, 102)));
jLabel20.setText("Trạng thái");
jLabel21.setText("Tái bản");
txtTaiBan.setBorder(javax.swing.BorderFactory.createLineBorder(new java.awt.Color(0, 102, 102)));
txtTrangThai.setBorder(javax.swing.BorderFactory.createLineBorder(new java.awt.Color(0, 102, 102)));
jLabel24.setText("Năm xuất bản");
txtNamXB.setBorder(javax.swing.BorderFactory.createLineBorder(new java.awt.Color(0, 102, 102)));
btnHuy.setIcon(new javax.swing.ImageIcon("C:\\Users\\Admin\\Desktop\\thuvienduongdiem_12_6_2019\\database\\src\\Icon\\reset.png")); // NOI18N
btnHuy.setText("Huỷ");
btnHuy.setBorder(javax.swing.BorderFactory.createLineBorder(new java.awt.Color(0, 102, 102), 3));
btnHuy.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
btnHuyActionPerformed(evt);
}
});
javax.swing.GroupLayout jPanel11Layout = new javax.swing.GroupLayout(jPanel11);
jPanel11.setLayout(jPanel11Layout);
jPanel11Layout.setHorizontalGroup(
jPanel11Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(jPanel11Layout.createSequentialGroup()
.addGap(22, 22, 22)
.addGroup(jPanel11Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addComponent(jLabel3, javax.swing.GroupLayout.PREFERRED_SIZE, 81, javax.swing.GroupLayout.PREFERRED_SIZE)
.addComponent(txtTheLoai, javax.swing.GroupLayout.PREFERRED_SIZE, 132, javax.swing.GroupLayout.PREFERRED_SIZE)
.addComponent(jLabel5, javax.swing.GroupLayout.PREFERRED_SIZE, 65, javax.swing.GroupLayout.PREFERRED_SIZE)
.addComponent(txtTenSach, javax.swing.GroupLayout.PREFERRED_SIZE, 182, javax.swing.GroupLayout.PREFERRED_SIZE)
.addComponent(jLabel2, javax.swing.GroupLayout.PREFERRED_SIZE, 60, javax.swing.GroupLayout.PREFERRED_SIZE)
.addGroup(jPanel11Layout.createSequentialGroup()
.addGroup(jPanel11Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addComponent(txtMaNXB, javax.swing.GroupLayout.PREFERRED_SIZE, 132, javax.swing.GroupLayout.PREFERRED_SIZE)
.addComponent(jLabel17))
.addGap(18, 18, 18)
.addGroup(jPanel11Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addComponent(jLabel19, javax.swing.GroupLayout.PREFERRED_SIZE, 63, javax.swing.GroupLayout.PREFERRED_SIZE)
.addComponent(txtMaNhap, javax.swing.GroupLayout.PREFERRED_SIZE, 126, javax.swing.GroupLayout.PREFERRED_SIZE)))
.addGroup(jPanel11Layout.createSequentialGroup()
.addGroup(jPanel11Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(jPanel11Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.TRAILING, false)
.addComponent(txtNgonNgu, javax.swing.GroupLayout.Alignment.LEADING, javax.swing.GroupLayout.DEFAULT_SIZE, 163, Short.MAX_VALUE)
.addComponent(txtTrangThai, javax.swing.GroupLayout.Alignment.LEADING))
.addComponent(jLabel4)
.addComponent(jLabel20))
.addGap(29, 29, 29)
.addGroup(jPanel11Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addComponent(jLabel24, javax.swing.GroupLayout.PREFERRED_SIZE, 102, javax.swing.GroupLayout.PREFERRED_SIZE)
.addGroup(jPanel11Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING, false)
.addComponent(jLabel21)
.addComponent(txtTaiBan, javax.swing.GroupLayout.DEFAULT_SIZE, 68, Short.MAX_VALUE)
.addComponent(txtNamXB))))
.addGroup(jPanel11Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.TRAILING)
.addComponent(btnHuy, javax.swing.GroupLayout.PREFERRED_SIZE, 92, javax.swing.GroupLayout.PREFERRED_SIZE)
.addComponent(txtTacGia, javax.swing.GroupLayout.PREFERRED_SIZE, 184, javax.swing.GroupLayout.PREFERRED_SIZE)))
.addContainerGap(28, Short.MAX_VALUE))
);
jPanel11Layout.setVerticalGroup(
jPanel11Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(jPanel11Layout.createSequentialGroup()
.addGap(26, 26, 26)
.addGroup(jPanel11Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(jLabel17)
.addComponent(jLabel19))
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED)
.addGroup(jPanel11Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(txtMaNXB, javax.swing.GroupLayout.PREFERRED_SIZE, 30, javax.swing.GroupLayout.PREFERRED_SIZE)
.addComponent(txtMaNhap, javax.swing.GroupLayout.PREFERRED_SIZE, 30, javax.swing.GroupLayout.PREFERRED_SIZE))
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED)
.addComponent(jLabel3, javax.swing.GroupLayout.PREFERRED_SIZE, 24, javax.swing.GroupLayout.PREFERRED_SIZE)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addComponent(txtTheLoai, javax.swing.GroupLayout.PREFERRED_SIZE, 30, javax.swing.GroupLayout.PREFERRED_SIZE)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED)
.addComponent(jLabel2, javax.swing.GroupLayout.PREFERRED_SIZE, 23, javax.swing.GroupLayout.PREFERRED_SIZE)
.addGap(4, 4, 4)
.addComponent(txtTenSach, javax.swing.GroupLayout.PREFERRED_SIZE, 30, javax.swing.GroupLayout.PREFERRED_SIZE)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addComponent(jLabel5, javax.swing.GroupLayout.PREFERRED_SIZE, 25, javax.swing.GroupLayout.PREFERRED_SIZE)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addComponent(txtTacGia, javax.swing.GroupLayout.PREFERRED_SIZE, 30, javax.swing.GroupLayout.PREFERRED_SIZE)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addGroup(jPanel11Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(jLabel4, javax.swing.GroupLayout.PREFERRED_SIZE, 26, javax.swing.GroupLayout.PREFERRED_SIZE)
.addComponent(jLabel21))
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addGroup(jPanel11Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(txtNgonNgu, javax.swing.GroupLayout.PREFERRED_SIZE, 30, javax.swing.GroupLayout.PREFERRED_SIZE)
.addComponent(txtTaiBan, javax.swing.GroupLayout.PREFERRED_SIZE, 30, javax.swing.GroupLayout.PREFERRED_SIZE))
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addGroup(jPanel11Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(jLabel20)
.addComponent(jLabel24))
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addGroup(jPanel11Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(txtTrangThai, javax.swing.GroupLayout.PREFERRED_SIZE, 30, javax.swing.GroupLayout.PREFERRED_SIZE)
.addComponent(txtNamXB, javax.swing.GroupLayout.PREFERRED_SIZE, 30, javax.swing.GroupLayout.PREFERRED_SIZE))
.addGap(18, 18, 18)
.addComponent(btnHuy, javax.swing.GroupLayout.PREFERRED_SIZE, 40, javax.swing.GroupLayout.PREFERRED_SIZE)
.addContainerGap(javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))
);
jPanel10.add(jPanel11);
jPanel11.setBounds(20, 30, 350, 490);
btnXoa.setIcon(new javax.swing.ImageIcon(getClass().getResource("/Icon/delete.png"))); // NOI18N
btnXoa.setText("Xóa");
btnXoa.setBorder(javax.swing.BorderFactory.createLineBorder(new java.awt.Color(0, 102, 102), 3));
btnXoa.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
btnXoaActionPerformed(evt);
}
});
jPanel10.add(btnXoa);
btnXoa.setBounds(810, 390, 92, 40);
btnCAPNHAT.setIcon(new javax.swing.ImageIcon(getClass().getResource("/Icon/sửa sách.png"))); // NOI18N
btnCAPNHAT.setText("Cập nhật");
btnCAPNHAT.setBorder(javax.swing.BorderFactory.createLineBorder(new java.awt.Color(0, 102, 102), 3));
btnCAPNHAT.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
btnCAPNHATActionPerformed(evt);
}
});
jPanel10.add(btnCAPNHAT);
btnCAPNHAT.setBounds(930, 390, 92, 40);
btnThem.setIcon(new javax.swing.ImageIcon(getClass().getResource("/Icon/add.png"))); // NOI18N
btnThem.setText("Thêm");
btnThem.setBorder(javax.swing.BorderFactory.createLineBorder(new java.awt.Color(0, 102, 102), 3));
btnThem.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
btnThemActionPerformed(evt);
}
});
jPanel10.add(btnThem);
btnThem.setBounds(680, 390, 92, 40);
btnTimKiem.setIcon(new javax.swing.ImageIcon(getClass().getResource("/Icon/tìm kiếm.png"))); // NOI18N
btnTimKiem.setText("Tìm kiếm");
btnTimKiem.setBorder(javax.swing.BorderFactory.createLineBorder(new java.awt.Color(0, 102, 102), 3));
btnTimKiem.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
btnTimKiemActionPerformed(evt);
}
});
jPanel10.add(btnTimKiem);
btnTimKiem.setBounds(560, 390, 92, 40);
btnDangXuat.setIcon(new javax.swing.ImageIcon(getClass().getResource("/Icon/shutdown.png"))); // NOI18N
btnDangXuat.setText("Đăng xuất");
btnDangXuat.setBorder(javax.swing.BorderFactory.createLineBorder(new java.awt.Color(0, 102, 102), 3));
btnDangXuat.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
btnDangXuatActionPerformed(evt);
}
});
jPanel10.add(btnDangXuat);
btnDangXuat.setBounds(1030, 500, 120, 31);
jButton20.setIcon(new javax.swing.ImageIcon(getClass().getResource("/Icon/back.png"))); // NOI18N
jButton20.setText("Quay lại");
jButton20.setBorder(javax.swing.BorderFactory.createLineBorder(new java.awt.Color(0, 102, 102), 3));
jButton20.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jButton20ActionPerformed(evt);
}
});
jPanel10.add(jButton20);
jButton20.setBounds(450, 510, 110, 30);
jLabel16.setFont(new java.awt.Font("Dialog", 1, 11)); // NOI18N
jLabel16.setForeground(new java.awt.Color(0, 102, 102));
jLabel16.setText("Thông tin sách");
jPanel10.add(jLabel16);
jLabel16.setBounds(420, 70, 90, 15);
bang_sach.setModel(new javax.swing.table.DefaultTableModel(
new Object [][] {
{null, null, null, null},
{null, null, null, null},
{null, null, null, null},
{null, null, null, null}
},
new String [] {
"Title 1", "Title 2", "Title 3", "Title 4"
}
));
bang_sach.addMouseListener(new java.awt.event.MouseAdapter() {
public void mouseClicked(java.awt.event.MouseEvent evt) {
bang_sachMouseClicked(evt);
}
});
jScrollPane4.setViewportView(bang_sach);
jPanel10.add(jScrollPane4);
jScrollPane4.setBounds(450, 120, 713, 200);
jLabel18.setBorder(javax.swing.BorderFactory.createLineBorder(new java.awt.Color(0, 102, 102), 3));
jPanel10.add(jLabel18);
jLabel18.setBounds(440, 100, 730, 250);
jLabel23.setBackground(new java.awt.Color(0, 102, 102));
jLabel23.setFont(new java.awt.Font("Dialog", 1, 12)); // NOI18N
jLabel23.setForeground(new java.awt.Color(0, 102, 102));
jLabel23.setText("<NAME>");
jPanel10.add(jLabel23);
jLabel23.setBounds(440, 360, 70, 20);
jLabel22.setFont(new java.awt.Font("Dialog", 1, 22)); // NOI18N
jLabel22.setForeground(new java.awt.Color(0, 102, 102));
jLabel22.setText("QUẢ<NAME> <NAME>");
jPanel10.add(jLabel22);
jLabel22.setBounds(500, 10, 220, 40);
jLabel39.setBorder(javax.swing.BorderFactory.createLineBorder(new java.awt.Color(0, 102, 102), 3));
jPanel10.add(jLabel39);
jLabel39.setBounds(540, 370, 510, 80);
jButton6.setIcon(new javax.swing.ImageIcon("C:\\Users\\Admin\\Desktop\\thuvienduongdiem_12_6_2019\\database\\src\\Icon\\reset.png")); // NOI18N
jButton6.setBorder(javax.swing.BorderFactory.createLineBorder(new java.awt.Color(0, 102, 102), 3));
jButton6.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jButton6ActionPerformed(evt);
}
});
jPanel10.add(jButton6);
jButton6.setBounds(1066, 60, 50, 30);
jLabel37.setIcon(new javax.swing.ImageIcon("C:\\Users\\Admin\\Desktop\\thuvienduongdiem_12_6_2019\\database\\src\\Icon\\2397.jpg_wh1200.jpg")); // NOI18N
jLabel37.setBorder(javax.swing.BorderFactory.createLineBorder(new java.awt.Color(0, 102, 102), 5));
jPanel10.add(jLabel37);
jLabel37.setBounds(-10, 0, 1200, 570);
javax.swing.GroupLayout jPanel8Layout = new javax.swing.GroupLayout(jPanel8);
jPanel8.setLayout(jPanel8Layout);
jPanel8Layout.setHorizontalGroup(
jPanel8Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGap(0, 1642, Short.MAX_VALUE)
.addGroup(jPanel8Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(jPanel8Layout.createSequentialGroup()
.addComponent(jPanel10, javax.swing.GroupLayout.PREFERRED_SIZE, 1281, javax.swing.GroupLayout.PREFERRED_SIZE)
.addGap(0, 361, Short.MAX_VALUE)))
);
jPanel8Layout.setVerticalGroup(
jPanel8Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGap(0, 600, Short.MAX_VALUE)
.addGroup(jPanel8Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(javax.swing.GroupLayout.Alignment.TRAILING, jPanel8Layout.createSequentialGroup()
.addGap(0, 0, Short.MAX_VALUE)
.addComponent(jPanel10, javax.swing.GroupLayout.PREFERRED_SIZE, 574, javax.swing.GroupLayout.PREFERRED_SIZE)))
);
jTabbedPane1.addTab("Đầu sách", jPanel8);
jPanel9.setMinimumSize(new java.awt.Dimension(1600, 600));
jPanel9.setPreferredSize(new java.awt.Dimension(1600, 577));
jPanel12.setLayout(null);
bang_nxb.setModel(new javax.swing.table.DefaultTableModel(
new Object [][] {
},
new String [] {
"Title 1", "Title 2", "Title 3"
}
));
bang_nxb.addMouseListener(new java.awt.event.MouseAdapter() {
public void mouseClicked(java.awt.event.MouseEvent evt) {
bang_nxbMouseClicked(evt);
}
});
jScrollPane3.setViewportView(bang_nxb);
jPanel12.add(jScrollPane3);
jScrollPane3.setBounds(380, 110, 762, 230);
jPanel13.setBorder(javax.swing.BorderFactory.createLineBorder(new java.awt.Color(0, 102, 102), 3));
jLabel12.setFont(new java.awt.Font("Tahoma", 1, 12)); // NOI18N
jLabel12.setText("Tên nhà xuất bản");
jLabel13.setFont(new java.awt.Font("Tahoma", 1, 12)); // NOI18N
jLabel13.setText("Địa chỉ");
txtDiaChi.setBorder(javax.swing.BorderFactory.createLineBorder(new java.awt.Color(0, 102, 102)));
jLabel14.setFont(new java.awt.Font("Tahoma", 1, 12)); // NOI18N
jLabel14.setText("Số điện thoại");
txtSDT.setBorder(javax.swing.BorderFactory.createLineBorder(new java.awt.Color(0, 102, 102)));
jLabel25.setFont(new java.awt.Font("Dialog", 1, 12)); // NOI18N
jLabel25.setText("Mã nhà xuất bản");
txtmaNXB.setBorder(javax.swing.BorderFactory.createLineBorder(new java.awt.Color(0, 102, 102)));
txtTenNXB.setBorder(javax.swing.BorderFactory.createLineBorder(new java.awt.Color(0, 102, 102)));
btnHuy2.setIcon(new javax.swing.ImageIcon("C:\\Users\\Admin\\Desktop\\thuvienduongdiem_12_6_2019\\database\\src\\Icon\\reset.png")); // NOI18N
btnHuy2.setText("Hủy");
btnHuy2.setBorder(javax.swing.BorderFactory.createLineBorder(new java.awt.Color(0, 102, 102), 3));
btnHuy2.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
btnHuy2ActionPerformed(evt);
}
});
javax.swing.GroupLayout jPanel13Layout = new javax.swing.GroupLayout(jPanel13);
jPanel13.setLayout(jPanel13Layout);
jPanel13Layout.setHorizontalGroup(
jPanel13Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(jPanel13Layout.createSequentialGroup()
.addGroup(jPanel13Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(jPanel13Layout.createSequentialGroup()
.addContainerGap()
.addGroup(jPanel13Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING, false)
.addComponent(jLabel12)
.addComponent(jLabel13, javax.swing.GroupLayout.PREFERRED_SIZE, 85, javax.swing.GroupLayout.PREFERRED_SIZE)
.addComponent(txtDiaChi, javax.swing.GroupLayout.DEFAULT_SIZE, 194, Short.MAX_VALUE)
.addComponent(jLabel14, javax.swing.GroupLayout.PREFERRED_SIZE, 97, javax.swing.GroupLayout.PREFERRED_SIZE)
.addComponent(txtSDT)
.addComponent(jLabel25)
.addComponent(txtTenNXB)
.addComponent(txtmaNXB)))
.addGroup(jPanel13Layout.createSequentialGroup()
.addGap(79, 79, 79)
.addComponent(btnHuy2, javax.swing.GroupLayout.PREFERRED_SIZE, 85, javax.swing.GroupLayout.PREFERRED_SIZE)))
.addContainerGap(48, Short.MAX_VALUE))
);
jPanel13Layout.setVerticalGroup(
jPanel13Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(jPanel13Layout.createSequentialGroup()
.addGap(36, 36, 36)
.addComponent(jLabel25)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addComponent(txtmaNXB, javax.swing.GroupLayout.PREFERRED_SIZE, 30, javax.swing.GroupLayout.PREFERRED_SIZE)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED)
.addComponent(jLabel12, javax.swing.GroupLayout.PREFERRED_SIZE, 25, javax.swing.GroupLayout.PREFERRED_SIZE)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED)
.addComponent(txtTenNXB, javax.swing.GroupLayout.PREFERRED_SIZE, 30, javax.swing.GroupLayout.PREFERRED_SIZE)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED)
.addComponent(jLabel13, javax.swing.GroupLayout.PREFERRED_SIZE, 26, javax.swing.GroupLayout.PREFERRED_SIZE)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addComponent(txtDiaChi, javax.swing.GroupLayout.PREFERRED_SIZE, 31, javax.swing.GroupLayout.PREFERRED_SIZE)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addComponent(jLabel14, javax.swing.GroupLayout.PREFERRED_SIZE, 27, javax.swing.GroupLayout.PREFERRED_SIZE)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED)
.addComponent(txtSDT, javax.swing.GroupLayout.PREFERRED_SIZE, 29, javax.swing.GroupLayout.PREFERRED_SIZE)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, 21, Short.MAX_VALUE)
.addComponent(btnHuy2, javax.swing.GroupLayout.PREFERRED_SIZE, 40, javax.swing.GroupLayout.PREFERRED_SIZE)
.addGap(27, 27, 27))
);
jPanel12.add(jPanel13);
jPanel13.setBounds(30, 90, 260, 410);
btnThemNXB.setIcon(new javax.swing.ImageIcon(getClass().getResource("/Icon/add.png"))); // NOI18N
btnThemNXB.setText("Thêm");
btnThemNXB.setBorder(javax.swing.BorderFactory.createLineBorder(new java.awt.Color(0, 102, 102), 3));
btnThemNXB.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
btnThemNXBActionPerformed(evt);
}
});
jPanel12.add(btnThemNXB);
btnThemNXB.setBounds(510, 400, 100, 40);
jButton14.setIcon(new javax.swing.ImageIcon(getClass().getResource("/Icon/delete.png"))); // NOI18N
jButton14.setText("Xóa");
jButton14.setBorder(javax.swing.BorderFactory.createLineBorder(new java.awt.Color(0, 102, 102), 3));
jButton14.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jButton14ActionPerformed(evt);
}
});
jPanel12.add(jButton14);
jButton14.setBounds(660, 400, 97, 40);
btnSuaNXB.setIcon(new javax.swing.ImageIcon(getClass().getResource("/Icon/sửa sách.png"))); // NOI18N
btnSuaNXB.setText("Cập nhật");
btnSuaNXB.setBorder(javax.swing.BorderFactory.createLineBorder(new java.awt.Color(0, 102, 102), 3));
btnSuaNXB.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
btnSuaNXBActionPerformed(evt);
}
});
jPanel12.add(btnSuaNXB);
btnSuaNXB.setBounds(790, 400, 97, 40);
jLabel26.setBorder(javax.swing.BorderFactory.createLineBorder(new java.awt.Color(0, 102, 102), 3));
jPanel12.add(jLabel26);
jLabel26.setBounds(480, 380, 430, 80);
jLabel27.setBorder(javax.swing.BorderFactory.createLineBorder(new java.awt.Color(0, 102, 102), 3));
jPanel12.add(jLabel27);
jLabel27.setBounds(370, 100, 780, 250);
jLabel28.setFont(new java.awt.Font("Dialog", 1, 12)); // NOI18N
jLabel28.setForeground(new java.awt.Color(0, 102, 102));
jLabel28.setText("Hiển thị thông tin");
jPanel12.add(jLabel28);
jLabel28.setBounds(370, 70, 110, 16);
jLabel29.setFont(new java.awt.Font("Dialog", 1, 12)); // NOI18N
jLabel29.setForeground(new java.awt.Color(0, 102, 102));
jLabel29.setText("Chức năng");
jPanel12.add(jLabel29);
jLabel29.setBounds(440, 360, 70, 16);
jButton1.setIcon(new javax.swing.ImageIcon(getClass().getResource("/Icon/back.png"))); // NOI18N
jButton1.setText("Quay lại");
jButton1.setBorder(javax.swing.BorderFactory.createLineBorder(new java.awt.Color(0, 102, 102), 3));
jButton1.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jButton1ActionPerformed(evt);
}
});
jPanel12.add(jButton1);
jButton1.setBounds(350, 490, 110, 40);
jButton4.setIcon(new javax.swing.ImageIcon(getClass().getResource("/Icon/shutdown.png"))); // NOI18N
jButton4.setText("Đăng xuất");
jButton4.setBorder(javax.swing.BorderFactory.createLineBorder(new java.awt.Color(0, 102, 102), 3));
jPanel12.add(jButton4);
jButton4.setBounds(990, 490, 110, 40);
jLabel1.setFont(new java.awt.Font("Dialog", 1, 22)); // NOI18N
jLabel1.setForeground(new java.awt.Color(0, 102, 102));
jLabel1.setText("QUẢN LÝ NHÀ XUẤT BẢN");
jPanel12.add(jLabel1);
jLabel1.setBounds(390, 10, 310, 30);
jLabel34.setIcon(new javax.swing.ImageIcon("C:\\Users\\Admin\\Desktop\\thuvienduongdiem_12_6_2019\\database\\src\\Icon\\2397.jpg_wh1200.jpg")); // NOI18N
jLabel34.setBorder(javax.swing.BorderFactory.createLineBorder(new java.awt.Color(0, 102, 102), 5));
jPanel12.add(jLabel34);
jLabel34.setBounds(-10, 0, 1210, 580);
javax.swing.GroupLayout jPanel9Layout = new javax.swing.GroupLayout(jPanel9);
jPanel9.setLayout(jPanel9Layout);
jPanel9Layout.setHorizontalGroup(
jPanel9Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(jPanel9Layout.createSequentialGroup()
.addComponent(jPanel12, javax.swing.GroupLayout.PREFERRED_SIZE, 1235, javax.swing.GroupLayout.PREFERRED_SIZE)
.addGap(0, 407, Short.MAX_VALUE))
);
jPanel9Layout.setVerticalGroup(
jPanel9Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(jPanel9Layout.createSequentialGroup()
.addComponent(jPanel12, javax.swing.GroupLayout.PREFERRED_SIZE, 550, javax.swing.GroupLayout.PREFERRED_SIZE)
.addGap(0, 50, Short.MAX_VALUE))
);
jTabbedPane1.addTab("Nhà xuất bản", jPanel9);
jPanel2.setPreferredSize(new java.awt.Dimension(1600, 600));
jPanel2.setLayout(null);
TextMaNV.setBorder(javax.swing.BorderFactory.createLineBorder(new java.awt.Color(0, 102, 102)));
jPanel2.add(TextMaNV);
TextMaNV.setBounds(159, 264, 167, 30);
jLabel15.setFont(new java.awt.Font("Dialog", 1, 12)); // NOI18N
jLabel15.setText("Số lượng");
jPanel2.add(jLabel15);
jLabel15.setBounds(60, 170, 60, 16);
BThemVaoPhieuTam.setText("Thêm vào phiếu tạm");
jPanel2.add(BThemVaoPhieuTam);
BThemVaoPhieuTam.setBounds(374, 78, 140, 25);
jLabel6.setFont(new java.awt.Font("Dialog", 1, 12)); // NOI18N
jLabel6.setText("Nhà xuất bản");
jPanel2.add(jLabel6);
jLabel6.setBounds(60, 220, 88, 27);
DateNgayGiao.setBorder(javax.swing.BorderFactory.createLineBorder(new java.awt.Color(0, 102, 102)));
jPanel2.add(DateNgayGiao);
DateNgayGiao.setBounds(430, 220, 131, 30);
jLabel7.setText("Ngày giao");
jPanel2.add(jLabel7);
jLabel7.setBounds(356, 223, 83, 15);
TablePhieuTam.setModel(new javax.swing.table.DefaultTableModel(
new Object [][] {
},
new String [] {
"Tên sách", "Số lượng", "Đơn giá", "Nhà xuất bản"
}
));
jScrollPane2.setViewportView(TablePhieuTam);
jPanel2.add(jScrollPane2);
jScrollPane2.setBounds(50, 370, 510, 124);
jLabel8.setText("<NAME>");
jPanel2.add(jLabel8);
jLabel8.setBounds(356, 267, 65, 29);
BThemPhieu.setIcon(new javax.swing.ImageIcon("C:\\Users\\Admin\\Desktop\\ICON-20190611T140320Z-001\\ICON\\add.png")); // NOI18N
BThemPhieu.setText("Thêm");
BThemPhieu.setBorder(javax.swing.BorderFactory.createLineBorder(new java.awt.Color(0, 102, 102), 3));
jPanel2.add(BThemPhieu);
BThemPhieu.setBounds(650, 400, 92, 40);
jLabel9.setFont(new java.awt.Font("Dialog", 1, 12)); // NOI18N
jLabel9.setForeground(new java.awt.Color(0, 102, 102));
jLabel9.setText("Danh sách nhập sách tạm thời");
jPanel2.add(jLabel9);
jLabel9.setBounds(80, 330, 200, 26);
BXoaPhieu.setIcon(new javax.swing.ImageIcon("C:\\Users\\Admin\\Desktop\\ICON-20190611T140320Z-001\\ICON\\delete.png")); // NOI18N
BXoaPhieu.setText("Xóa");
BXoaPhieu.setBorder(javax.swing.BorderFactory.createLineBorder(new java.awt.Color(0, 102, 102), 3));
jPanel2.add(BXoaPhieu);
BXoaPhieu.setBounds(780, 400, 92, 40);
jLabel10.setFont(new java.awt.Font("Dialog", 1, 12)); // NOI18N
jLabel10.setForeground(new java.awt.Color(0, 102, 102));
jLabel10.setText("Danh sách phiếu nhập");
jPanel2.add(jLabel10);
jLabel10.setBounds(590, 80, 270, 32);
BSuaPhieu.setIcon(new javax.swing.ImageIcon("C:\\Users\\Admin\\Desktop\\ICON-20190611T140320Z-001\\ICON\\sửa sách.png")); // NOI18N
BSuaPhieu.setText("Cập nhật");
BSuaPhieu.setBorder(javax.swing.BorderFactory.createLineBorder(new java.awt.Color(0, 102, 102), 3));
BSuaPhieu.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
BSuaPhieuActionPerformed(evt);
}
});
jPanel2.add(BSuaPhieu);
BSuaPhieu.setBounds(890, 400, 92, 40);
jLabel35.setFont(new java.awt.Font("Dialog", 1, 12)); // NOI18N
jLabel35.setText("Mã phiếu nhập");
jPanel2.add(jLabel35);
jLabel35.setBounds(60, 80, 95, 16);
TextMaNhap.setEditable(false);
TextMaNhap.setBorder(javax.swing.BorderFactory.createLineBorder(new java.awt.Color(0, 102, 102)));
jPanel2.add(TextMaNhap);
TextMaNhap.setBounds(159, 73, 168, 30);
TextTenSach.setBorder(javax.swing.BorderFactory.createLineBorder(new java.awt.Color(0, 102, 102)));
TextTenSach.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
TextTenSachActionPerformed(evt);
}
});
jPanel2.add(TextTenSach);
TextTenSach.setBounds(159, 121, 168, 30);
jLabel36.setFont(new java.awt.Font("Dialog", 1, 12)); // NOI18N
jLabel36.setText("Tên sách");
jPanel2.add(jLabel36);
jLabel36.setBounds(60, 130, 70, 16);
TablePhieuNhap.setModel(new javax.swing.table.DefaultTableModel(
new Object [][] {
{null, null, null, null, null, null, null},
{null, null, null, null, null, null, null},
{null, null, null, null, null, null, null},
{null, null, null, null, null, null, null}
},
new String [] {
"Title 1", "Title 2", "Title 3", "Title 4", "Title 5", "Title 6", "Title 7"
}
));
jScrollPane1.setViewportView(TablePhieuNhap);
jPanel2.add(jScrollPane1);
jScrollPane1.setBounds(600, 130, 557, 170);
TextSL.setBorder(javax.swing.BorderFactory.createLineBorder(new java.awt.Color(0, 102, 102)));
jPanel2.add(TextSL);
TextSL.setBounds(159, 164, 168, 30);
CBBNXB.setModel(new javax.swing.DefaultComboBoxModel<>(new String[] { "Item 1", "Item 2", "Item 3", "Item 4" }));
CBBNXB.setBorder(javax.swing.BorderFactory.createLineBorder(new java.awt.Color(0, 102, 102)));
jPanel2.add(CBBNXB);
CBBNXB.setBounds(159, 215, 168, 30);
TextDonGia.setBorder(javax.swing.BorderFactory.createLineBorder(new java.awt.Color(0, 102, 102)));
jPanel2.add(TextDonGia);
TextDonGia.setBounds(430, 260, 92, 30);
jButton2.setIcon(new javax.swing.ImageIcon("C:\\Users\\Admin\\Desktop\\thuvienduongdiem_12_6_2019\\database\\src\\Icon\\back.png")); // NOI18N
jButton2.setText("Quay lại");
jButton2.setBorder(javax.swing.BorderFactory.createLineBorder(new java.awt.Color(0, 102, 102), 3));
jButton2.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jButton2ActionPerformed(evt);
}
});
jPanel2.add(jButton2);
jButton2.setBounds(630, 500, 110, 40);
jButton3.setIcon(new javax.swing.ImageIcon("C:\\Users\\Admin\\Desktop\\thuvienduongdiem_12_6_2019\\database\\src\\Icon\\shutdown.png")); // NOI18N
jButton3.setText("Đăng xuất");
jButton3.setBorder(javax.swing.BorderFactory.createLineBorder(new java.awt.Color(0, 102, 102), 3));
jButton3.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jButton3ActionPerformed(evt);
}
});
jPanel2.add(jButton3);
jButton3.setBounds(1060, 500, 110, 40);
jLabel11.setFont(new java.awt.Font("Dialog", 1, 22)); // NOI18N
jLabel11.setForeground(new java.awt.Color(0, 102, 102));
jLabel11.setText("QUẢN LÝ PHIẾU NHẬP SÁCH");
jPanel2.add(jLabel11);
jLabel11.setBounds(436, 23, 307, 29);
jLabel31.setFont(new java.awt.Font("Dialog", 1, 12)); // NOI18N
jLabel31.setText("M<NAME> thư");
jPanel2.add(jLabel31);
jLabel31.setBounds(60, 280, 80, 16);
jLabel30.setBorder(javax.swing.BorderFactory.createLineBorder(new java.awt.Color(0, 102, 102), 3));
jPanel2.add(jLabel30);
jLabel30.setBounds(40, 360, 530, 140);
jLabel32.setBorder(javax.swing.BorderFactory.createLineBorder(new java.awt.Color(0, 102, 102), 3));
jPanel2.add(jLabel32);
jLabel32.setBounds(590, 120, 580, 190);
jLabel38.setBorder(javax.swing.BorderFactory.createLineBorder(new java.awt.Color(0, 102, 102), 3));
jPanel2.add(jLabel38);
jLabel38.setBounds(620, 380, 540, 80);
jLabel41.setFont(new java.awt.Font("Dialog", 1, 12)); // NOI18N
jLabel41.setForeground(new java.awt.Color(0, 102, 102));
jLabel41.setText("Chức năng");
jPanel2.add(jLabel41);
jLabel41.setBounds(680, 340, 70, 30);
jButton5.setText("IN Phiếu Nhập Sách");
jButton5.setBorder(javax.swing.BorderFactory.createLineBorder(new java.awt.Color(0, 102, 102), 3));
jButton5.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jButton5ActionPerformed(evt);
}
});
jPanel2.add(jButton5);
jButton5.setBounds(1000, 400, 130, 40);
jLabel33.setIcon(new javax.swing.ImageIcon("C:\\Users\\Admin\\Desktop\\thuvienduongdiem_12_6_2019\\database\\src\\Icon\\2397.jpg_wh1200.jpg")); // NOI18N
jLabel33.setBorder(javax.swing.BorderFactory.createLineBorder(new java.awt.Color(0, 102, 102), 5));
jPanel2.add(jLabel33);
jLabel33.setBounds(0, 0, 1190, 580);
jTabbedPane1.addTab("Phiếu nhập sách", jPanel2);
javax.swing.GroupLayout PnDanhMucLayout = new javax.swing.GroupLayout(PnDanhMuc);
PnDanhMuc.setLayout(PnDanhMucLayout);
PnDanhMucLayout.setHorizontalGroup(
PnDanhMucLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(PnDanhMucLayout.createSequentialGroup()
.addGap(0, 0, 0)
.addComponent(jTabbedPane1, javax.swing.GroupLayout.PREFERRED_SIZE, 1647, javax.swing.GroupLayout.PREFERRED_SIZE)
.addContainerGap(javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))
);
PnDanhMucLayout.setVerticalGroup(
PnDanhMucLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(PnDanhMucLayout.createSequentialGroup()
.addContainerGap()
.addComponent(jTabbedPane1, javax.swing.GroupLayout.PREFERRED_SIZE, 600, Short.MAX_VALUE)
.addContainerGap())
);
PnMain.add(PnDanhMuc, "card2");
javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
getContentPane().setLayout(layout);
layout.setHorizontalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createSequentialGroup()
.addContainerGap(javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
.addComponent(PnMain, javax.swing.GroupLayout.PREFERRED_SIZE, 1190, javax.swing.GroupLayout.PREFERRED_SIZE))
);
layout.setVerticalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addComponent(PnMain, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
);
pack();
}// </editor-fold>//GEN-END:initComponents
private void btnHuy2ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_btnHuy2ActionPerformed
// TODO add your handling code here:
// HienThiDanhSachNhaXB();
}//GEN-LAST:event_btnHuy2ActionPerformed
private void btnSuaNXBActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_btnSuaNXBActionPerformed
// TODO add your handling code here:
CapNhatNhaXuatBan();
HienThiDanhSachChiTietNXB();
}//GEN-LAST:event_btnSuaNXBActionPerformed
private void jButton14ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jButton14ActionPerformed
// TODO add your handling code here:
XoaNhaXuatBan();
HienThiDanhSachChiTietNXB();
}//GEN-LAST:event_jButton14ActionPerformed
private void btnThemNXBActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_btnThemNXBActionPerformed
// TODO add your handling code here:
ThemNhaXuatBan();
HienThiDanhSachChiTietNXB();
}//GEN-LAST:event_btnThemNXBActionPerformed
private void bang_nxbMouseClicked(java.awt.event.MouseEvent evt) {//GEN-FIRST:event_bang_nxbMouseClicked
// TODO add your handling code here:
int i = bang_nxb.getSelectedRow();
TableModel model = bang_nxb.getModel();
txtmaNXB.setText(model.getValueAt(i, 0).toString());
txtTenNXB.setText(model.getValueAt(i, 1).toString());
txtDiaChi.setText(model.getValueAt(i, 2).toString());
txtSDT.setText(model.getValueAt(i, 3).toString());
}//GEN-LAST:event_bang_nxbMouseClicked
private void bang_sachMouseClicked(java.awt.event.MouseEvent evt) {//GEN-FIRST:event_bang_sachMouseClicked
int i = bang_sach.getSelectedRow();
TableModel model = bang_sach.getModel();
// txtMaSach.setText(model.getValueAt(i, 0).toString());
txtTheLoai.setText(model.getValueAt(i, 1).toString());
txtMaNhap.setText(model.getValueAt(i, 2).toString());
txtMaNXB.setText(model.getValueAt(i, 3).toString());
txtTenSach.setText(model.getValueAt(i, 4).toString());
txtTacGia.setText(model.getValueAt(i, 5).toString());
txtNamXB.setText(model.getValueAt(i, 6).toString());
txtTrangThai.setText(model.getValueAt(i, 7).toString());
txtNgonNgu.setText(model.getValueAt(i, 8).toString());
txtTaiBan.setText(model.getValueAt(i, 9).toString());
// TODO add your handling code here:
}//GEN-LAST:event_bang_sachMouseClicked
private void btnHuyActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_btnHuyActionPerformed
// TODO add your handling code here:
// HienThiDanhSachSach();
// txtMaSach.setText("");
txtTheLoai.setText("");
txtMaNhap.setText("");
txtMaNXB.setText("");
txtTenSach.setText("");
txtTacGia.setText("");
txtNamXB.setText("");
txtTrangThai.setText("");
txtNgonNgu.setText("");
txtTaiBan.setText("");
txtTenSach.requestFocus();
}//GEN-LAST:event_btnHuyActionPerformed
private void btnDangXuatActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_btnDangXuatActionPerformed
// TODO add your handling code here:
System.exit(0);
}//GEN-LAST:event_btnDangXuatActionPerformed
private void btnTimKiemActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_btnTimKiemActionPerformed
// TODO add your handling code here:
xuLyTimKiemSach();
}//GEN-LAST:event_btnTimKiemActionPerformed
private void btnThemActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_btnThemActionPerformed
// TODO add your handling code here:
ThemSach();
HienThiDanhSachSach();
}//GEN-LAST:event_btnThemActionPerformed
private void btnCAPNHATActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_btnCAPNHATActionPerformed
// TODO add your handling code here:
SuaSach();
HienThiDanhSachSach();
}//GEN-LAST:event_btnCAPNHATActionPerformed
private void btnXoaActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_btnXoaActionPerformed
// TODO add your handling code here:
XoaSach();
HienThiDanhSachSach();
}//GEN-LAST:event_btnXoaActionPerformed
private void txtTacGiaActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_txtTacGiaActionPerformed
// TODO add your handling code here:
}//GEN-LAST:event_txtTacGiaActionPerformed
private void jButton20ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jButton20ActionPerformed
// TODO add your handling code here:
new MenuThuThu().setVisible(true);
this.dispose();
}//GEN-LAST:event_jButton20ActionPerformed
private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jButton1ActionPerformed
// TODO add your handling code here:
new MenuThuThu().setVisible(true);
this.dispose();
}//GEN-LAST:event_jButton1ActionPerformed
private void jButton2ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jButton2ActionPerformed
// TODO add your handling code here:
new MenuThuThu().setVisible(true);
this.dispose();
}//GEN-LAST:event_jButton2ActionPerformed
private void jButton3ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jButton3ActionPerformed
// TODO add your handling code here:
System.exit(0);
}//GEN-LAST:event_jButton3ActionPerformed
private void jButton6ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jButton6ActionPerformed
// TODO add your handling code here:
HienThiDanhSachSach();
}//GEN-LAST:event_jButton6ActionPerformed
private void jButton5ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jButton5ActionPerformed
// TODO add your handling code here:
// TODO add your handling code here:
try {
Class.forName("oracle.jdbc.driver.OracleDriver");
String strConn="jdbc:oracle:thin:@localhost:1521/orcl11g";
conn=DriverManager.getConnection(strConn,"TRA","123456");
if(conn!=null)
{
System.out.println("Kết nối tới Oracle thành công");
}
else
{
System.out.println("Kết nối tới Oracle thất bại");
}
String reportPath="C:\\Users\\Admin\\Desktop\\thuvienduongdiem_12_6_2019\\database\\src\\Report\\PhieuNhapSach.jrxml";
HashMap pm= new HashMap();
pm.put("MaPhieuNhap",(String) this.TablePhieuNhap.getValueAt(this.TablePhieuNhap.getSelectedRow(), 0));
JasperReport jr= JasperCompileManager.compileReport(reportPath);
JasperPrint jp=JasperFillManager.fillReport(jr,pm,conn);
JasperViewer.viewReport(jp,false);
conn.close();
}catch(Exception e){
System.out.println(e.getMessage());
}
}//GEN-LAST:event_jButton5ActionPerformed
private void TextTenSachActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_TextTenSachActionPerformed
// TODO add your handling code here:
}//GEN-LAST:event_TextTenSachActionPerformed
private void BSuaPhieuActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_BSuaPhieuActionPerformed
// TODO add your handling code here:
}//GEN-LAST:event_BSuaPhieuActionPerformed
/*==============================================QUẢN LÝ DANH MỤC====================================================================*/
void setDefaultPhieuMuon(){
DefaultTableModel model=new DefaultTableModel();
String[] title={"Mã phiếu mượn","Tên sách","Số lượng","Đồng Giá","Ngày Giao","Mã nhân viên","Mã nhà xuất bản"};
model.setColumnIdentifiers(title);
ArrayList<PhieuNhapSachDTO> ar=new PhieuNhapSachBLL().getAllPhieu();
for(int i=0;i<ar.size();i++){
PhieuNhapSachDTO pn=ar.get(i);
String maphieu=pn.getMaPhieu();
String tensach=pn.getTenSach();
int soluong=pn.getSL();
int donggia=pn.getDongGia();
String ngaygiao=pn.getNgayGiao();
String manv=pn.getMaNV();
String manxb=pn.getMaNXB();
Object[]temp={maphieu,tensach,soluong,donggia,ngaygiao,manv,manxb};
model.addRow(temp);
}
this.TablePhieuNhap.setModel(model);
}
//
// @Override
public void actionPerformed(ActionEvent ae) {
if(ae.getSource().equals(BThemVaoPhieuTam)){
String strDate = new SimpleDateFormat("dd-MM-yyyy").format(new java.sql.Date(this.DateNgayGiao.getDate().getTime()));
NXBDTO nxb=(NXBDTO) CBBNXB.getSelectedItem();
PhieuNhapSachDTO pn=new PhieuNhapSachDTO(null, this.TextTenSach.getText(), Integer.parseInt(this.TextSL.getText()), Integer.parseInt(this.TextDonGia.getText()), strDate, this.TextMaNV.getText(), nxb.getMaNXB());
Object[]temp={pn.getTenSach(),pn.getSL(),pn.getDongGia(),pn.getMaNXB()};
DefaultTableModel model=(DefaultTableModel) this.TablePhieuTam.getModel();
model.addRow(temp);
this.TablePhieuTam.setModel(model);
}
if(ae.getSource().equals(BThemPhieu)){
String ma=DAL.Database.TaoMa("phieunhap");
for(int i=0;i<this.TablePhieuTam.getRowCount();i++){
String strDate = new SimpleDateFormat("dd-MM-yyyy").format(new java.sql.Date(this.DateNgayGiao.getDate().getTime()));
new PhieuNhapSachBLL().ThemPhieuNhap(new PhieuNhapSachDTO(ma, (String) this.TablePhieuTam.getValueAt(i, 0), (int) this.TablePhieuTam.getValueAt(i, 1), (int )this.TablePhieuTam.getValueAt(i, 2), strDate, this.TextMaNV.getText(),(String) this.TablePhieuTam.getValueAt(i, 3)));
// String sql="INSERT INTO PHIEUNHAPSACH VALUES(?,?,?,?,?,?,?)";
// try {
// PreparedStatement st=conectionJDBC().prepareStatement(sql);
// st.setString(1, ma);
// st.setString(2, (String) this.TablePhieuTam.getValueAt(i, 0));
// st.setInt(3, Integer.parseInt((String) this.TablePhieuTam.getValueAt(i, 1)));
// st.setInt(4, Integer.parseInt((String) this.TablePhieuTam.getValueAt(i, 2)));
// st.setString(5, (String) this.TablePhieuTam.getValueAt(i, 3));
// st.executeUpdate();
// } catch (SQLException ex) {
// Logger.getLogger(quanliphieunhapsach.class.getName()).log(Level.SEVERE, null, ex);
// }
this.setDefaultPhieuMuon();
}
}
if(ae.getSource().equals(BXoaPhieu)){
new PhieuNhapSachBLL().XoaPhieuNhap((String) this.TablePhieuNhap.getValueAt(this.TablePhieuNhap.getSelectedRow(), 0));
this.setDefaultPhieuMuon();
}
if(ae.getSource().equals(BSuaPhieu)){
String strDate = new SimpleDateFormat("dd-MM-yyyy").format(new java.sql.Date(this.DateNgayGiao.getDate().getTime()));
new PhieuNhapSachBLL().SuaPhieuNhap((String)this.TablePhieuNhap.getValueAt(this.TablePhieuNhap.getSelectedRow(), 0), new PhieuNhapSachDTO((String)this.TablePhieuNhap.getValueAt(this.TablePhieuNhap.getSelectedRow(), 0), this.TextTenSach.getText(), Integer.parseInt(this.TextSL.getText()), Integer.parseInt(this.TextDonGia.getText()), strDate, this.TextMaNV.getText(), ((NXBDTO)CBBNXB.getSelectedItem()).getMaNXB()),(String)this.TablePhieuNhap.getValueAt(this.TablePhieuNhap.getSelectedRow(), 1));
this.setDefaultPhieuMuon();
}
}
/*TÌM KIẾM SÁCH */
protected void xuLyTimKiemSach() {
danhmuc = new QuanLyDanhMucServices();
dsSach = danhmuc.TimKiemSachTheoTen(txtTenSach.getText(),txtTacGia.getText(),txtTheLoai.getText(),
txtMaNXB.getText(),txtMaNhap.getText(),txtTrangThai.getText(),txtNamXB.getText(),txtNgonNgu.getText(),txtTaiBan.getText());
model.setRowCount(0);
for (SachDTO sa : dsSach) {
Vector<Object> vec = new Vector<Object>();
vec.add(sa.getMaSach());
vec.add(sa.getTheLoai());
vec.add(sa.getMaNhap());
vec.add(sa.getMaNXB());
vec.add(sa.getTenSach());
vec.add(sa.getTacGia());
vec.add(sa.getNamXB());
vec.add(sa.getTrangThai());
vec.add(sa.getNgonNgu());
vec.add(sa.getTaiBan());
model.addRow(vec);
}
}
/*BẢNG SÁCH*/
public void HienThiDanhSachSach() {
try {
danhmuc = new QuanLyDanhMucServices();
dsSach = danhmuc.layToanBoSach();
model.setRowCount(0);
for (SachDTO sa : dsSach) {
Vector<Object> vec = new Vector<Object>();
vec.add(sa.getMaSach());
vec.add(sa.getTheLoai());
vec.add(sa.getMaNhap());
vec.add(sa.getMaNXB());
vec.add(sa.getTenSach());
vec.add(sa.getTacGia());
vec.add(sa.getNamXB());
vec.add(sa.getTrangThai());
vec.add(sa.getNgonNgu());
vec.add(sa.getTaiBan());
model.addRow(vec);
}
} catch (Exception ex) {
System.out.println(ex);
}
}
/*XOÁ SÁCH*/
public void XoaSach() {
try {
danhmuc = new QuanLyDanhMucServices();
danhmuc.xoaSach((String) this.bang_sach.getValueAt(this.bang_sach.getSelectedRow(), 0));
JOptionPane.showMessageDialog(null, "Đã xoá!");
} catch (Exception e) {
JOptionPane.showMessageDialog(null, "Thông báo lỗi:\n" + e.toString());
System.out.println(e);
}
}
/*THÊM SÁCH*/
public void ThemSach()
{
try {
danhmuc=new QuanLyDanhMucServices();
danhmuc.themSach( txtTheLoai.getText(), txtMaNhap.getText(),
txtMaNXB.getText(),txtTenSach.getText(),txtTacGia.getText(),
txtNamXB.getText(),txtTrangThai.getText() ,txtNgonNgu.getText(),txtTaiBan.getText());
JOptionPane.showMessageDialog(null,"Thêm sách thành công!");
} catch (Exception e) {
JOptionPane.showMessageDialog(null, "Thêm không thành công");
e.printStackTrace();
}
}
/*CẬP NHẬT SÁCH*/
public void SuaSach() {
try {
danhmuc = new QuanLyDanhMucServices();
danhmuc.suaSach((String) this.bang_sach.getValueAt(this.bang_sach.getSelectedRow(), 0), txtTheLoai.getText(), txtMaNhap.getText(),
txtMaNXB.getText(), txtTenSach.getText(), txtTacGia.getText(),
txtNamXB.getText(), txtTrangThai.getText(), txtNgonNgu.getText(), txtTaiBan.getText());
JOptionPane.showMessageDialog(null, " thành công!");
} catch (Exception e) {
JOptionPane.showMessageDialog(null, "không thành công");
e.printStackTrace();
}
}
/*BẢNG CHI TIẾT NXB*/
public void HienThiDanhSachChiTietNXB() {
try {
danhmuc = new QuanLyDanhMucServices();
dsNhaXB = danhmuc.LayToanBoctNhaXB();
model2.setRowCount(0);
for (NXBDTO xb : dsNhaXB) {
Vector<Object> vec = new Vector<Object>();
vec.add(xb.getMaNXB());
vec.add(xb.getTenNXB());
vec.add(xb.getDiaChi());
vec.add(xb.getSDT());
model2.addRow(vec);
}
} catch (Exception ex) {
System.out.println(ex);
}
}
/*TÌM KIẾM THEO NXB*/
// protected void xuLyTimKiemTheoNXB() {
//
// danhmuc=new QuanLyDanhMucServices();
// dsNhaXB=danhmuc.HienThiChiTietNhaXB(cBoNhaXB.getSelectedItem().toString());
// model2.setRowCount(0);
// for(NhaXuatBanDTO sa:dsNhaXB)
// {
// Vector<String>vec=new Vector<String>();
// vec.add(sa.getManxb());
// vec.add(sa.getTennxb());
// vec.add(sa.getDiachi());
// vec.add(sa.getSdt());
// model2.addRow(vec);
// }
//
//}
/*==================================================================================================*/
/*THEM NHA XUAT BAN*/
/*THEM NHA XUAT BAN*/
public void ThemNhaXuatBan()
{
try {
danhmuc=new QuanLyDanhMucServices();
danhmuc.themNXB( txtTenNXB.getText(), txtDiaChi.getText(), txtSDT.getText());
JOptionPane.showMessageDialog(null,"Thêm nhà xu?t b?n thành công!");
} catch (Exception e) {
JOptionPane.showMessageDialog(null, "Thêm không thành công");
e.printStackTrace();
}
}
/*XOA NHA XUAT BAN*/
public void XoaNhaXuatBan()
{
try {
danhmuc=new QuanLyDanhMucServices();
int i=bang_nxb.getSelectedRow();
danhmuc.xoaNXB(bang_nxb.getValueAt(i,0).toString());
JOptionPane.showMessageDialog(null,"Xoá nhà xu?t b?n thành công!");
} catch (Exception e) {
JOptionPane.showMessageDialog(null, "Xoá không thành công");
e.printStackTrace();
}
}
/*CAP NHAT NHA XUAT BAN*/
public void CapNhatNhaXuatBan() {
try {
danhmuc = new QuanLyDanhMucServices();
danhmuc.suaNXB(txtmaNXB.getText(), txtTenNXB.getText(), txtDiaChi.getText(), txtSDT.getText());
JOptionPane.showMessageDialog(null, "Cap nhat thành công!");
} catch (Exception e) {
JOptionPane.showMessageDialog(null, " không thành công");
e.printStackTrace();
}
}
protected void xuLyTimKiemTheoTenNXB() {
danhmuc = new QuanLyDanhMucServices();
dsNhaXB = danhmuc.TimKiemNXBTheoTen(txtTenNXB.getText());
model.setRowCount(0);
for (NXBDTO xb : dsNhaXB) {
Vector<Object> vec = new Vector<Object>();
vec.add(xb.getMaNXB());
vec.add(xb.getTenNXB());
vec.add(xb.getDiaChi());
vec.add(xb.getSDT());
model2.addRow(vec);
}
}
/*CONTROLS*/
private void addControls() {
// TODO Auto-generated method stub
model = new DefaultTableModel();
model.addColumn("Mã sách");
model.addColumn("Thể loại");
model.addColumn("Mã nhập");
model.addColumn("Mã NXB");
model.addColumn("Tên sách");
model.addColumn("Tên tác giả");
model.addColumn("Năm XB");
model.addColumn("Trạng thái");
model.addColumn("Ngôn ngữ");
model.addColumn("Tái bản");
bang_sach.setModel(model);
//////////////////////////
model2 = new DefaultTableModel();
model2.addColumn("Mã NXB");
model2.addColumn("Tên NXB");
model2.addColumn("Địa chỉ");
model2.addColumn("SĐT");
bang_nxb.setModel(model2);
}
/*=========================================================================================*/
/**
* @param args the command line arguments
*/
public static void main(String args[]) {
/* Set the Nimbus look and feel */
//<editor-fold defaultstate="collapsed" desc=" Look and feel setting code (optional) ">
/* If Nimbus (introduced in Java SE 6) is not available, stay with the default look and feel.
* For details see http://download.oracle.com/javase/tutorial/uiswing/lookandfeel/plaf.html
*/
try {
for (javax.swing.UIManager.LookAndFeelInfo info : javax.swing.UIManager.getInstalledLookAndFeels()) {
if ("Nimbus".equals(info.getName())) {
javax.swing.UIManager.setLookAndFeel(info.getClassName());
break;
}
}
} catch (ClassNotFoundException ex) {
java.util.logging.Logger.getLogger(quanlydanhmuc.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (InstantiationException ex) {
java.util.logging.Logger.getLogger(quanlydanhmuc.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (IllegalAccessException ex) {
java.util.logging.Logger.getLogger(quanlydanhmuc.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (javax.swing.UnsupportedLookAndFeelException ex) {
java.util.logging.Logger.getLogger(quanlydanhmuc.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
}
//</editor-fold>
//</editor-fold>
/* Create and display the form */
java.awt.EventQueue.invokeLater(new Runnable() {
public void run() {
quanlydanhmuc tt = new quanlydanhmuc();
tt.setDefaultCloseOperation(DISPOSE_ON_CLOSE);
tt.setLocationRelativeTo(null);
new quanlydanhmuc().setVisible(true);
}
});
}
// Variables declaration - do not modify//GEN-BEGIN:variables
private javax.swing.JButton BSuaPhieu;
private javax.swing.JButton BThemPhieu;
private javax.swing.JButton BThemVaoPhieuTam;
private javax.swing.JButton BXoaPhieu;
private javax.swing.JComboBox<String> CBBNXB;
private com.toedter.calendar.JDateChooser DateNgayGiao;
private javax.swing.JPanel PnDanhMuc;
private javax.swing.JPanel PnMain;
private javax.swing.JTable TablePhieuNhap;
private javax.swing.JTable TablePhieuTam;
private javax.swing.JTextField TextDonGia;
private javax.swing.JTextField TextMaNV;
private javax.swing.JTextField TextMaNhap;
private javax.swing.JTextField TextSL;
private javax.swing.JTextField TextTenSach;
private javax.swing.JTable bang_nxb;
private javax.swing.JTable bang_sach;
private javax.swing.JButton btnCAPNHAT;
private javax.swing.JButton btnDangXuat;
private javax.swing.JButton btnHuy;
private javax.swing.JButton btnHuy2;
private javax.swing.JButton btnSuaNXB;
private javax.swing.JButton btnThem;
private javax.swing.JButton btnThemNXB;
private javax.swing.JButton btnTimKiem;
private javax.swing.JButton btnXoa;
private javax.swing.JButton jButton1;
private javax.swing.JButton jButton14;
private javax.swing.JButton jButton2;
private javax.swing.JButton jButton20;
private javax.swing.JButton jButton3;
private javax.swing.JButton jButton4;
private javax.swing.JButton jButton5;
private javax.swing.JButton jButton6;
private javax.swing.JLabel jLabel1;
private javax.swing.JLabel jLabel10;
private javax.swing.JLabel jLabel11;
private javax.swing.JLabel jLabel12;
private javax.swing.JLabel jLabel13;
private javax.swing.JLabel jLabel14;
private javax.swing.JLabel jLabel15;
private javax.swing.JLabel jLabel16;
private javax.swing.JLabel jLabel17;
private javax.swing.JLabel jLabel18;
private javax.swing.JLabel jLabel19;
private javax.swing.JLabel jLabel2;
private javax.swing.JLabel jLabel20;
private javax.swing.JLabel jLabel21;
private javax.swing.JLabel jLabel22;
private javax.swing.JLabel jLabel23;
private javax.swing.JLabel jLabel24;
private javax.swing.JLabel jLabel25;
private javax.swing.JLabel jLabel26;
private javax.swing.JLabel jLabel27;
private javax.swing.JLabel jLabel28;
private javax.swing.JLabel jLabel29;
private javax.swing.JLabel jLabel3;
private javax.swing.JLabel jLabel30;
private javax.swing.JLabel jLabel31;
private javax.swing.JLabel jLabel32;
private javax.swing.JLabel jLabel33;
private javax.swing.JLabel jLabel34;
private javax.swing.JLabel jLabel35;
private javax.swing.JLabel jLabel36;
private javax.swing.JLabel jLabel37;
private javax.swing.JLabel jLabel38;
private javax.swing.JLabel jLabel39;
private javax.swing.JLabel jLabel4;
private javax.swing.JLabel jLabel41;
private javax.swing.JLabel jLabel5;
private javax.swing.JLabel jLabel6;
private javax.swing.JLabel jLabel7;
private javax.swing.JLabel jLabel8;
private javax.swing.JLabel jLabel9;
private javax.swing.JPanel jPanel10;
private javax.swing.JPanel jPanel11;
private javax.swing.JPanel jPanel12;
private javax.swing.JPanel jPanel13;
private javax.swing.JPanel jPanel2;
private javax.swing.JPanel jPanel8;
private javax.swing.JPanel jPanel9;
private javax.swing.JScrollPane jScrollPane1;
private javax.swing.JScrollPane jScrollPane2;
private javax.swing.JScrollPane jScrollPane3;
private javax.swing.JScrollPane jScrollPane4;
private javax.swing.JTabbedPane jTabbedPane1;
private javax.swing.JTextField txtDiaChi;
private javax.swing.JTextField txtMaNXB;
private javax.swing.JTextField txtMaNhap;
private javax.swing.JTextField txtNamXB;
private javax.swing.JTextField txtNgonNgu;
private javax.swing.JTextField txtSDT;
private javax.swing.JTextField txtTacGia;
private javax.swing.JTextField txtTaiBan;
private javax.swing.JTextField txtTenNXB;
private javax.swing.JTextField txtTenSach;
private javax.swing.JTextField txtTheLoai;
private javax.swing.JTextField txtTrangThai;
private javax.swing.JTextField txtmaNXB;
// End of variables declaration//GEN-END:variables
}
<file_sep>/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package DTO;
/**
*
* @author sam
*/
public class DoiMatKhauDTO {
private String TenTK;
private String MatKhau;
private String MatKhauMoi;
private String NhapLaiMatKhauMoi;
public String getTenTK() {
return TenTK;
}
public String getMatKhau() {
return MatKhau;
}
public String getMatKhauMoi() {
return MatKhauMoi;
}
public String getNhapLaiMatKhauMoi() {
return NhapLaiMatKhauMoi;
}
public void setTenTK(String TenTK) {
this.TenTK = TenTK;
}
public void setMatKhau(String MatKhau) {
this.MatKhau = MatKhau;
}
public void setMatKhauMoi(String MatKhauMoi) {
this.MatKhauMoi = MatKhauMoi;
}
public void setNhapLaiMatKhauMoi(String NhapLaiMatKhauMoi) {
this.NhapLaiMatKhauMoi = NhapLaiMatKhauMoi;
}
public DoiMatKhauDTO(String TenTK, String MatKhau, String MatKhauMoi, String NhapLaiMatKhauMoi) {
this.TenTK = TenTK;
this.MatKhau = MatKhau;
this.MatKhauMoi = MatKhauMoi;
this.NhapLaiMatKhauMoi = NhapLaiMatKhauMoi;
}
public DoiMatKhauDTO() {
}
}
<file_sep>/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package GUI;
import DAL.DangNhapAdminDAL;
import DAL.DangNhapDAL;
import static DAL.Database.CapNhatTrangThaiMuon;
import DAL.DocGiaDAL;
import DAL.ThuThuDangNhapDAL;
import DTO.DangNhapDTO;
import javax.swing.JOptionPane;
import LuuDN.Luu;
import java.io.File;
/**
*
* @author Admin
*/
public class DangNhapUI extends javax.swing.JFrame {
/**
* Creates new form DangNhapUI
*/
private void hienThiLaiThongTinDangNhap() {
File f = new File("login.data");
if (f.exists()) {
Object data = Luu.readData("login.data");
if (data != null) {
DangNhapDTO dn = (DangNhapDTO) data;
txtUserName.setText(dn.getTENDN());
txtPassword.setText(<PASSWORD>());
DangNhapDTO tt = (DangNhapDTO) data;
txtUserName.setText(tt.getTENDN());
txtPassword.setText(tt.getMAT<PASSWORD>());
chkSave.setSelected(true);
}
}
}
protected void xuLyDangNhap() {
DangNhapDAL dnService = new DangNhapDAL();
ThuThuDangNhapDAL ttService = new ThuThuDangNhapDAL();
DangNhapAdminDAL ad = new DangNhapAdminDAL();
DangNhapDTO dn = dnService.DangNhap(txtUserName.getText(), txtPassword.getText());
DangNhapDTO tt = ttService.DangNhap(txtUserName.getText(), txtPassword.getText());
DangNhapDTO admin = ad.DangNhap(txtUserName.getText(), txtPassword.getText());
if (dn != null) {
JOptionPane.showMessageDialog(null, "Đăng nhập thành công");
if (chkSave.isSelected()) {
Luu.saveData(dn, "login.data");
} else {
Luu.saveData(null, "login.data");
}
// MenuDocGia dg = new MenuDocGia();
// dg.setDefaultCloseOperation(DISPOSE_ON_CLOSE);
// dg.setLocationRelativeTo(null);
// dg.setVisible(true);
new MenuDocGia().setVisible(true);
this.dispose();
} else if (tt != null) {
JOptionPane.showMessageDialog(null, "Đăng nhập thành công");
if (chkSave.isSelected()) {
Luu.saveData(tt, "login.data");
} else {
Luu.saveData(null, "login.data");
}
// MenuThuThu dg = new MenuThuThu();
// dg.setDefaultCloseOperation(DISPOSE_ON_CLOSE);
// dg.setLocationRelativeTo(null);
// dg.setVisible(true);
MenuThuThu menu=new MenuThuThu();
menu.setState(this.txtUserName.getText());
menu.setVisible(true);
this.dispose();
// switch(tt.getLoaiTK()){
// case "thu thu":{
// MenuThuThu dg = new MenuThuThu();
// dg.setDefaultCloseOperation(DISPOSE_ON_CLOSE);
// dg.setLocationRelativeTo(null);
// dg.setVisible(true);
// }
// case "doc gia":{
// MenuDocGia dg = new MenuDocGia();
// dg.setDefaultCloseOperation(DISPOSE_ON_CLOSE);
// dg.setLocationRelativeTo(null);
// dg.setVisible(true);
// }
// }
} else {
if (admin != null) {
{
JOptionPane.showMessageDialog(null, "Đăng nhập thành công");
if (chkSave.isSelected()) {
Luu.saveData(admin, "login.data");
} else {
Luu.saveData(null, "login.data");
}
new quanlinhanvien().setVisible(true);
this.dispose();
}
} else {
JOptionPane.showMessageDialog(null, "Đăng nhập thất bại");
}
}
}
public DangNhapUI() {
initComponents();
CapNhatTrangThaiMuon();
hienThiLaiThongTinDangNhap();
this.setLocationRelativeTo(null);
}
/**
* This method is called from within the constructor to initialize the form.
* WARNING: Do NOT modify this code. The content of this method is always
* regenerated by the Form Editor.
*/
@SuppressWarnings("unchecked")
// <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents
private void initComponents() {
jLabel4 = new javax.swing.JLabel();
jSlider1 = new javax.swing.JSlider();
jPanel1 = new javax.swing.JPanel();
jLabel1 = new javax.swing.JLabel();
jPanel2 = new javax.swing.JPanel();
txtUserName = new javax.swing.JTextField();
chkSave = new javax.swing.JCheckBox();
btnHuy = new javax.swing.JButton();
txtPassword = new javax.swing.JPasswordField();
jLabel6 = new javax.swing.JLabel();
jLabel2 = new javax.swing.JLabel();
jLabel3 = new javax.swing.JLabel();
DANGNHAP_ = new javax.swing.JButton();
jLabel5 = new javax.swing.JLabel();
jLabel4.setText("jLabel4");
setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
jPanel1.setBackground(new java.awt.Color(0, 153, 153));
jLabel1.setFont(new java.awt.Font("Dialog", 0, 18)); // NOI18N
jLabel1.setForeground(new java.awt.Color(255, 255, 255));
jLabel1.setText("ĐĂNG NHẬP");
javax.swing.GroupLayout jPanel1Layout = new javax.swing.GroupLayout(jPanel1);
jPanel1.setLayout(jPanel1Layout);
jPanel1Layout.setHorizontalGroup(
jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(jPanel1Layout.createSequentialGroup()
.addGap(21, 21, 21)
.addComponent(jLabel1)
.addContainerGap(javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))
);
jPanel1Layout.setVerticalGroup(
jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(javax.swing.GroupLayout.Alignment.TRAILING, jPanel1Layout.createSequentialGroup()
.addContainerGap(javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
.addComponent(jLabel1)
.addContainerGap())
);
jPanel2.setPreferredSize(new java.awt.Dimension(500, 250));
txtUserName.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
txtUserNameActionPerformed(evt);
}
});
chkSave.setText("Tự động đăng nhập lần sau");
chkSave.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
chkSaveActionPerformed(evt);
}
});
btnHuy.setBackground(new java.awt.Color(204, 0, 0));
btnHuy.setFont(new java.awt.Font("Dialog", 0, 12)); // NOI18N
btnHuy.setIcon(new javax.swing.ImageIcon("C:\\Users\\Admin\\Desktop\\thuvienduongdiem_12_6_2019\\database\\src\\Icon\\shutdown.png")); // NOI18N
btnHuy.setText("Đăng xuất");
btnHuy.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
btnHuyActionPerformed(evt);
}
});
jLabel2.setFont(new java.awt.Font("Dialog", 0, 14)); // NOI18N
jLabel2.setText("Tên tài khoản");
jLabel3.setFont(new java.awt.Font("Dialog", 0, 14)); // NOI18N
jLabel3.setText("Mật khẩu");
DANGNHAP_.setBackground(new java.awt.Color(0, 204, 51));
DANGNHAP_.setFont(new java.awt.Font("Dialog", 0, 14)); // NOI18N
DANGNHAP_.setText("Đăng nhập");
DANGNHAP_.addMouseListener(new java.awt.event.MouseAdapter() {
public void mouseClicked(java.awt.event.MouseEvent evt) {
DANGNHAP_MouseClicked(evt);
}
});
DANGNHAP_.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
DANGNHAP_ActionPerformed(evt);
}
});
jLabel5.setIcon(new javax.swing.ImageIcon("C:\\Users\\Admin\\Desktop\\thuvienduongdiem_12_6_2019\\database\\src\\Icon\\library_cms_preview_80_80.png")); // NOI18N
javax.swing.GroupLayout jPanel2Layout = new javax.swing.GroupLayout(jPanel2);
jPanel2.setLayout(jPanel2Layout);
jPanel2Layout.setHorizontalGroup(
jPanel2Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(jPanel2Layout.createSequentialGroup()
.addGap(71, 71, 71)
.addComponent(DANGNHAP_)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, 141, Short.MAX_VALUE)
.addComponent(btnHuy)
.addGap(45, 45, 45))
.addGroup(jPanel2Layout.createSequentialGroup()
.addGroup(jPanel2Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(jPanel2Layout.createSequentialGroup()
.addGap(189, 189, 189)
.addComponent(jLabel6))
.addGroup(jPanel2Layout.createSequentialGroup()
.addGap(31, 31, 31)
.addGroup(jPanel2Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addComponent(jLabel2)
.addComponent(jLabel3, javax.swing.GroupLayout.Alignment.TRAILING, javax.swing.GroupLayout.PREFERRED_SIZE, 87, javax.swing.GroupLayout.PREFERRED_SIZE))
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED)
.addGroup(jPanel2Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING, false)
.addComponent(chkSave, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
.addComponent(txtPassword, javax.swing.GroupLayout.Alignment.TRAILING, javax.swing.GroupLayout.DEFAULT_SIZE, 218, Short.MAX_VALUE)
.addComponent(txtUserName, javax.swing.GroupLayout.Alignment.TRAILING)))
.addGroup(jPanel2Layout.createSequentialGroup()
.addGap(197, 197, 197)
.addComponent(jLabel5)))
.addContainerGap(javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))
);
jPanel2Layout.setVerticalGroup(
jPanel2Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(jPanel2Layout.createSequentialGroup()
.addComponent(jLabel6)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED)
.addGroup(jPanel2Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(txtUserName, javax.swing.GroupLayout.PREFERRED_SIZE, 32, javax.swing.GroupLayout.PREFERRED_SIZE)
.addComponent(jLabel2))
.addGap(18, 18, 18)
.addGroup(jPanel2Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(txtPassword, javax.swing.GroupLayout.PREFERRED_SIZE, 30, javax.swing.GroupLayout.PREFERRED_SIZE)
.addComponent(jLabel3))
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, 25, Short.MAX_VALUE)
.addComponent(jLabel5)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED)
.addComponent(chkSave)
.addGap(18, 18, 18)
.addGroup(jPanel2Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(DANGNHAP_)
.addComponent(btnHuy, javax.swing.GroupLayout.PREFERRED_SIZE, 28, javax.swing.GroupLayout.PREFERRED_SIZE))
.addGap(32, 32, 32))
);
javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
getContentPane().setLayout(layout);
layout.setHorizontalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addComponent(jPanel1, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
.addComponent(jPanel2, javax.swing.GroupLayout.DEFAULT_SIZE, 479, Short.MAX_VALUE)
);
layout.setVerticalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createSequentialGroup()
.addComponent(jPanel1, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addComponent(jPanel2, javax.swing.GroupLayout.DEFAULT_SIZE, 307, Short.MAX_VALUE))
);
pack();
}// </editor-fold>//GEN-END:initComponents
private void txtUserNameActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_txtUserNameActionPerformed
// TODO add your handling code here:
}//GEN-LAST:event_txtUserNameActionPerformed
private void chkSaveActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_chkSaveActionPerformed
// TODO add your handling code here:
}//GEN-LAST:event_chkSaveActionPerformed
// private void hienThiLaiThongTinDangNhap() {
// File f=new File("login.data");
// if(f.exists())
// {
// Object data=Luu.readData("login.data");
// if(data!=null)
// {
// DangNhapDTO dn=(DangNhapDTO) data;
// txtUserName.setText(dn.getTENDN());
// txtPassword.setText(dn.getMATKHAU());
// DangNhapDTO tt=(DangNhapDTO) data;
// txtUserName.setText(tt.getTENDN());
// txtPassword.setText(tt.get<PASSWORD>());
// chkSave.setSelected(true);
// }
// }
// }
//
// protected void xuLyDangNhap() {
// DocGiaDNService dnService=new DocGiaDNService();
// ThuThuDNService ttService= new ThuThuDNService();
// DangNhapDTO dn=dnService.DangNhap(txtUserName.getText(), txtPassword.getText());
// DangNhapDTO tt=ttService.DangNhap(txtUserName.getText(), txtPassword.getText());
// if(dn!=null)
// {
//
// JOptionPane.showMessageDialog(null, "Đăng nhập thành công");
// if(chkSave.isSelected())
// {
// Luu.saveData(dn, "login.data");
// }
// else
// {
// Luu.saveData(null, "login.data");
// }
// MenuDocGia dg= new MenuDocGia();
// dg.setDefaultCloseOperation(DISPOSE_ON_CLOSE);
// dg.setLocationRelativeTo(null);
// dg.setVisible(true);
//
// }
// else if(tt!=null)
// {
// JOptionPane.showMessageDialog(null, "Đăng nhập thành công");
// if(chkSave.isSelected())
// {
// Luu.saveData(tt, "login.data");
// }
// else
// {
// Luu.saveData(null, "login.data");
// }
// MenuThuThu dg=new MenuThuThu();
// dg.setDefaultCloseOperation(DISPOSE_ON_CLOSE);
// dg.setLocationRelativeTo(null);
// dg.setVisible(true);
//
// }
// else
// {
// JOptionPane.showMessageDialog(null, "Đăng nhập thất bại");
// }
// }
private void DANGNHAP_MouseClicked(java.awt.event.MouseEvent evt) {//GEN-FIRST:event_DANGNHAP_MouseClicked
// TODO add your handling code here:
xuLyDangNhap();
}//GEN-LAST:event_DANGNHAP_MouseClicked
private void DANGNHAP_ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_DANGNHAP_ActionPerformed
// TODO add your handling code here:
xuLyDangNhap();
}//GEN-LAST:event_DANGNHAP_ActionPerformed
private void btnHuyActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_btnHuyActionPerformed
// TODO add your handling c
// txtPassword.setText("");
// txtUserName.setText("");
// txtUserName.requestFocus();
System.exit(0);
}//GEN-LAST:event_btnHuyActionPerformed
/**
* @param args the command line arguments
*/
public static void main(String args[]) {
/* Set the Nimbus look and feel */
//<editor-fold defaultstate="collapsed" desc=" Look and feel setting code (optional) ">
/* If Nimbus (introduced in Java SE 6) is not available, stay with the default look and feel.
* For details see http://download.oracle.com/javase/tutorial/uiswing/lookandfeel/plaf.html
*/
try {
for (javax.swing.UIManager.LookAndFeelInfo info : javax.swing.UIManager.getInstalledLookAndFeels()) {
if ("Nimbus".equals(info.getName())) {
javax.swing.UIManager.setLookAndFeel(info.getClassName());
break;
}
}
} catch (ClassNotFoundException ex) {
java.util.logging.Logger.getLogger(DangNhapUI.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (InstantiationException ex) {
java.util.logging.Logger.getLogger(DangNhapUI.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (IllegalAccessException ex) {
java.util.logging.Logger.getLogger(DangNhapUI.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (javax.swing.UnsupportedLookAndFeelException ex) {
java.util.logging.Logger.getLogger(DangNhapUI.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
}
//</editor-fold>
/* Create and display the form */
java.awt.EventQueue.invokeLater(new Runnable() {
public void run() {
DangNhapUI dn = new DangNhapUI();
dn.setTitle("THƯ VIỆN TRƯỜNG THPT DƯỠNG ĐIỀM");
dn.setLocationRelativeTo(null);
dn.setVisible(true);
}
});
}
// Variables declaration - do not modify//GEN-BEGIN:variables
private javax.swing.JButton DANGNHAP_;
private javax.swing.JButton btnHuy;
private javax.swing.JCheckBox chkSave;
private javax.swing.JLabel jLabel1;
private javax.swing.JLabel jLabel2;
private javax.swing.JLabel jLabel3;
private javax.swing.JLabel jLabel4;
private javax.swing.JLabel jLabel5;
private javax.swing.JLabel jLabel6;
private javax.swing.JPanel jPanel1;
private javax.swing.JPanel jPanel2;
private javax.swing.JSlider jSlider1;
private javax.swing.JPasswordField txtPassword;
private javax.swing.JTextField txtUserName;
// End of variables declaration//GEN-END:variables
}
<file_sep>/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package GUI;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.SQLException;
import java.util.HashMap;
import net.sf.jasperreports.engine.JRException;
import net.sf.jasperreports.engine.JasperCompileManager;
import net.sf.jasperreports.engine.JasperFillManager;
import net.sf.jasperreports.engine.JasperPrint;
import net.sf.jasperreports.engine.JasperReport;
import net.sf.jasperreports.view.JasperViewer;
/**
*
* @author Admin
*/
public class thongkebaocao extends javax.swing.JFrame {
/**
* Creates new form thongkebaocao
*/
Connection conn;
public thongkebaocao() {
initComponents();
}
/**
* This method is called from within the constructor to initialize the form.
* WARNING: Do NOT modify this code. The content of this method is always
* regenerated by the Form Editor.
*/
@SuppressWarnings("unchecked")
// <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents
private void initComponents() {
jPanel1 = new javax.swing.JPanel();
jButton1 = new javax.swing.JButton();
jButton2 = new javax.swing.JButton();
jLabel1 = new javax.swing.JLabel();
jButton3 = new javax.swing.JButton();
jButton4 = new javax.swing.JButton();
jLabel2 = new javax.swing.JLabel();
jButton5 = new javax.swing.JButton();
setDefaultCloseOperation(javax.swing.WindowConstants.DISPOSE_ON_CLOSE);
setTitle("THƯ VIỆ TRƯỜNG THPT DƯỠNG ĐIỀM");
jPanel1.setLayout(null);
jButton1.setText("SÁCH MƯỢN THEO TỪNG NĂM");
jButton1.setBorder(javax.swing.BorderFactory.createLineBorder(new java.awt.Color(0, 102, 102), 3));
jButton1.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jButton1ActionPerformed(evt);
}
});
jPanel1.add(jButton1);
jButton1.setBounds(44, 91, 198, 89);
jButton2.setText("TIỀN PHẠT THEO TỪNG NĂM");
jButton2.setBorder(javax.swing.BorderFactory.createLineBorder(new java.awt.Color(0, 102, 102), 3));
jButton2.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jButton2ActionPerformed(evt);
}
});
jPanel1.add(jButton2);
jButton2.setBounds(248, 91, 196, 89);
jLabel1.setFont(new java.awt.Font("Dialog", 1, 24)); // NOI18N
jLabel1.setForeground(new java.awt.Color(0, 102, 102));
jLabel1.setText("<NAME>");
jPanel1.add(jLabel1);
jLabel1.setBounds(265, 41, 149, 32);
jButton3.setText("TỔNG TIỀN PHẠT");
jButton3.setBorder(javax.swing.BorderFactory.createLineBorder(new java.awt.Color(0, 102, 102), 3));
jButton3.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jButton3ActionPerformed(evt);
}
});
jPanel1.add(jButton3);
jButton3.setBounds(450, 91, 199, 89);
jButton4.setIcon(new javax.swing.ImageIcon("C:\\Users\\Admin\\Desktop\\thuvienduongdiem_12_6_2019\\database\\src\\Icon\\back.png")); // NOI18N
jButton4.setText("Quay lại");
jButton4.setBorder(javax.swing.BorderFactory.createLineBorder(new java.awt.Color(0, 102, 102), 3));
jButton4.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jButton4ActionPerformed(evt);
}
});
jPanel1.add(jButton4);
jButton4.setBounds(70, 240, 110, 30);
jLabel2.setIcon(new javax.swing.ImageIcon("C:\\Users\\Admin\\Desktop\\thuvienduongdiem_12_6_2019\\database\\src\\Icon\\2397.jpg_wh1200.jpg")); // NOI18N
jPanel1.add(jLabel2);
jLabel2.setBounds(-230, 0, 940, 300);
jButton5.setIcon(new javax.swing.ImageIcon("C:\\Users\\Admin\\Desktop\\thuvienduongdiem_12_6_2019\\database\\src\\Icon\\shutdown.png")); // NOI18N
jButton5.setText("Đăng xuất");
jButton5.setBorder(javax.swing.BorderFactory.createLineBorder(new java.awt.Color(0, 102, 102), 3));
jButton5.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jButton5ActionPerformed(evt);
}
});
javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
getContentPane().setLayout(layout);
layout.setHorizontalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup()
.addContainerGap(540, Short.MAX_VALUE)
.addComponent(jButton5, javax.swing.GroupLayout.PREFERRED_SIZE, 102, javax.swing.GroupLayout.PREFERRED_SIZE)
.addGap(58, 58, 58))
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createSequentialGroup()
.addComponent(jPanel1, javax.swing.GroupLayout.DEFAULT_SIZE, 688, Short.MAX_VALUE)
.addContainerGap()))
);
layout.setVerticalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup()
.addContainerGap(242, Short.MAX_VALUE)
.addComponent(jButton5)
.addGap(27, 27, 27))
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addComponent(jPanel1, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))
);
pack();
}// </editor-fold>//GEN-END:initComponents
private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jButton1ActionPerformed
// TODO add your handling code here:
try {
Class.forName("oracle.jdbc.driver.OracleDriver");
String strConn="jdbc:oracle:thin:@localhost:1521/orcl11g";
conn=DriverManager.getConnection(strConn,"TRA","123456");
if(conn!=null)
{
System.out.println("Kết nối tới Oracle thành công");
}
else
{
System.out.println("Kết nối tới Oracle thất bại");
}
String reportPath="C:\\Users\\Admin\\Desktop\\thuvienduongdiem_12_6_2019\\database\\src\\Report\\SachMuonTungNam.jrxml";
JasperReport jr= JasperCompileManager.compileReport(reportPath);
JasperPrint jp=JasperFillManager.fillReport(jr,null,conn);
JasperViewer.viewReport(jp);
conn.close();
}catch(Exception e){
System.out.println(e.getMessage());
}
}//GEN-LAST:event_jButton1ActionPerformed
private void jButton2ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jButton2ActionPerformed
try {
Class.forName("oracle.jdbc.driver.OracleDriver");
String strConn="jdbc:oracle:thin:@localhost:1521/orcl11g";
conn=DriverManager.getConnection(strConn,"TRA","123456");
if(conn!=null)
{
System.out.println("Kết nối tới Oracle thành công");
}
else
{
System.out.println("Kết nối tới Oracle thất bại");
}
String reportPath="C:\\Users\\Admin\\Desktop\\thuvienduongdiem_12_6_2019\\database\\src\\Report\\TienPhatTheoNam.jrxml";
JasperReport jr= JasperCompileManager.compileReport(reportPath);
JasperPrint jp=JasperFillManager.fillReport(jr,null,conn);
JasperViewer.viewReport(jp);
conn.close();
}catch(Exception e){
System.out.println(e.getMessage());
}
}//GEN-LAST:event_jButton2ActionPerformed
private void jButton3ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jButton3ActionPerformed
// TODO add your handling code here:
try {
Class.forName("oracle.jdbc.driver.OracleDriver");
String strConn="jdbc:oracle:thin:@localhost:1521/orcl11g";
conn=DriverManager.getConnection(strConn,"TRA","123456");
if(conn!=null)
{
System.out.println("Kết nối tới Oracle thành công");
}
else
{
System.out.println("Kết nối tới Oracle thất bại");
}
String reportPath="C:\\Users\\Admin\\Desktop\\thuvienduongdiem_12_6_2019\\database\\src\\Report\\TongTienPhat.jrxml";
JasperReport jr= JasperCompileManager.compileReport(reportPath);
JasperPrint jp=JasperFillManager.fillReport(jr,null,conn);
JasperViewer.viewReport(jp);
conn.close();
}catch(Exception e){
System.out.println(e.getMessage());
}
}//GEN-LAST:event_jButton3ActionPerformed
private void jButton4ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jButton4ActionPerformed
// TODO add your handling code here:
new MenuThuThu().setVisible(true);
this.dispose();
}//GEN-LAST:event_jButton4ActionPerformed
private void jButton5ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jButton5ActionPerformed
// TODO add your handling code here:
System.exit(0);
}//GEN-LAST:event_jButton5ActionPerformed
/**
* @param args the command line arguments
*/
public static void main(String args[]) {
/* Set the Nimbus look and feel */
//<editor-fold defaultstate="collapsed" desc=" Look and feel setting code (optional) ">
/* If Nimbus (introduced in Java SE 6) is not available, stay with the default look and feel.
* For details see http://download.oracle.com/javase/tutorial/uiswing/lookandfeel/plaf.html
*/
try {
for (javax.swing.UIManager.LookAndFeelInfo info : javax.swing.UIManager.getInstalledLookAndFeels()) {
if ("Nimbus".equals(info.getName())) {
javax.swing.UIManager.setLookAndFeel(info.getClassName());
break;
}
}
} catch (ClassNotFoundException ex) {
java.util.logging.Logger.getLogger(thongkebaocao.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (InstantiationException ex) {
java.util.logging.Logger.getLogger(thongkebaocao.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (IllegalAccessException ex) {
java.util.logging.Logger.getLogger(thongkebaocao.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (javax.swing.UnsupportedLookAndFeelException ex) {
java.util.logging.Logger.getLogger(thongkebaocao.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
}
//</editor-fold>
/* Create and display the form */
java.awt.EventQueue.invokeLater(new Runnable() {
public void run() {
new thongkebaocao().setVisible(true);
}
});
}
// Variables declaration - do not modify//GEN-BEGIN:variables
private javax.swing.JButton jButton1;
private javax.swing.JButton jButton2;
private javax.swing.JButton jButton3;
private javax.swing.JButton jButton4;
private javax.swing.JButton jButton5;
private javax.swing.JLabel jLabel1;
private javax.swing.JLabel jLabel2;
private javax.swing.JPanel jPanel1;
// End of variables declaration//GEN-END:variables
}
<file_sep>/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package DAL;
import static DAL.Database.conectionJDBC;
import DTO.NXBDTO;
import DTO.SachDTO;
import java.sql.CallableStatement;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.ArrayList;
import static DAL.Database.getData;
import java.util.logging.Level;
import java.util.logging.Logger;
/**
*
* @author Admin
*/
public class QuanLyDanhMucServices {
PreparedStatement pst;
ResultSet rs;
CallableStatement call;
/*DANH SÁCH BẢNG SÁCH*/
public ArrayList<SachDTO> layToanBoSach() {
ArrayList<SachDTO> ds = new ArrayList<SachDTO>();
try {
String sql = " SELECT MASACH,THELOAI,MANHAP,MANXB,TENSACH,TACGIA,NAMXB,TRANGTHAI,NGONNGU,TAIBAN FROM SACH";
pst = conectionJDBC().prepareStatement(sql);
rs = pst.executeQuery();
while (rs.next()) {
SachDTO sc=new SachDTO();
sc.setMaSach(rs.getString(1));
sc.setTheLoai(rs.getString(2));
sc.setMaNhap(rs.getString(3));
sc.setMaNXB(rs.getString(4));
sc.setTenSach(rs.getString(5));
sc.setTacGia(rs.getString(6));
sc.setNamXB(rs.getString(7));
sc.setTrangThai(rs.getString(8));
sc.setNgonNgu(rs.getString(9));
sc.setTaiBan(rs.getString(10));
ds.add(sc);
}
} catch (Exception ex) {
System.out.println(ex);
}
return ds;
}
/*TÌM KIẾM SÁCH */
public ArrayList<SachDTO> TimKiemSachTheoTen(String tensach, String tacgia, String theloai, String manxb,
String manhap, String trangthai,String namxb, String ngongu,String taiban )
{
ArrayList<SachDTO> dsSach = new ArrayList<SachDTO>();
try {
String sql = " SELECT MASACH,THELOAI,MANHAP,MANXB,TENSACH,TACGIA,NAMXB,TRANGTHAI,NGONNGU,TAIBAN FROM SACH"
+ " WHERE TENSACH like ? and THELOAI like ? and MANHAP like ?"
+ "and MANXB like ? and TACGIA like ? and NAMXB like ?"
+ "and TRANGTHAI like ? and NGONNGU like ? and TAIBAN like ? ";
pst = conectionJDBC().prepareStatement(sql);
pst.setString(1, "%" + tensach + "%");
pst.setString(2, "%" + theloai + "%");
pst.setString(3, "%" + manhap + "%");
pst.setString(4, "%" + manxb + "%");
pst.setString(5, "%" + tacgia + "%");
pst.setString(6, "%" + namxb + "%");
pst.setString(7, "%" + trangthai + "%");
pst.setString(8, "%" + ngongu + "%");
pst.setString(9, "%" + taiban + "%");
rs = pst.executeQuery();
while (rs.next()) {
SachDTO sc = new SachDTO();
sc.setMaSach(rs.getString(1));
sc.setTheLoai(rs.getString(2));
sc.setMaNhap(rs.getString(3));
sc.setMaNXB(rs.getString(4));
sc.setTenSach(rs.getString(5));
sc.setTacGia(rs.getString(6));
sc.setNamXB(rs.getString(7));
sc.setTrangThai(rs.getString(8));
sc.setNgonNgu(rs.getString(9));
sc.setTaiBan(rs.getString(10));
dsSach.add(sc);
}
} catch (Exception e) {
e.printStackTrace();
}
return dsSach;
}
/*XOÁ SÁCH*/
public void xoaSach(String ma) {
try {
// String sql = "delete from SACH where MASACH=?";
// pst = conectionJDBC().prepareStatement(sql);
// pst.setString(1, ma);
// pst.execute();
String sql="{call SP_XOASACH(?)}";
CallableStatement st=conectionJDBC().prepareCall(sql);
st.setString(1, ma);
st.execute();
} catch (Exception ex) {
ex.printStackTrace();
}
}
/*THÊM SÁCH*/
public void themSach( String theloai, String manhap,String manxb,String tensach,
String tentg, String namxb,String trangthai, String ngonngu, String taiban)
{
try {
String sql="INSERT INTO SACH(THELOAI,MANHAP,MANXB,TENSACH,TACGIA,NAMXB,TRANGTHAI,NGONNGU,TAIBAN)VALUES(?,?,?,?,?,?,?,?,?) ";
//call=conn.prepareCall("{call THUVIEN.SP_THEMNXB(?,?,?,?) }");
pst=conectionJDBC().prepareStatement(sql);
// pst.setString(1,ma);
pst.setString(1,theloai);
pst.setString(2,manhap);
pst.setString(3,manxb);
pst.setString(4,tensach);
pst.setString(5,tentg);
pst.setString(6,namxb);
//callStatement.setInt(2, Integer.parseInt(txtNamXuatBan.getText()));
pst.setString(7,trangthai);
pst.setString(8,ngonngu);
pst.setString(9,taiban);
rs=pst.executeQuery();
} catch (SQLException ex) {
ex.printStackTrace();
}
}
/*CẠP NHẬT SÁCH*/
public void suaSach(String ma, String theloai, String manhap, String manxb, String tensach,
String tentg, String namxb, String trangthai, String ngonngu, String taiban) {
try {
String sql = "update SACH set THELOAI=?,MANHAP=?,MANXB=?,TENSACH=?,TACGIA=?,NAMXB=?,TRANGTHAI=?, NGONNGU=?, TAIBAN=? WHERE MASACH=? ";
pst = conectionJDBC().prepareStatement(sql);
pst.setString(10, ma);
pst.setString(1, theloai);
pst.setString(2, manhap);
pst.setString(3, manxb);
pst.setString(4, tensach);
pst.setString(5, tentg);
pst.setString(6, namxb);
pst.setString(7, trangthai);
pst.setString(8, ngonngu);
pst.setString(9, taiban);
pst.executeUpdate();
} catch (Exception e) {
e.printStackTrace();
}
}
/*BANG DANH SÁCH NXB*/
public ArrayList<NXBDTO> LayToanBoctNhaXB() {
ArrayList<NXBDTO> dsNXB = new ArrayList<NXBDTO>();
try {
String sql = " SELECT * FROM NHAXUATBAN ";
pst = conectionJDBC().prepareStatement(sql);
rs = pst.executeQuery();
while (rs.next()) {
NXBDTO tl = new NXBDTO();
tl.setMaNXB(rs.getString(1));
tl.setTenNXB(rs.getString(2));
tl.setDiaChi(rs.getString(3));
tl.setSDT(rs.getString(4));
dsNXB.add(tl);
}
} catch (Exception e) {
e.printStackTrace();
}
return dsNXB;
}
/*DANHSACH COMBOBOX NHÀ XUẤT BẢN*/
public ArrayList<NXBDTO> DanhSachNhaXuatBan() {
ArrayList<NXBDTO> dsNXB = new ArrayList<NXBDTO>();
try {
String sql = " SELECT * FROM NHAXUATBAN ";
pst = conectionJDBC().prepareStatement(sql);
rs = pst.executeQuery();
while (rs.next()) {
NXBDTO tl = new NXBDTO();
tl.setTenNXB(rs.getString(2));
dsNXB.add(tl);
}
} catch (Exception e) {
e.printStackTrace();
}
return dsNXB;
}
/*TÌM KIẾM THEO MAX NXB*/
public ArrayList<NXBDTO> TimKiemNXBTheoTen(String ten) {
ArrayList<NXBDTO> ds= new ArrayList<NXBDTO>();
try {
String sql = " SELECT * FROM NHAXUATBAN " + "WHERE TENNXB like ?";
pst = conectionJDBC().prepareStatement(sql);
pst.setString(1, "%"+ten+"%");
rs = pst.executeQuery();
while (rs.next()) {
NXBDTO tl = new NXBDTO();
tl.setMaNXB(rs.getString(1));
tl.setTenNXB(rs.getString(2));
tl.setDiaChi(rs.getString(3));
tl.setSDT(rs.getString(4));
ds.add(tl);
}
} catch (Exception e) {
e.printStackTrace();
}
return ds;
}
/*THÊM NHÀ XU?T B?N*/
public void themNXB( String tennxb, String diachi,String sdt)
{
try {
String sql="INSERT INTO NHAXUATBAN(TENNXB, DIACHI,SDT)VALUES(?,?,?) ";
//call=conn.prepareCall("{call THUVIEN.SP_THEMNXB(?,?,?,?) }");
pst=conectionJDBC().prepareStatement(sql);
//pst.setString(1,manxb);
pst.setString(1,tennxb);
pst.setString(2,diachi);
pst.setString(3,sdt);
rs=pst.executeQuery();
} catch (SQLException ex) {
ex.printStackTrace();
}
}
/*XOÁ NHÀ XUẤT BẢN*/
public void xoaNXB(String ma) {
String getmasach = "select masach from sach where manxb='" + ma + "'";
ArrayList<String> ar = new ArrayList<>();
ResultSet rs = getData(conectionJDBC(), getmasach);
try {
while (rs.next()) {
ar.add(rs.getString(1));
}
} catch (SQLException ex) {
Logger.getLogger(QuanLyDanhMucServices.class.getName()).log(Level.SEVERE, null, ex);
}
for(int i=0;i<ar.size();i++){
String sqltemp="delete from phieumuon where masach='"+ar.get(i)+"'";
try {
pst=conectionJDBC().prepareStatement(sqltemp);
pst.execute();
sqltemp="delete from phieuphat where masach='"+ar.get(i)+"'";
pst=conectionJDBC().prepareStatement(sqltemp);
pst.execute();
sqltemp="delete from qtmuon where masach='"+ar.get(i)+"'";
pst=conectionJDBC().prepareStatement(sqltemp);
pst.execute();
sqltemp="delete from sach where masach='"+ar.get(i)+"'";
pst=conectionJDBC().prepareStatement(sqltemp);
pst.execute();
} catch (SQLException ex) {
Logger.getLogger(QuanLyDanhMucServices.class.getName()).log(Level.SEVERE, null, ex);
}
}
try {
String sqlnxb = "delete from NHAXUATBAN where MANXB=?";
pst = conectionJDBC().prepareStatement(sqlnxb);
pst.setString(1, ma);
pst.execute();
sqlnxb = "delete from phieunhapsach where MANXB=?";
pst = conectionJDBC().prepareStatement(sqlnxb);
pst.setString(1, ma);
pst.execute();
} catch (Exception ex) {
ex.printStackTrace();
}
}
/*CẬP NHẬT NHÀ XUẤT BẢN*/
public void suaNXB(String manxb, String tennxb, String diachi, String sdt) {
try {
String sql = "update NHAXUATBAN set TENNXB=?,DIACHI=?,SDT=? WHERE MANXB=? ";
pst = conectionJDBC().prepareStatement(sql);
pst.setString(1, tennxb);
pst.setString(2, diachi);
pst.setString(3, sdt);
pst.setString(4, manxb);
pst.executeUpdate();
} catch (Exception e) {
e.printStackTrace();
}
}
}
<file_sep>/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package LuuDN;
/**
*
* @author Admin
*/
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
public class Luu {
public static void saveData(Object data,String path)
{
try
{
FileOutputStream fos=new FileOutputStream(path);
ObjectOutputStream oos=new ObjectOutputStream(fos);
oos.writeObject(data);
oos.close();
fos.close();
}
catch(Exception ex)
{
ex.printStackTrace();
}
}
public static Object readData(String path)
{
try
{
FileInputStream fis=new FileInputStream(path);
ObjectInputStream ois=new ObjectInputStream(fis);
Object data=ois.readObject();
ois.close();
fis.close();
return data;
}
catch(Exception ex)
{
ex.printStackTrace();
}
return null;
}
}
| cf47c4fb926dad6747ad8b955fdaed98f5a2a6f7 | [
"Java"
] | 7 | Java | KimThaoUitk12/----n-qu-n-l--th--vi-n | c1d91cf8de7073ec489c693623cbd90f2cf663d3 | 54580cbd06ee67b76570aca2102c199ed0036a68 |
refs/heads/main | <repo_name>Yokehaha/JinJiang<file_sep>/README.md
# JinJiang
JinJiang's Educational Administration System
| 4477f6a34df81c85d2b99663a2f601ec07f71343 | [
"Markdown"
] | 1 | Markdown | Yokehaha/JinJiang | 4f0a53bd42c7bb25ab7976d23b57fd65b2b45586 | 4ed3a0414ef57fadbf3be7521e335e91a0a45c9c |
refs/heads/master | <file_sep>workflow-alertgru.sms.billingAccountNeeded=true
workflow-notifygru.dateformat=dd/MM/yyyy
workflow-notifygru.selectSize=100
daemon.AlertGruDaemon.interval=86400
daemon.AlertGruDaemon.onstartup=1
<file_sep>/*
* Copyright (c) 2002-2022, City of Paris
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright notice
* and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright notice
* and the following disclaimer in the documentation and/or other materials
* provided with the distribution.
*
* 3. Neither the name of 'Mairie de Paris' nor 'Lutece' nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
* License 1.0
*/
package fr.paris.lutece.plugins.workflow.modules.alertgru.service;
import fr.paris.lutece.plugins.workflow.modules.alertgru.business.UpdateTaskStateResourceQueue;
import fr.paris.lutece.plugins.workflow.modules.alertgru.business.UpdateTaskStateResourceQueueHome;
import fr.paris.lutece.plugins.workflow.utils.WorkflowUtils;
import fr.paris.lutece.plugins.workflowcore.business.resource.ResourceHistory;
import fr.paris.lutece.plugins.workflowcore.business.resource.ResourceWorkflow;
import fr.paris.lutece.plugins.workflowcore.service.config.ITaskConfigService;
import fr.paris.lutece.plugins.workflowcore.service.resource.IResourceHistoryService;
import fr.paris.lutece.plugins.workflowcore.service.resource.IResourceWorkflowService;
import fr.paris.lutece.plugins.workflowcore.service.task.SimpleTask;
import java.sql.Timestamp;
import java.util.Locale;
import java.util.Optional;
import javax.inject.Inject;
import javax.inject.Named;
import javax.servlet.http.HttpServletRequest;
public class AlertGruTask extends SimpleTask
{
/** The _task alert gru config service. */
// SERVICES
@Inject
@Named( AlertGruTaskConfigService.BEAN_SERVICE )
private ITaskConfigService _taskAlertGruConfigService;
/** The _task notify gru history service. */
@Inject
@Named( "workflow-alertgru.alertGruHistoryService" )
private IAlertGruHistoryService _taskAlertGruHistoryService;
@Inject
private IResourceHistoryService _resourceHistoryService;
@Inject
private IResourceWorkflowService _resourceWorkflowService;
@Override
public void processTask( int nIdResourceHistory, HttpServletRequest request, Locale locale )
{
ResourceHistory resourceHistory = _resourceHistoryService.findByPrimaryKey( nIdResourceHistory );
Optional<Timestamp> referenceDate = TaskAlertService.INSNACE.getReferenceDateAlert( this.getId( ), resourceHistory, request );
if ( referenceDate.isPresent( ) )
{
ResourceWorkflow resourceWorkflow = _resourceWorkflowService.findByPrimaryKey( resourceHistory.getIdResource( ), resourceHistory.getResourceType( ),
resourceHistory.getWorkflow( ).getId( ) );
UpdateTaskStateResourceQueue updateResourceQueue = new UpdateTaskStateResourceQueue( );
updateResourceQueue.setIdResource( resourceHistory.getIdResource( ) );
updateResourceQueue.setIdResourceHistory( nIdResourceHistory );
updateResourceQueue.setIdTask( getId( ) );
updateResourceQueue.setIdExternalParent( resourceWorkflow.getExternalParentId( ) );
updateResourceQueue.setIdWorkflow( resourceWorkflow.getWorkflow( ).getId( ) );
updateResourceQueue.setResourceType( resourceHistory.getResourceType( ) );
updateResourceQueue.setStatus( true );
updateResourceQueue.setCreationDate( resourceHistory.getCreationDate( ) );
updateResourceQueue.setAlertReferenceDate( referenceDate.get( ) );
updateResourceQueue.setIdState( resourceWorkflow.getState( ).getId( ) );
Optional<UpdateTaskStateResourceQueue> resourceQueue = UpdateTaskStateResourceQueueHome.find( resourceHistory.getIdResource( ), getId(),
resourceHistory.getResourceType( ) );
if ( resourceQueue.isPresent( ) )
{
updateResourceQueue.setIdResourceQueue( resourceQueue.get( ).getIdResourceQueue( ) );
UpdateTaskStateResourceQueueHome.update( updateResourceQueue );
}
else
{
UpdateTaskStateResourceQueueHome.create( updateResourceQueue );
}
}
}
/**
* (non-Javadoc)
*
* @see fr.paris.lutece.plugins.workflowcore.service.task.SimpleTask#doRemoveConfig()
*/
@Override
public void doRemoveConfig( )
{
_taskAlertGruConfigService.remove( this.getId( ) );
_taskAlertGruHistoryService.removeByTask( this.getId( ), WorkflowUtils.getPlugin( ) );
UpdateTaskStateResourceQueueHome.removeByIdTask( this.getId( ) );
}
/**
* {@inheritDoc}
*
* @param nIdHistory
*/
@Override
public void doRemoveTaskInformation( int nIdHistory )
{
_taskAlertGruHistoryService.removeByHistory( nIdHistory, this.getId( ), WorkflowUtils.getPlugin( ) );
UpdateTaskStateResourceQueueHome.removeByResourceHistory( nIdHistory );
}
/**
* {@inheritDoc}
*
* @param locale
* @return
*/
@Override
public String getTitle( Locale locale )
{
return "Alert notification GRU";
}
}
<file_sep>/*
* Copyright (c) 2002-2022, City of Paris
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright notice
* and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright notice
* and the following disclaimer in the documentation and/or other materials
* provided with the distribution.
*
* 3. Neither the name of 'Mairie de Paris' nor 'Lutece' nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
* License 1.0
*/
package fr.paris.lutece.plugins.workflow.modules.alertgru.business;
import java.util.List;
import java.util.Optional;
import fr.paris.lutece.plugins.workflow.modules.alertgru.service.AlertGruPlugin;
import fr.paris.lutece.portal.service.spring.SpringContextService;
/**
*
* UpdateTaskStateResourceQueueService
*
*/
public class UpdateTaskStateResourceQueueHome
{
private static IUpdateTaskStateResourceQueueDAO _updateResourceQueueDAO = SpringContextService
.getBean( "workflow-alertgru.updateTaskStateResourceQueueDAO" );
private UpdateTaskStateResourceQueueHome( )
{
}
public static void create( UpdateTaskStateResourceQueue updateResourceQueue )
{
_updateResourceQueueDAO.insert( updateResourceQueue, AlertGruPlugin.getPlugin( ) );
}
public static void update( UpdateTaskStateResourceQueue updateResourceQueue )
{
_updateResourceQueueDAO.store( updateResourceQueue, AlertGruPlugin.getPlugin( ) );
}
/**
* Load the data of all the updateTaskStateResourceQueue objects and returns them as a collection
*
* @return the List which contains the data of all the updateTaskStateResourceQueue objects
*/
public static List<UpdateTaskStateResourceQueue> findAllActived( )
{
return _updateResourceQueueDAO.selectAllActived( AlertGruPlugin.getPlugin( ) );
}
/**
* Load the data of all the updateTaskStateResourceQueue objects and returns them as a collection
*
* @return the List which contains the data of all the updateTaskStateResourceQueue objects
*/
public static List<UpdateTaskStateResourceQueue> findAllDisabled( )
{
return _updateResourceQueueDAO.selectAllDisabled( AlertGruPlugin.getPlugin( ) );
}
/**
* Load the data from the table
*
* @param nIdResourceHistory
* The nIdResourceHistory of the updateTaskStateResourceQueue
* @param nIdTask
* The nIdTask of the updateTaskStateResourceQueue
* @return The instance of the updateTaskStateResourceQueue
*/
public static Optional<UpdateTaskStateResourceQueue> find( int nIdResourceHistory, int nIdTask )
{
return _updateResourceQueueDAO.load( nIdResourceHistory, nIdTask, AlertGruPlugin.getPlugin( ) );
}
public static void removeByPrimaryKey( int nIdResourceQueues )
{
_updateResourceQueueDAO.deleteByPrimaryKey( nIdResourceQueues, AlertGruPlugin.getPlugin( ) );
}
/**
* Delete a record from the table
*
* @param nIdUpdateTaskStateResourceQueue
*/
public static void removeByIdTask( int nIdTask )
{
_updateResourceQueueDAO.deleteByIdTask( nIdTask, AlertGruPlugin.getPlugin( ) );
}
/**
* Remove a record from the table
*
* @param IdResourceHistory
* the resource history id of the resource workflow
* @param plugin
* The plugin
*/
public static void removeByResourceHistory( int nIdResourceHistory )
{
_updateResourceQueueDAO.deleteByResourceHistory( nIdResourceHistory, AlertGruPlugin.getPlugin( ) );
}
/**
* Remove a record from the table
*
* @param nIdResource
* The nIdResource of the updateTaskStateResourceQueue
* @param strResourceType
* The resource type of the updateTaskStateResourceQueue
* @param plugin
* the plugin
*/
public static void removeByResource( int nIdResource, String strResourceType )
{
_updateResourceQueueDAO.deleteByResource( nIdResource, strResourceType, AlertGruPlugin.getPlugin( ) );
}
/**
* Load the id of all the updateTaskStateResourceQueue and returns them as a collection
*
* @return the List which contains the id of all the updateTaskStateResourceQueue objects
*/
public static List<Integer> findAllIdQueueActived( )
{
return _updateResourceQueueDAO.selectAllIdQueueActived( AlertGruPlugin.getPlugin( ) );
}
/**
* Load the data from the table
*
* @param listIdResourceQueues
* The identifier list of the updateTaskStateResourceQueue
* @return The instance list of the updateTaskStateResourceQueue
*/
public static List<UpdateTaskStateResourceQueue> findByPrimaryKeyList( List<Integer> listIdResourceQueues )
{
return _updateResourceQueueDAO.selectByPrimaryKeyList( listIdResourceQueues, AlertGruPlugin.getPlugin( ) );
}
/**
* find instance of the updateTaskStateResourceQueue by resource
*
* @param nIdResource
* The nIdResource of the updateTaskStateResourceQueue
* @param strResourceType
* The resource type of the updateTaskStateResourceQueue
* @param plugin
* the plugin
* @return The instance of the updateTaskStateResourceQueue
*/
public static Optional<UpdateTaskStateResourceQueue> find( int nIdResource, String strResourceType )
{
return _updateResourceQueueDAO.load( nIdResource, strResourceType, AlertGruPlugin.getPlugin( ) );
}
/**
* find instance of the updateTaskStateResourceQueue by resource
*
* @param nIdResource
* The nIdResource of the updateTaskStateResourceQueue
* @param nIdTask
* The nIdTask of the updateTaskStateResourceQueue
* @param strResourceType
* The resource type of the updateTaskStateResourceQueue
* @param plugin
* the plugin
* @return The instance of the updateTaskStateResourceQueue
*/
public static Optional<UpdateTaskStateResourceQueue> find( int nIdResource, int nIdTask, String strResourceType )
{
return _updateResourceQueueDAO.load( nIdResource, nIdTask, strResourceType, AlertGruPlugin.getPlugin( ) );
}
}
<file_sep>/*
* Copyright (c) 2002-2022, City of Paris
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright notice
* and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright notice
* and the following disclaimer in the documentation and/or other materials
* provided with the distribution.
*
* 3. Neither the name of 'Mairie de Paris' nor 'Lutece' nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
* License 1.0
*/
package fr.paris.lutece.plugins.workflow.modules.alertgru.business;
import fr.paris.lutece.portal.service.plugin.Plugin;
import fr.paris.lutece.util.sql.DAOUtil;
import java.sql.Statement;
import java.util.ArrayList;
import java.util.List;
import java.util.Optional;
import java.util.stream.Collectors;
import org.apache.commons.collections4.CollectionUtils;
/**
* This class provides Data Access methods for UpdateTaskStateResourceQueue objects
*/
public final class UpdateTaskStateResourceQueueDAO implements IUpdateTaskStateResourceQueueDAO
{
// Constants
private static final String SQL_QUERY_SELECT = "SELECT id_resource_queue, id_resource, id_task, resource_type, id_external_parent, id_workflow, id_resource_history, status, creation_date, alert_reference_date, id_state FROM notifygru_alert_update_resource_state_queue WHERE id_resource = ?";
private static final String SQL_QUERY_SELECT_BY_ID_TASK_AND_ID_RESOURCE = "SELECT id_resource_queue, id_resource, id_task, resource_type, id_external_parent, id_workflow, id_resource_history, status, creation_date, alert_reference_date, id_state FROM notifygru_alert_update_resource_state_queue WHERE id_resource = ? AND id_task = ?";
private static final String SQL_QUERY_INSERT = "INSERT INTO notifygru_alert_update_resource_state_queue ( id_resource, id_task, resource_type, id_external_parent, id_workflow, id_resource_history, status, creation_date, alert_reference_date, id_state ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ? ) ";
private static final String SQL_QUERY_DELETE = "DELETE FROM notifygru_alert_update_resource_state_queue WHERE id_resource_queue = ? ";
private static final String SQL_QUERY_DELETE_BY_RESOURCE_HISTORY = "DELETE FROM notifygru_alert_update_resource_state_queue WHERE id_resource_history = ? ";
private static final String SQL_QUERY_DELETE_BY_RESOURCE = "DELETE FROM notifygru_alert_update_resource_state_queue WHERE id_resource = ? AND resource_type = ? ";
private static final String SQL_QUERY_UPDATE = "UPDATE notifygru_alert_update_resource_state_queue SET id_resource = ?, id_task = ?, resource_type = ?, id_external_parent = ?, id_workflow = ?, id_resource_history = ?, status = ?, creation_date = ?, alert_reference_date= ?, id_state= ? WHERE id_resource_queue = ? ";
private static final String SQL_QUERY_SELECTALL_ACTIVED = "SELECT id_resource_queue, id_resource, id_task, resource_type, id_external_parent, id_workflow, id_resource_history, status, creation_date, alert_reference_date, id_state FROM notifygru_alert_update_resource_state_queue WHERE status = 1";
private static final String SQL_QUERY_SELECTALL_DISABLED = "SELECT id_resource_queue, id_resource, id_task, resource_type, id_external_parent, id_workflow, id_resource_history, status, creation_date, alert_reference_date, id_state FROM notifygru_alert_update_resource_state_queue WHERE status = 0";
private static final String SQL_QUERY_DELETE_BY_ID_TASK = "DELETE FROM notifygru_alert_update_resource_state_queue WHERE id_task = ? ";
private static final String SQL_QUERY_SELECTALL_ID_ACTIVED = "SELECT id_resource_queue FROM notifygru_alert_update_resource_state_queue WHERE status= 1 ";
private static final String SQL_QUERY_SELECTALL_ACTIVED_BY_LIST = "SELECT id_resource_queue, id_resource, id_task, resource_type, id_external_parent, id_workflow, id_resource_history, status, creation_date, alert_reference_date, id_state FROM notifygru_alert_update_resource_state_queue WHERE id_resource_queue IN ( ";
private static final String SQL_QUERY_SELECT_BY_RESOURCE = "SELECT id_resource_queue, id_resource, id_task, resource_type, id_external_parent, id_workflow, id_resource_history, status, creation_date, alert_reference_date, id_state FROM notifygru_alert_update_resource_state_queue WHERE id_resource = ? AND resource_type = ? ";
private static final String SQL_QUERY_SELECT_BY_ID_TASK_AND_ID_RESOURCE_AND_RESSOURCE_TYPE= SQL_QUERY_SELECT_BY_ID_TASK_AND_ID_RESOURCE+" AND resource_type = ? ";
/**
* {@inheritDoc }
*/
@Override
public void insert( UpdateTaskStateResourceQueue updateTaskStateResourceQueue, Plugin plugin )
{
try ( DAOUtil daoUtil = new DAOUtil( SQL_QUERY_INSERT, Statement.RETURN_GENERATED_KEYS, plugin ) )
{
int nIndex = 0;
daoUtil.setInt( ++nIndex, updateTaskStateResourceQueue.getIdResource( ) );
daoUtil.setInt( ++nIndex, updateTaskStateResourceQueue.getIdTask( ) );
daoUtil.setString( ++nIndex, updateTaskStateResourceQueue.getResourceType( ) );
daoUtil.setInt( ++nIndex, updateTaskStateResourceQueue.getIdExternalParent( ) );
daoUtil.setInt( ++nIndex, updateTaskStateResourceQueue.getIdWorkflow( ) );
daoUtil.setInt( ++nIndex, updateTaskStateResourceQueue.getIdResourceHistory( ) );
daoUtil.setBoolean( ++nIndex, updateTaskStateResourceQueue.getStatus( ) );
daoUtil.setTimestamp( ++nIndex, updateTaskStateResourceQueue.getCreationDate( ) );
daoUtil.setTimestamp( ++nIndex, updateTaskStateResourceQueue.getAlertReferenceDate( ) );
daoUtil.setInt( ++nIndex, updateTaskStateResourceQueue.getIdState( ) );
daoUtil.executeUpdate( );
if ( daoUtil.nextGeneratedKey( ) )
{
updateTaskStateResourceQueue.setIdResourceQueue( daoUtil.getGeneratedKeyInt( 1 ) );
}
}
}
/**
* {@inheritDoc }
*/
@Override
public Optional<UpdateTaskStateResourceQueue> load( int nId, Plugin plugin )
{
try ( DAOUtil daoUtil = new DAOUtil( SQL_QUERY_SELECT, plugin ) )
{
daoUtil.setInt( 1, nId );
daoUtil.executeQuery( );
UpdateTaskStateResourceQueue updateTaskStateResourceQueue = null;
if ( daoUtil.next( ) )
{
updateTaskStateResourceQueue = buildUpdateTaskStateResourceQueue( daoUtil );
}
return Optional.ofNullable( updateTaskStateResourceQueue );
}
}
/**
* {@inheritDoc }
*/
@Override
public void deleteByPrimaryKey( int nIdResourceQueue, Plugin plugin )
{
try ( DAOUtil daoUtil = new DAOUtil( SQL_QUERY_DELETE, plugin ) )
{
daoUtil.setInt( 1, nIdResourceQueue );
daoUtil.executeUpdate( );
}
}
/**
* {@inheritDoc }
*/
@Override
public void deleteByResourceHistory( int IdResourceHistory, Plugin plugin )
{
try ( DAOUtil daoUtil = new DAOUtil( SQL_QUERY_DELETE_BY_RESOURCE_HISTORY, plugin ) )
{
daoUtil.setInt( 1, IdResourceHistory );
daoUtil.executeUpdate( );
}
}
@Override
public void deleteByResource( int nIdResource, String strResourceType, Plugin plugin )
{
try ( DAOUtil daoUtil = new DAOUtil( SQL_QUERY_DELETE_BY_RESOURCE, plugin ) )
{
daoUtil.setInt( 1, nIdResource );
daoUtil.setString( 2, strResourceType );
daoUtil.executeUpdate( );
}
}
/**
* {@inheritDoc }
*/
@Override
public void deleteByIdTask( int nIdTask, Plugin plugin )
{
try ( DAOUtil daoUtil = new DAOUtil( SQL_QUERY_DELETE_BY_ID_TASK, plugin ) )
{
daoUtil.setInt( 1, nIdTask );
daoUtil.executeUpdate( );
}
}
/**
* {@inheritDoc }
*/
@Override
public void store( UpdateTaskStateResourceQueue updateTaskStateResourceQueue, Plugin plugin )
{
try ( DAOUtil daoUtil = new DAOUtil( SQL_QUERY_UPDATE, plugin ) )
{
int nIndex = 0;
daoUtil.setInt( ++nIndex, updateTaskStateResourceQueue.getIdResource( ) );
daoUtil.setInt( ++nIndex, updateTaskStateResourceQueue.getIdTask( ) );
daoUtil.setString( ++nIndex, updateTaskStateResourceQueue.getResourceType( ) );
daoUtil.setInt( ++nIndex, updateTaskStateResourceQueue.getIdExternalParent( ) );
daoUtil.setInt( ++nIndex, updateTaskStateResourceQueue.getIdWorkflow( ) );
daoUtil.setInt( ++nIndex, updateTaskStateResourceQueue.getIdResourceHistory( ) );
daoUtil.setBoolean( ++nIndex, updateTaskStateResourceQueue.getStatus( ) );
daoUtil.setTimestamp( ++nIndex, updateTaskStateResourceQueue.getCreationDate( ) );
daoUtil.setTimestamp( ++nIndex, updateTaskStateResourceQueue.getAlertReferenceDate( ) );
daoUtil.setInt( ++nIndex, updateTaskStateResourceQueue.getIdState( ) );
daoUtil.setInt( ++nIndex, updateTaskStateResourceQueue.getIdResourceQueue( ) );
daoUtil.executeUpdate( );
}
}
/**
* {@inheritDoc }
*/
@Override
public List<UpdateTaskStateResourceQueue> selectAllActived( Plugin plugin )
{
List<UpdateTaskStateResourceQueue> listUpdateResourceQueues = new ArrayList<>( );
try ( DAOUtil daoUtil = new DAOUtil( SQL_QUERY_SELECTALL_ACTIVED, plugin ) )
{
daoUtil.executeQuery( );
while ( daoUtil.next( ) )
{
listUpdateResourceQueues.add( buildUpdateTaskStateResourceQueue( daoUtil ) );
}
return listUpdateResourceQueues;
}
}
/**
* {@inheritDoc }
*/
@Override
public List<UpdateTaskStateResourceQueue> selectByPrimaryKeyList( List<Integer> listIdResourceQueues, Plugin plugin )
{
List<UpdateTaskStateResourceQueue> listUpdateResourceQueues = new ArrayList<>( );
StringBuilder sbSql = new StringBuilder( SQL_QUERY_SELECTALL_ACTIVED_BY_LIST );
if ( CollectionUtils.isNotEmpty( listIdResourceQueues ) )
{
sbSql.append( listIdResourceQueues.stream( ).map( s -> "?" ).collect( Collectors.joining( "," ) ) );
sbSql.append( ")" );
}
try ( DAOUtil daoUtil = new DAOUtil( sbSql.toString( ), plugin ) )
{
int nIndex = 0;
for ( int id : listIdResourceQueues )
{
daoUtil.setInt( ++nIndex, id );
}
daoUtil.executeQuery( );
while ( daoUtil.next( ) )
{
listUpdateResourceQueues.add( buildUpdateTaskStateResourceQueue( daoUtil ) );
}
return listUpdateResourceQueues;
}
}
/**
* {@inheritDoc }
*/
@Override
public List<UpdateTaskStateResourceQueue> selectAllDisabled( Plugin plugin )
{
List<UpdateTaskStateResourceQueue> listUpdateResourceQueues = new ArrayList<>( );
try ( DAOUtil daoUtil = new DAOUtil( SQL_QUERY_SELECTALL_DISABLED, plugin ) )
{
daoUtil.executeQuery( );
while ( daoUtil.next( ) )
{
listUpdateResourceQueues.add( buildUpdateTaskStateResourceQueue( daoUtil ) );
}
return listUpdateResourceQueues;
}
}
/**
* {@inheritDoc }
*/
@Override
public List<Integer> selectAllIdQueueActived( Plugin plugin )
{
List<Integer> listIdResourceQueues = new ArrayList<>( );
try ( DAOUtil daoUtil = new DAOUtil( SQL_QUERY_SELECTALL_ID_ACTIVED, plugin ) )
{
daoUtil.executeQuery( );
while ( daoUtil.next( ) )
{
listIdResourceQueues.add( daoUtil.getInt( 1 ) );
}
return listIdResourceQueues;
}
}
/**
* {@inheritDoc }
*/
@Override
public Optional<UpdateTaskStateResourceQueue> load( int nIdResource, int nIdTask, Plugin plugin )
{
try ( DAOUtil daoUtil = new DAOUtil( SQL_QUERY_SELECT_BY_ID_TASK_AND_ID_RESOURCE, plugin ) )
{
daoUtil.setInt( 1, nIdResource );
daoUtil.setInt( 2, nIdTask );
daoUtil.executeQuery( );
UpdateTaskStateResourceQueue updateTaskStateResourceQueue = null;
if ( daoUtil.next( ) )
{
updateTaskStateResourceQueue = buildUpdateTaskStateResourceQueue( daoUtil );
}
return Optional.ofNullable( updateTaskStateResourceQueue );
}
}
/**
* {@inheritDoc }
*/
@Override
public Optional<UpdateTaskStateResourceQueue> load( int nIdResource, String strResourceType, Plugin plugin )
{
try ( DAOUtil daoUtil = new DAOUtil( SQL_QUERY_SELECT_BY_RESOURCE, plugin ) )
{
daoUtil.setInt( 1, nIdResource );
daoUtil.setString( 2, strResourceType );
daoUtil.executeQuery( );
UpdateTaskStateResourceQueue updateTaskStateResourceQueue = null;
if ( daoUtil.next( ) )
{
updateTaskStateResourceQueue = buildUpdateTaskStateResourceQueue( daoUtil );
}
return Optional.ofNullable( updateTaskStateResourceQueue );
}
}
/**
* {@inheritDoc }
*/
@Override
public Optional<UpdateTaskStateResourceQueue> load( int nIdResource, int nIdTask, String strResourceType, Plugin plugin )
{
try ( DAOUtil daoUtil = new DAOUtil( SQL_QUERY_SELECT_BY_ID_TASK_AND_ID_RESOURCE_AND_RESSOURCE_TYPE, plugin ) )
{
daoUtil.setInt( 1, nIdResource );
daoUtil.setInt( 2, nIdTask );
daoUtil.setString( 3, strResourceType );
daoUtil.executeQuery( );
UpdateTaskStateResourceQueue updateTaskStateResourceQueue = null;
if ( daoUtil.next( ) )
{
updateTaskStateResourceQueue = buildUpdateTaskStateResourceQueue( daoUtil );
}
return Optional.ofNullable( updateTaskStateResourceQueue );
}
}
/**
* Build UpdateTaskStateResourceQueue from daoUtil
*
* @return UpdateTaskStateResourceQueue object builded
*/
private UpdateTaskStateResourceQueue buildUpdateTaskStateResourceQueue( DAOUtil daoUtil )
{
int nIndex = 0;
UpdateTaskStateResourceQueue updateTaskStateResourceQueue = new UpdateTaskStateResourceQueue( );
updateTaskStateResourceQueue.setIdResourceQueue( daoUtil.getInt( ++nIndex ) );
updateTaskStateResourceQueue.setIdResource( daoUtil.getInt( ++nIndex ) );
updateTaskStateResourceQueue.setIdTask( daoUtil.getInt( ++nIndex ) );
updateTaskStateResourceQueue.setResourceType( daoUtil.getString( ++nIndex ) );
updateTaskStateResourceQueue.setIdExternalParent( daoUtil.getInt( ++nIndex ) );
updateTaskStateResourceQueue.setIdWorkflow( daoUtil.getInt( ++nIndex ) );
updateTaskStateResourceQueue.setIdResourceHistory( daoUtil.getInt( ++nIndex ) );
updateTaskStateResourceQueue.setStatus( daoUtil.getBoolean( ++nIndex ) );
updateTaskStateResourceQueue.setCreationDate( daoUtil.getTimestamp( ++nIndex ) );
updateTaskStateResourceQueue.setAlertReferenceDate( daoUtil.getTimestamp( ++nIndex ) );
updateTaskStateResourceQueue.setIdState( daoUtil.getInt( ++nIndex ) );
return updateTaskStateResourceQueue;
}
}
<file_sep>
[](https://dev.lutece.paris.fr/sonar/dashboard?id=fr.paris.lutece.plugins%3Amodule-workflow-notifygru-alert)
[](https://dev.lutece.paris.fr/sonar/dashboard?id=fr.paris.lutece.plugins%3Amodule-workflow-notifygru-alert)
[](https://dev.lutece.paris.fr/sonar/dashboard?id=fr.paris.lutece.plugins%3Amodule-workflow-notifygru-alert)
# Module Workflow NotifyGru Alert
## Introduction
This module provides a workflow task which does not run directly when an action is triggered (unlike the module-workflow-notifygru), but allows a daemon to send "GRU" notifications regarding the status of resources and specific date criteria.
## Configuration
To configure this task, you must select the data providers and the criteria (status, time) desired to trigger alerts or reminders , and, as for the module-workflow-notifygru, the different types of notification desired.
## Usage
The spécific Daemon must run to lauch the notifications.
[Maven documentation and reports](https://dev.lutece.paris.fr/plugins/module-workflow-notifygru-alert/)
*generated by [xdoc2md](https://github.com/lutece-platform/tools-maven-xdoc2md-plugin) - do not edit directly.*<file_sep>
[](https://dev.lutece.paris.fr/sonar/dashboard?id=fr.paris.lutece.plugins%3Amodule-workflow-notifygru-alert)
[](https://dev.lutece.paris.fr/sonar/dashboard?id=fr.paris.lutece.plugins%3Amodule-workflow-notifygru-alert)
[](https://dev.lutece.paris.fr/sonar/dashboard?id=fr.paris.lutece.plugins%3Amodule-workflow-notifygru-alert)
# Module Workflow NotifyGru Alert
## Introduction
Ce module fournit une tâche de workflow qui ne s'execute pas directement au declenchement d'une action (contrairement au module-workflow-notifygru), mais permet à un démon d'envoyer des notifications "GRU" par rapport au statut des ressources et des critères de dates précis.
## Configuration
Pour configurer cette tâche il faut sélectionner les fournisseurs de données et les critères (statuts, temps) souhaités pour déclencher les alertes ou rappels , et, comme pour le module-workflow-notifygru, les différents types de notification souhaités.
## Usage
Le démon spécifique doit s'exécuter pour lancer les notifications.
[Maven documentation and reports](https://dev.lutece.paris.fr/plugins/module-workflow-notifygru-alert/)
*generated by [xdoc2md](https://github.com/lutece-platform/tools-maven-xdoc2md-plugin) - do not edit directly.*<file_sep><#macro marker_descriptions>
<h3>#i18n{module.workflow.alertgru.task_alert_gru_config.commons.markers.label_table_title}</h3>
<@table>
<tr>
<th>#i18n{module.workflow.alertgru.task_alert_gru_config.commons.markers.label_description}</th>
<th>#i18n{module.workflow.alertgru.task_alert_gru_config.commons.markers.label_marker}</th>
</tr>
<#if notifygru_markers?exists>
<#list notifygru_markers as marker>
<tr>
<td>
<#assign description = i18n(marker.description) />
<#if description?has_content>
${description}
<#else>
${marker.description!''}
</#if>
</td>
<td>
${${marker.marker}!}
</td>
</tr>
</#list>
<#else>
<tr>
<td></td>
<td></td>
</tr>
</#if>
</@table>
</#macro><file_sep>/*
* Copyright (c) 2002-2022, City of Paris
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright notice
* and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright notice
* and the following disclaimer in the documentation and/or other materials
* provided with the distribution.
*
* 3. Neither the name of 'Mairie de Paris' nor 'Lutece' nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
* License 1.0
*/
package fr.paris.lutece.plugins.workflow.modules.alertgru.business;
import java.util.List;
import java.util.Optional;
import fr.paris.lutece.portal.service.plugin.Plugin;
/**
* IUpdateTaskStateResourceQueueDAO Interface
*/
public interface IUpdateTaskStateResourceQueueDAO
{
/**
* Insert a new record in the table.
*
* @param updateTaskStateResourceQueue
* instance of the updateTaskStateResourceQueue object to inssert
* @param plugin
* The plugin
*/
void insert( UpdateTaskStateResourceQueue updateTaskStateResourceQueue, Plugin plugin );
/**
* Update the record in the table
*
* @param updateTaskStateResourceQueue
* the reference of the updateTaskStateResourceQueue
* @param plugin
* The plugin
*/
void store( UpdateTaskStateResourceQueue updateTaskStateResourceQueue, Plugin plugin );
/**
* Delete a record from the table
*
* @param nIdResourceQueues
* int identifier of the UpdateTaskStateResourceQueue to delete
* @param plugin
* The plugin
*/
void deleteByPrimaryKey( int nIdResourceQueues, Plugin plugin );
/**
* Delete a record from the table
*
* @param nIdUpdateTaskStateResourceQueue
* int identifier of the UpdateTaskStateResourceQueue to delete
* @param plugin
* The plugin
*/
void deleteByIdTask( int nIdTask, Plugin plugin );
/**
* Delete a record from the table
*
* @param IdResourceHistory
* the resource history id of the resource workflow
* @param plugin
* The plugin
*/
void deleteByResourceHistory( int nIdResourceHistory, Plugin plugin );
/**
* Delete a record from the table
*
* @param nIdResource
* The nIdResource of the updateTaskStateResourceQueue
* @param strResourceType
* The resource type of the updateTaskStateResourceQueue
* @param plugin
* the plugin
*/
void deleteByResource( int nIdResource, String strResourceType, Plugin plugin );
///////////////////////////////////////////////////////////////////////////
// Finders
/**
* Load the data from the table
*
* @param nKey
* The identifier of the updateTaskStateResourceQueue
* @param plugin
* The plugin
* @return The instance of the updateTaskStateResourceQueue
*/
Optional<UpdateTaskStateResourceQueue> load( int nKey, Plugin plugin );
/**
* Load the data from the table
*
* @param nIdResource
* The nIdResource of the updateTaskStateResourceQueue
* @param nIdTask
* The nIdTask of the updateTaskStateResourceQueue
* @param plugin
* The plugin
* @return The instance of the updateTaskStateResourceQueue
*/
Optional<UpdateTaskStateResourceQueue> load( int nIdResource, int nIdTask, Plugin plugin );
/**
* Load the data from the table by resource
*
* @param nIdResource
* The nIdResource of the updateTaskStateResourceQueue
* @param strResourceType
* The resource type of the updateTaskStateResourceQueue
* @param plugin
* the plugin
* @return The instance of the updateTaskStateResourceQueue
*/
Optional<UpdateTaskStateResourceQueue> load( int nIdResource, String strResourceType, Plugin plugin );
/**
* Load the data from the table by resource
*
* @param nIdResource
* The nIdResource of the updateTaskStateResourceQueue
* @param nIdTask
* The nIdTask of the updateTaskStateResourceQueue
* @param strResourceType
* The resource type of the updateTaskStateResourceQueue
* @param plugin
* the plugin
* @return The instance of the updateTaskStateResourceQueue
*/
Optional<UpdateTaskStateResourceQueue> load( int nIdResource, int nIdTask, String strResourceType, Plugin plugin );
/**
* Load the data of all the updateTaskStateResourceQueue objects and returns them as a collection
*
* @param plugin
* The plugin
* @return the List which contains the data of all the updateTaskStateResourceQueue objects
*/
List<UpdateTaskStateResourceQueue> selectAllActived( Plugin plugin );
/**
* Load the data of all the updateTaskStateResourceQueue objects and returns them as a collection
*
* @param plugin
* The plugin
* @return the List which contains the data of all the updateTaskStateResourceQueue objects
*/
List<UpdateTaskStateResourceQueue> selectAllDisabled( Plugin plugin );
/**
* Load the id of all the updateTaskStateResourceQueue and returns them as a collection
*
* @param plugin
* The plugin
* @return the List which contains the id of all the updateTaskStateResourceQueue objects
*/
List<Integer> selectAllIdQueueActived( Plugin plugin );
/**
* Load the data from the table
*
* @param listIdResourceQueues
* The identifier list of the updateTaskStateResourceQueue
* @param plugin
* The plugin
* @return The instance list of the updateTaskStateResourceQueue
*/
List<UpdateTaskStateResourceQueue> selectByPrimaryKeyList( List<Integer> listIdResourceQueues, Plugin plugin );
}
<file_sep>/*
* Copyright (c) 2002-2022, City of Paris
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright notice
* and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright notice
* and the following disclaimer in the documentation and/or other materials
* provided with the distribution.
*
* 3. Neither the name of 'Mairie de Paris' nor 'Lutece' nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
* License 1.0
*/
package fr.paris.lutece.plugins.workflow.modules.alertgru.business;
import java.sql.Timestamp;
/**
* This is the business class for the object UpdateTaskStateResourceQueue
*/
public class UpdateTaskStateResourceQueue
{
// Variables declarations
private int _nIdResource;
private int _nIdTask;
private String _strResourceType;
private int _nIdExternalParent;
private int _nIdResourceHistory;
private int _nIdWorkflow;
private boolean _bStatus;
private int _nIdResourceQueue;
private Timestamp _tCreationDate;
private Timestamp _tAlertReferenceDate;
private int _nIdState;
/**
* Returns the IdResourceQueue
*
* @return The IdResourceQueue
*/
public int getIdResourceQueue( )
{
return _nIdResourceQueue;
}
/**
* Sets the IdResourceQueue
*
* @param nIdResourceQueue
* The IdResourceQueue
*/
public void setIdResourceQueue( int nIdResourceQueue )
{
_nIdResourceQueue = nIdResourceQueue;
}
/**
* Returns the IdResourceHistory
*
* @return The IdResourceHistory
*/
public int getIdResource( )
{
return _nIdResource;
}
/**
* Sets the IdResource
*
* @param nIdResource
* The IdResource
*/
public void setIdResource( int nIdResource )
{
_nIdResource = nIdResource;
}
/**
* Returns the IdTask
*
* @return The IdTask
*/
public int getIdTask( )
{
return _nIdTask;
}
/**
* Sets the IdTask
*
* @param nIdTask
* The IdTask
*/
public void setIdTask( int nIdTask )
{
_nIdTask = nIdTask;
}
/**
* Returns the ResourceType
*
* @return The ResourceType
*/
public String getResourceType( )
{
return _strResourceType;
}
/**
* Sets the ResourceType
*
* @param strResourceType
* The ResourceType
*/
public void setResourceType( String strResourceType )
{
_strResourceType = strResourceType;
}
/**
* Returns the IdExternalParent
*
* @return The IdExternalParent
*/
public int getIdExternalParent( )
{
return _nIdExternalParent;
}
/**
* Sets the IdExternalParent
*
* @param nIdExternalParent
* The IdExternalParent
*/
public void setIdExternalParent( int nIdExternalParent )
{
_nIdExternalParent = nIdExternalParent;
}
/**
* Returns the IdWorkflow
*
* @return The IdWorkflow
*/
public int getIdWorkflow( )
{
return _nIdWorkflow;
}
/**
* Sets the IdWorkflow
*
* @param nIdWorkflow
* The IdWorkflow
*/
public void setIdWorkflow( int nIdWorkflow )
{
_nIdWorkflow = nIdWorkflow;
}
/**
* Returns the IdResourceHistory
*
* @return The IdResourceHistory
*/
public int getIdResourceHistory( )
{
return _nIdResourceHistory;
}
/**
* Sets the IdResourceHistory
*
* @param nIdResourceHistory
* The IdResourceHistory
*/
public void setIdResourceHistory( int nIdResourceHistory )
{
_nIdResourceHistory = nIdResourceHistory;
}
/**
* Returns the Status
*
* @return The Status
*/
public boolean getStatus( )
{
return _bStatus;
}
/**
* Sets the Status
*
* @param bStatus
* The Status
*/
public void setStatus( boolean bStatus )
{
_bStatus = bStatus;
}
/**
*
* @return the creation date
*/
public Timestamp getCreationDate( )
{
return _tCreationDate;
}
/**
* set the creation date
*
* @param dateCreation
* the creation date
*/
public void setCreationDate( Timestamp dateCreation )
{
_tCreationDate = dateCreation;
}
/**
* @return the AlertReferenceDate date
*/
public Timestamp getAlertReferenceDate( )
{
return _tAlertReferenceDate;
}
/**
* set the alert Reference Date
*
* @param alertReferenceDate
* the alert Reference Date
*/
public void setAlertReferenceDate( Timestamp alertReferenceDate )
{
_tAlertReferenceDate = alertReferenceDate;
}
/**
* Returns the IdState
*
* @return The IdState
*/
public int getIdState( )
{
return _nIdState;
}
/**
* Sets the IdState
*
* @param nIdState
* The IdState
*/
public void setIdState( int nIdState )
{
_nIdState = nIdState;
}
}
| b525cd58550faffafbcb432631ce75e238405696 | [
"Markdown",
"Java",
"HTML",
"INI"
] | 9 | INI | lutece-secteur-public/gru-module-workflow-notifygru-alert | 43c92a5bcc5fbaec97997827d7350f2f310b2610 | 48d9f833c8dd397c8bce09861531c6a58d00edea |
refs/heads/master | <repo_name>AndyOsuna/alerta-codigo-azul<file_sep>/includes/configsql.php
<?php
session_start();
if (isset($_SESSION['connected'])) {
if ($_SESSION['connected'] != true && $_SESSION['connected'] != false){
if (!isset($loginvar)){
header ('location: '.$_SERVER['DOCUMENT_ROOT'].'/login.php');
}
}
} else if (!isset($_SESSION['connected'])){
$_SESSION['connected'] = false;
if (!isset($loginvar)){
header ('location: '.$_SERVER['DOCUMENT_ROOT'].'/login.php');
}
}
if (!isset($_SESSION['user']) && !isset ($_SESSION['pass'])){
$_SESSION['user'] = '';
$_SESSION['pass'] = '';
}
/* Datos para la conexión con la base de datos */
$host = "localhost";
$user = "root";
$pass = "";
$db = "bd_codigoazul";
/* Objeto 'mysqli' de conexion a DB */
$mysqlconn = new mysqli($host, $user, $pass, $db);
if ($mysqlconn->connect_error) die($mysqlconn->connect_error);<file_sep>/atender.php
<?php
include_once $_SERVER['DOCUMENT_ROOT'].'/includes/header.php';
date_default_timezone_set('America/Buenos_Aires');
$id = $_GET['id'];
$hora = date("Y-m-d H:i:s");
$query = $mysqlconn->query("UPDATE llamados SET `atendido` = 1, `fecha_hora_atendido` = '$hora' WHERE id = $id");
if ($query == false){
die('Ha ocurrido un error. DEP.');
}
header('Location: llamados.php');
?>
<?php
$resultados = mysqli_query($mysqlconn, "SELECT * FROM llamados WHERE `atendido` = 0");
if (mysqli_num_rows($resultados) == 0) {
// No hay llamados en el momento.
} else {
echo '
<script> alert("CÓDIGO AZUL\nHay llamados pendientes por responder."); window.location.replace("/llamados.php"); </script>
';
}
?><file_sep>/admin/zonas.php
<?php
include_once '../includes/header.php';
if($isAdmin){
if (isset($_POST['zona'])) {
$zona = $_POST['zona'];
# Si no está vacio...
if ($zona != "") {
$mysqlconn->query("INSERT INTO salas (sala) VALUES ('$zona')");
if ($mysqlconn->error) $_SESSION['errorZona'] = "Error al intentar guardar la zona en la base de datos";
else $_SESSION['message'] = "Zona guarada con éxito";
} else $_SESSION['errorZona'] = "Complete el campo";
}
/* Recibimos el ID de la sala que queremos borrar */
if (isset($_GET['deleteID'])) {
if ($_GET['deleteID'] != null) {
$id = $_GET['deleteID'];
$mysqlconn->query("DELETE FROM salas WHERE id = $id");
if ($mysqlconn->error) $_SESSION['errorZona'] = "Error al intentar borrar la zona";
else $_SESSION['message'] = "La zona se ha eliminado con éxito";
header("location: " . $_SERVER['PHP_SELF']);
}
}
?>
<div class="container pt-5">
<div class="row">
<div class="col-md-6 mx-auto mb-4">
<?php # Alerta de error
?>
<?php if (isset($_SESSION['errorZona'])) { ?>
<div class="alert alert-danger alert-dismissible fade show" role="alert">
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
<strong><?= $_SESSION['errorZona'] ?></strong>
</div>
<?php #Se borra la variable de sesión para que al recargar la página no siga la alerta
unset($_SESSION['errorZona']);
}
# Alerta de mensaje de alguna acción realizada
if (isset($_SESSION['message'])) { ?>
<div class="alert alert-success alert-dismissible fade show" role="alert">
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
<strong><?= $_SESSION['message'] ?></strong>
</div>
<?php #Se borra la variable de sesión para que al recargar la página no siga la alerta
unset($_SESSION['message']);
} ?>
<?php #FORMULARIO ?>
<div class="card">
<div class="card-header">
<p class="h4 my-1 text-center">Cree una zona</p>
</div>
<div class="card-body">
<form action="<?= $_SERVER['PHP_SELF'] ?>" method="post">
<div class="form-group">
<input type="text" name="zona" class="form-control" placeholder="Nombre de la zona" required autofocus>
</div>
<button type="submit" class="btn btn-success btn-block">Guardar</button>
</form>
</div>
</div>
</div>
<div class="col-md-6">
<?php # Consulta para mostrar todas las salas
?>
<?php $zonas = $mysqlconn->query("SELECT * FROM salas;"); ?>
<table class="table table-bordered">
<thead>
<th colspan="2" class="bg-light">
<p class="h4 my-1 text-center">Lista de zonas</p>
</th>
<tr>
<th>Nombre de zona</th>
<th style="width: min-content;">Funciones</th>
</tr>
</thead>
<tbody>
<?php # Mostrando todas las zonas
?>
<?php while ($zona = $zonas->fetch_object()) { ?>
<tr>
<td><?= $zona->sala ?></td>
<?php # Botón para borrar la zona según por su ID, enviandolo por GET al archivo mísmo
?>
<td><a href="<?= $_SERVER['PHP_SELF'] ?>?deleteID=<?= $zona->id ?>" class="btn btn-danger btn-sm">Delete</a></td>
</tr>
<?php } ?>
</tbody>
</table>
</div>
</div>
</div>
<?php } else include_once '../includes/templates/isntAdmin.html';
include_once '../includes/footer.php'; ?><file_sep>/usuario/index.php
<?php include_once $_SERVER['DOCUMENT_ROOT'].'/includes/header.php';
include $_SERVER['DOCUMENT_ROOT'].'/includes/alarma.php';?>
<br>
<div class="container pt-5">
<div class="col-md-6 mx-auto">
<div class="card">
<div class="card-header">
<p class="h4 my-1 text-center">Herramientas y datos</p>
</div>
<div class="list-group">
<a class="list-group-item list-group-item-action" href="/usuario/usuario.php">Datos de perfil</a>
<a class="list-group-item list-group-item-action" href="/usuario/datos.php">Datos generales</a>
<a class="list-group-item list-group-item-action" href="/usuario/editar_perfil.php">Cambiar contraseña</a>
</div>
</div>
</div>
<?php include_once $_SERVER['DOCUMENT_ROOT'].'/includes/footer.php'; ?><file_sep>/llamados.php
<?php
include $_SERVER['DOCUMENT_ROOT'] . '/includes/header.php';
if($isAdmin) {
?>
<div class="wrapper">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="page-header clearfix">
<h2 class="pull-left">Llamados</h2>
<a href="create.php" class="btn btn-success pull-right">Enviar nuevo llamado</a>
</div>
<?php
// Archivo de configuración
require_once "config.php";
// Intentar un query para obtener los llamados.
$sql = "SELECT * FROM llamados WHERE atendido = 0";
if ($result = mysqli_query($link, $sql)) {
if (mysqli_num_rows($result) > 0) {
echo "<table class='table table-bordered table-striped'>";
echo "<thead>";
echo "<tr>";
echo "<th>Ubicacion</th>";
echo "<th>Paciente</th>";
echo "<th>Tipo</th>";
echo "<th>Atendido</th>";
echo "</tr>";
echo "</thead>";
echo "<tbody>";
while ($row = mysqli_fetch_array($result)) {
echo "<tr>";
echo "<td>" . $row['ubicacion'] . "</td>";
echo "<td>" . $row['paciente'] . "</td>";
echo "<td>" . $row['tipo'] . "</td>";
echo "<td>";
echo "<a href='atender.php?id=" . $row['id'] . "' title='Marcar como atendido' data-toggle='tooltip'>Marcar como atendido</a>";
echo "</td>";
echo "</tr>";
}
echo "</tbody>";
echo "</table>";
// Liberar el set de resultados.
mysqli_free_result($result);
} else {
echo "<p class='lead'><em>No hay llamados en el momento.</em></p>";
}
} else {
echo "ERROR: Could not able to execute $sql. " . mysqli_error($link);
}
// Cerrar conexión.
mysqli_close($link);
?>
</div>
</div>
</div>
</div>
<?php } else include_once 'includes/templates/isntAdmin.html';
include_once 'includes/footer.php';
?><file_sep>/admin/functions/editPaciente.php
<?php
include_once '../../includes/header.php';
if($isAdmin){
/* Al entrar a eesta página, se envia a la vez el id del usuario a editar */
if(isset($_GET["editID"])) {
$id = $_GET['editID'];
if (isset($_GET["delete"])){
if ($_GET["delete"] == 1){
$pacientes = $mysqlconn->query("DELETE FROM pacientes WHERE id = $id");
die ('Eliminado');
}
}
if($id != "") {
$pacientes = $mysqlconn->query("SELECT * FROM pacientes WHERE id = $id");
$paciente = $pacientes ->fetch_assoc();
}
}
if (isset($_POST['nombrepaciente']) && isset($_POST['ubic']) && isset($_POST['nomenfermero'])) {
$paciente = $_POST['nombrepaciente'];
$ubic = $_POST['ubic'];
$enfer = $_POST['nomenfermero'];
if ($paciente != "" || $ubic != "" || $enfer != "") {
/* Instertamos los datos del nuevo paciente en la DB */
$mysqlconn->query("UPDATE pacientes SET `nombre` = '$paciente', `enfermero` = '$enfer', `ubicacion` = '$ubic' WHERE id = $id") or $_SESSION['errorCreandoUser'] = "Error al intentar guardar en la base de datos";
// if($_SESSION['errorCreandoUser'])
} else {
$_SESSION['errorCreandoUser'] = "Complete los campos";
}
}
if(isset($_POST['nombre'])){
$paciente = $_POST['nombre'];
if($paciente != "") {
$mysqlconn->query("UPDATE ");
}
}
$enfermeros = $mysqlconn->query('SELECT `id`, `nombre`, `apellido` FROM `enfermeros`');
$ubicacion = $mysqlconn->query('SELECT `id`, `sala` FROM `salas`');
?>
<div class="container pt-5">
<div class="row">
<div class="col-md-6 mx-auto">
<div class="card">
<div class="card-header">
<p class="h4 m-0">Editar paciente</p>
</div>
<div class="card-body">
<form action="<?= $_SERVER['PHP_SELF'] ?>" method="post">
<div class="form-group">
<input type="text" name="nombrepaciente" class="form-control" placeholder="<?= $paciente['nombre']?>" required>
</div>
<div class="form-group">
<div class="input-group">
<div class="input-group-prepend">
<div class="input-group-text">Enfermero</div>
</div>
<select placeholder="Enfermero" name="nomenfermero" class="form-control">
<?php
while ($rowsenf = $enfermeros -> fetch_assoc()){
echo'
<option value="'.$rowsenf['id'].'">'.$rowsenf['apellido'].' '.$rowsenf['nombre'].'</option>
';
}
?>
</select>
</div>
</div>
<div class="form-group">
<div class="input-group">
<div class="input-group-prepend">
<div class="input-group-text">Ubicación</div>
</div>
<select placeholder="Ubicacion" name="ubic" class="form-control">
<?php
while ($rowsub = $ubicacion -> fetch_assoc()){
echo'
<option value="'.$rowsub['id'].'">'.$rowsub['sala'].'</option>
';
}
?>
</select>
</div>
</div>
<button type="submit" class="btn btn-success btn-block">Editar paciente</button>
</form>
</div>
</div>
</div>
</div>
</div>
<?php } else { ?>
<?php }
include_once '../../includes/footer.php';?><file_sep>/includes/alarma.php
<?php
$resultados = mysqli_query($mysqlconn, "SELECT * FROM llamados WHERE `atendido` = 0");
if (mysqli_num_rows($resultados) == 0) {
// No hay llamados en el momento.
} else {
echo '
<script> alert("CÓDIGO AZUL\nHay llamados pendientes por responder."); </script>
';
}
?><file_sep>/database/db_codigoazul.sql
-- phpMyAdmin SQL Dump
-- version 4.9.0.1
-- https://www.phpmyadmin.net/
--
-- Servidor: 127.0.0.1
-- Tiempo de generación: 15-11-2019 a las 03:36:10
-- Versión del servidor: 10.4.6-MariaDB
-- Versión de PHP: 7.2.22
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET AUTOCOMMIT = 0;
START TRANSACTION;
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
--
-- Base de datos: `bd_codigoazul`
--
CREATE DATABASE IF NOT EXISTS `bd_codigoazul` DEFAULT CHARACTER SET latin1 COLLATE latin1_swedish_ci;
USE `bd_codigoazul`;
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `enfermeros`
--
CREATE TABLE `enfermeros` (
`id` int(8) NOT NULL,
`nombre` varchar(40) NOT NULL,
`apellido` varchar(50) NOT NULL,
`tel` int(20) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Volcado de datos para la tabla `enfermeros`
--
INSERT INTO `enfermeros` (`id`, `nombre`, `apellido`, `tel`) VALUES
(1, 'Jose', 'Perez', 2147483647),
(2, 'Manolito', 'Martinez', 1245136246);
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `fichas_medicas`
--
CREATE TABLE `fichas_medicas` (
`id` int(8) NOT NULL,
`edad` int(3) NOT NULL,
`sexo` varchar(1) NOT NULL,
`condicion` varchar(50) NOT NULL,
`estado` varchar(20) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `llamados`
--
CREATE TABLE `llamados` (
`id` int(10) NOT NULL,
`ubicacion` varchar(40) NOT NULL,
`paciente` varchar(40) NOT NULL,
`fecha_hora` datetime NOT NULL,
`fecha_hora_atendido` datetime NOT NULL,
`tipo` varchar(20) NOT NULL,
`atendido` int(1) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Volcado de datos para la tabla `llamados`
--
INSERT INTO `llamados` (`id`, `ubicacion`, `paciente`, `fecha_hora`, `fecha_hora_atendido`, `tipo`, `atendido`) VALUES
(1, 'Quirófano N8', 'Soraya Raquel', '2019-10-31 11:29:24', '2019-10-31 15:47:22', 'Emergencia', 1),
(2, 'Quirófano N8', 'Soraya Raquel', '2019-10-31 11:30:42', '2019-10-31 15:48:38', 'Emergencia', 1),
(3, 'Quirófano N8', 'Dario', '2019-10-31 11:30:52', '2019-10-31 18:29:16', 'Llamado', 1),
(4, 'Quirófano N2', 'Soraya Raquel', '2019-10-31 14:15:48', '2019-10-31 18:29:16', 'Emergencia', 1),
(5, 'Quirófano N8', '<NAME>', '2019-10-31 14:29:05', '2019-10-31 18:29:20', 'Emergencia', 1),
(6, 'Quirófano N2', 'Dario', '2019-10-31 14:44:21', '2019-10-31 14:44:26', 'Llamado', 1),
(7, 'Quirófano N8', '<NAME>', '2019-10-31 15:25:39', '2019-10-31 15:34:55', 'Emergencia', 1),
(8, 'Quirófano N8', '<NAME>', '2019-10-31 15:26:43', '2019-10-31 15:34:57', 'Emergencia', 1),
(9, 'Quirófano N8', '<NAME>', '2019-10-31 15:28:07', '2019-10-31 15:34:58', 'Emergencia', 1),
(10, 'Quirófano N8', 'S<NAME>l', '2019-10-31 15:28:14', '2019-10-31 15:34:59', 'Emergencia', 1),
(11, 'Quirófano N8', 'Soraya Raquel', '2019-10-31 15:29:05', '2019-10-31 15:35:00', 'Emergencia', 1),
(12, 'Quirófano N8', '<NAME>', '2019-10-31 15:30:23', '2019-10-31 15:35:01', 'Emergencia', 1),
(13, 'Quirófano N8', '<NAME>', '2019-10-31 15:31:43', '2019-10-31 15:35:02', 'Emergencia', 1),
(14, 'Quirófano N8', '<NAME>', '2019-10-31 15:34:31', '2019-10-31 15:35:03', 'Emergencia', 1),
(15, 'Quirófano N8', '<NAME>', '2019-10-31 15:34:49', '2019-10-31 15:35:04', 'Emergencia', 1),
(16, 'Quirófano N2', 'Dario', '2019-10-31 15:35:27', '2019-10-31 16:24:42', 'Llamado', 1),
(17, 'Quirófano N2', 'Dario', '2019-10-31 15:36:29', '2019-10-31 16:24:47', 'Llamado', 1),
(18, 'Quirófano N8', '<NAME>', '2019-10-31 16:08:40', '2019-10-31 16:24:50', 'Emergencia', 1),
(19, 'Quirófano N8', '<NAME>', '2019-10-31 16:23:01', '2019-10-31 16:24:49', 'Emergencia', 1),
(20, 'Quirófano N8', 'Danielru', '2019-10-31 16:23:22', '2019-10-31 16:24:50', 'Emergencia', 1),
(21, 'Quirófano N8', '<NAME>', '2019-10-31 16:26:29', '2019-10-31 16:28:25', 'Emergencia', 1),
(22, 'Quirófano N8', '<NAME>', '2019-10-31 16:31:12', '2019-10-31 16:48:13', 'Emergencia', 1),
(23, 'Quirófano N2', 'Danielru', '2019-10-31 16:35:24', '2019-10-31 16:48:25', 'Llamado', 1),
(24, 'Quirófano N8', 'MarÃ<NAME>é <NAME>', '2019-10-31 17:12:32', '2019-10-31 17:12:43', 'Emergencia', 1),
(25, 'Quirófano N2', 'Dario', '2019-10-31 17:13:04', '2019-10-31 17:13:25', 'Emergencia', 1),
(26, 'Quirófano N8', 'MarÃ<NAME>é <NAME>', '2019-10-31 17:16:25', '2019-10-31 17:20:40', 'Emergencia', 1),
(27, 'Quirófano N8', 'MarÃ<NAME>é <NAME>', '2019-10-31 17:24:48', '2019-11-01 09:09:15', 'Emergencia', 1),
(28, 'Quirófano N2', 'Dario', '2019-11-01 09:08:27', '2019-11-01 09:09:13', 'Emergencia', 1),
(29, 'Quirófano N8', 'MarÃ<NAME>é <NAME>', '2019-11-01 09:09:29', '2019-11-01 09:30:13', 'Emergencia', 1),
(30, 'Quirófano N8', 'MarÃ<NAME>é <NAME>', '2019-11-01 09:10:10', '2019-11-01 09:30:21', 'Emergencia', 1),
(31, 'Quirófano N8', 'MarÃ<NAME>é <NAME>', '2019-11-01 09:16:16', '2019-11-01 09:30:16', 'Emergencia', 1),
(32, 'Quirófano N8', 'MarÃ<NAME>é <NAME>', '2019-11-01 09:29:52', '2019-11-01 09:30:17', 'Emergencia', 1),
(33, 'Quirófano N8', 'MarÃ<NAME>é <NAME>', '2019-11-01 09:30:36', '2019-11-01 09:31:01', 'Emergencia', 1),
(34, 'Quirófano N8', 'MarÃ<NAME>é <NAME>', '2019-11-01 09:30:47', '2019-11-01 09:31:04', 'Emergencia', 1),
(35, 'Quirófano N8', 'MarÃ<NAME>é <NAME>', '2019-11-01 09:31:15', '2019-11-01 09:31:44', 'Emergencia', 1),
(36, 'Quirófano N8', 'MarÃ<NAME>é <NAME>', '2019-11-01 09:31:52', '2019-11-01 09:32:14', 'Emergencia', 1),
(37, 'Quirófano N2', 'Dario', '2019-11-01 09:32:38', '2019-11-01 09:42:56', 'Llamado', 1),
(38, 'Quirófano N8', 'MarÃ<NAME>é <NAME>', '2019-11-01 09:43:04', '2019-11-01 09:47:38', 'Emergencia', 1),
(39, 'Quirófano N2', 'Tomas', '2019-11-01 11:45:13', '2019-11-01 11:45:59', 'Emergencia', 1),
(40, 'Quirófano N8', 'Dario', '2019-11-01 11:51:03', '2019-11-01 11:52:41', 'Llamado', 1),
(41, 'Quirófano N8', 'Dario', '2019-11-01 11:52:22', '2019-11-01 11:52:44', 'Llamado', 1),
(42, 'Quirófano N8', 'Dario', '2019-11-01 11:52:40', '2019-11-01 11:52:43', 'Emergencia', 1),
(43, 'Quirófano N8', 'Dario', '2019-11-01 11:55:08', '2019-11-01 11:56:50', 'Emergencia', 1);
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `pacientes`
--
CREATE TABLE `pacientes` (
`id` int(8) NOT NULL,
`nombre` varchar(40) NOT NULL,
`ficha_medica` int(8) NOT NULL,
`ubicacion` varchar(40) NOT NULL,
`enfermero` int(4) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Volcado de datos para la tabla `pacientes`
--
INSERT INTO `pacientes` (`id`, `nombre`, `ficha_medica`, `ubicacion`, `enfermero`) VALUES
(1, 'Dario', 0, '7', 1),
(2, 'Dario', 1, '2', 1),
(4, 'Andy', 0, '7', 2),
(5, 'Tomas', 0, '6', 2),
(6, 'xd', 0, '6', 1);
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `salas`
--
CREATE TABLE `salas` (
`id` int(11) NOT NULL,
`sala` varchar(40) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Volcado de datos para la tabla `salas`
--
INSERT INTO `salas` (`id`, `sala`) VALUES
(3, 'Quirófano N8'),
(6, 'Quirófano N2'),
(7, 'Baño');
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `usuarios`
--
CREATE TABLE `usuarios` (
`id` int(10) NOT NULL,
`usuario` varchar(20) NOT NULL,
`password` varchar(20) NOT NULL,
`sala` int(11) NOT NULL,
`isAdmin` tinyint(1) NOT NULL DEFAULT 0 COMMENT '1 = es admin, 0 = usuario genérico'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Volcado de datos para la tabla `usuarios`
--
INSERT INTO `usuarios` (`id`, `usuario`, `password`, `sala`, `isAdmin`) VALUES
(1, 'admin', 'admi', 0, 1),
(2, 'usuario', '1234', 0, 0),
(3, 'Andy', '<PASSWORD>', 0, 0),
(4, 'Admin2', 'admin2', 0, 1);
--
-- Índices para tablas volcadas
--
--
-- Indices de la tabla `enfermeros`
--
ALTER TABLE `enfermeros`
ADD PRIMARY KEY (`id`);
--
-- Indices de la tabla `fichas_medicas`
--
ALTER TABLE `fichas_medicas`
ADD PRIMARY KEY (`id`);
--
-- Indices de la tabla `llamados`
--
ALTER TABLE `llamados`
ADD PRIMARY KEY (`id`);
--
-- Indices de la tabla `pacientes`
--
ALTER TABLE `pacientes`
ADD PRIMARY KEY (`id`);
--
-- Indices de la tabla `salas`
--
ALTER TABLE `salas`
ADD PRIMARY KEY (`id`);
--
-- Indices de la tabla `usuarios`
--
ALTER TABLE `usuarios`
ADD PRIMARY KEY (`id`);
--
-- AUTO_INCREMENT de las tablas volcadas
--
--
-- AUTO_INCREMENT de la tabla `enfermeros`
--
ALTER TABLE `enfermeros`
MODIFY `id` int(8) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
--
-- AUTO_INCREMENT de la tabla `fichas_medicas`
--
ALTER TABLE `fichas_medicas`
MODIFY `id` int(8) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT de la tabla `llamados`
--
ALTER TABLE `llamados`
MODIFY `id` int(10) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=44;
--
-- AUTO_INCREMENT de la tabla `pacientes`
--
ALTER TABLE `pacientes`
MODIFY `id` int(8) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7;
--
-- AUTO_INCREMENT de la tabla `salas`
--
ALTER TABLE `salas`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8;
--
-- AUTO_INCREMENT de la tabla `usuarios`
--
ALTER TABLE `usuarios`
MODIFY `id` int(10) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;
COMMIT;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
<file_sep>/Pdf/plantilla.php
<?php
require 'FPDF\fpdf.php';
class PDF extends FPDF{
Function Header()
{
$this -> SetFont ('Arial', 'B' , 15);
$this -> Cell (30);
$this -> Cell (120,20, 'Reportes' ,0,0, 'C');
$this -> Ln (20);
}
function Footer (){
$this -> SetY (-15);
$this -> SetFont ('Arial', 'I', 8);
$this -> Cell (0,10, 'Pagina '.$this -> PageNo().'/{nb}',0,0, 'C');
}
}
?><file_sep>/Pdf/reporte.php
<?php
include_once 'plantilla.php';
include_once 'Conexion.php';
//enfermero
$query = "SELECT paciente, fecha_hora, fecha_hora_atendido, tipo, ubicacion FROM llamados AS m";
$resultado = $mysql->query($query);
$pdf = new PDF();
$pdf -> AliasNbPages();
$pdf -> AddPage();
$pdf -> SetFillColor (232,232,232);
$pdf -> SetFont ('Arial', 'B', 12);
$pdf -> Cell (45,6,'Paciente',1,0,'C',1);
$pdf -> Cell (40,6,'Fecha y hora',1,0,'C',1);
$pdf -> Cell (40,6,'Hora de atencion',1,0,'C',1);
$pdf -> Cell (25,6,'Tipo',1,0,'C',1);
$pdf -> Cell (45,6,'Ubicacion',1,0,'C',1);
$pdf -> Ln();
$pdf -> SetFont ('Arial','', 10);
while ($row = $resultado -> fetch_assoc())
{
$pdf -> Cell (45,6, utf8_decode ($row['paciente']),1,0,'C');
$pdf -> Cell (40,6, utf8_decode ($row['fecha_hora']),1,0,'C');
$pdf -> Cell (40,6, utf8_decode ($row['fecha_hora_atendido']),1,0,'C');
$pdf -> Cell (25,6, utf8_decode ($row['tipo']),1,0,'C');
$pdf -> Cell (45,6, utf8_decode ($row['ubicacion']),1,0,'C');
$pdf -> Ln();
}
$pdf -> Output();
?><file_sep>/includes/footer.php
<footer class="bg-primary">
<div class="container py-5">
<div class="row py-5">
<div class="col-md-4">
<h3>Lorem, ipsum dolor.</h3>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Facere doloremque nobis consequatur maiores libero officiis at atque iste, iusto harum.</p>
</div>
<div class="col-md-4">
<h3>Lorem, ipsum dolor.</h3>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Molestiae facere reiciendis optio harum veritatis vero quisquam magnam commodi molestias hic maiores autem nihil sapiente, laudantium aspernatur illo incidunt sit! Eum?</p>
</div>
<div class="col-md-4">
<h5>Lorem ipsum dolor sit amet.</h5>
<ul class="nav flex-column px-2">
<li class="nav-item">Lorem, ipsum.</li>
<li class="nav-item">Lorem, ipsum.</li>
<li class="nav-item">Lorem, ipsum.</li>
<li class="nav-item">Lorem ipsum dolor sit amet.</li>
<li class="nav-item">Lorem, ipsum.</li>
<li class="nav-item">Lorem, ipsum.</li>
</ul>
</div>
</div>
</div>
</footer>
<script src="<?php $_SERVER['DOCUMENT_ROOT'] ?>/js/jquery.min.js"></script>
<script src="<?php $_SERVER['DOCUMENT_ROOT'] ?>/js/pooper.min.js"></script>
<script src="<?php $_SERVER['DOCUMENT_ROOT'] ?>/js/bootstrap.min.js"></script>
<script src="<?php $_SERVER['DOCUMENT_ROOT'] ?>/js/socket.io.js"></script>
<script src="<?php $_SERVER['DOCUMENT_ROOT'] ?>/js/main.js"></script>
</body>
</html><file_sep>/usuario/usuario.php
<?php include_once $_SERVER['DOCUMENT_ROOT'].'/includes/header.php';
include $_SERVER['DOCUMENT_ROOT'].'/includes/alarma.php';
$rol = $user->isAdmin;
if ($rol == 1){
$rol = 'Administrador';
} else if ($rol == 0){
$rol = 'Usuario';
} else if ($rol == 2){
$rol = 'idk';
}
?>
<br>
<div class="container">
<div class="row">
<div class="col-md-9">
<center>
<p>Nombre de usuario: <?php echo $user->usuario; ?></p>
<p>Rol en la página: <?php echo $rol ?></p>
</div>
</center>
</div>
</div>
<?php include_once $_SERVER['DOCUMENT_ROOT'].'/includes/footer.php'; ?><file_sep>/Pdf/Conexion.php
<?php
$host = "localhost";
$mysql = new mysqli($host, "root", "", "bd_codigoazul");
if ($mysql->connect_error) {
echo 'Capo, no conecta<br>', $mysql->connect_error;
exit();
}
?>
<file_sep>/admin/usuarios.php
<?php include_once '../includes/header.php';
if ($isAdmin) {
/* Comprobamos si el formulario se envió */
if (isset($_POST['username']) && isset($_POST['password'])) {
$username = $_POST['username'];
$pass = $_POST['password'];
$isAdmin = $_POST['isAdmin'];
if ($username != "" || $pass != "" || $isAdmin != "") {
/* Instertamos los datos del nuevo usuario en la DB */
$mysqlconn->query("INSERT INTO usuarios (usuario, password, isAdmin) VALUES ('$username', '$pass', $isAdmin)") or $_SESSION['errorCreandoUser'] = "Error al intentar guardar en la base de datos";
// if($_SESSION['errorCreandoUser'])
} else {
$_SESSION['errorCreandoUser'] = "Complete los campos";
}
}
$users = $mysqlconn->query("SELECT * FROM usuarios");
?>
<div class="container pt-5">
<div class="row">
<div class="col-md-6 mx-auto mb-4">
<?php if (isset($_SESSION['errorCreandoUser'])) { ?>
<div class="alert alert-danger alert-dismissible fade show" role="alert">
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
<strong><?= $_SESSION['errorCreandoUser'] ?></strong>
</div>
<?php unset($_SESSION['errorCreandoUser']);
} ?>
<div class="card">
<div class="card-header">
<p class="h4 my-1 text-center">Crea un usuario</p>
</div>
<div class="card-body">
<form action="<?= $_SERVER['PHP_SELF'] ?>" method="post">
<div class="form-group">
<input type="text" name="username" class="form-control" placeholder="Nombre de usuario" required autofocus>
</div>
<div class="form-group">
<input type="<PASSWORD>" name="password" class="form-control" placeholder="<PASSWORD>" required>
</div>
<div class="form-group">
<div class="input-group">
<div class="input-group-prepend">
<div class="input-group-text">Rol</div>
</div>
<select name="isAdmin" class="form-control" required>
<option value="0">Usuario genérico</option>
<option value="1">Administrador</option>
</select>
</div>
</div>
<button type="submit" class="btn btn-success btn-block">Crear usuario</button>
</form>
</div>
</div>
</div>
<div class="col-md-6">
<table class="table table-striped table-bordered">
<thead>
<tr>
<th colspan="3" class="bg-light">
<p class="h4 my-1 text-center">Lista de usuarios</p>
</th>
</tr>
<tr>
<th>Nombre de usuario</th>
<th>Es admin</th>
<th>Funciones</th>
</tr>
</thead>
<tbody>
<?php while ($user = $users->fetch_object()) { ?>
<tr>
<td><?= $user->usuario ?></td>
<?php if ($user->isAdmin) { ?>
<td>Administrador</td>
<?php } else { ?>
<td>Usuario genérico</td>
<?php } ?>
<td><a href="functions/editUser.php?editID=<?= $user->id ?>" class="btn btn-warning">Editar</a></td>
</tr>
<?php } ?>
</tbody>
</table>
</div>
</div>
</div>
<?php } else include_once '../includes/templates/isntAdmin.html';
include_once '../includes/footer.php' ?><file_sep>/datos.php
<?php
include $_SERVER['DOCUMENT_ROOT'] . '/includes/header.php';
include_once $_SERVER['DOCUMENT_ROOT'].'/includes/header.php';
$resultados = mysqli_query($mysqlconn, "SELECT ubicacion, paciente, tipo, TIMESTAMPDIFF(SECOND, fecha_hora, fecha_hora_atendido) AS 'tiempo' FROM llamados WHERE `atendido` = 1");
echo "
<table border='1'>
<tr>
<th>Ubicación</th>
<th>Paciente</th>
<th>Tipo</th>
<th>Tiempo de respuesta</th>
</tr>
";
while ($row = $resultados->fetch_array()) {
echo "<tr>";
echo "<td>" .$row['ubicacion'] . "</td>";
echo "<td>" .$row['paciente'] . "</td>";
echo "<td>" .$row['tipo'] . "</td>";
echo "<td>" .$row['tiempo'] . "</td>";
echo "</tr>";
}
echo "</table>";
?><file_sep>/create.php
<?php
include $_SERVER['DOCUMENT_ROOT'] . '/includes/header.php';
date_default_timezone_set('America/Buenos_Aires');
// Define variables vacias
$ubicacion = $paciente = $tipo = "";
$ubicacion_err = $paciente_err = $tipo_err = "";
// Obtener lista de salas.
$lista_salas = '';
$query1 = $mysqlconn->query("SELECT sala FROM salas");
while ($row1 = $query1->fetch_array()) {
$lista_salas .= "<option>" . $row1['sala'] . "</option>";
}
$menu_salas = "
<p><label>Ubicacion</label></p>
<select id='ubicacion' name='ubicacion' class='form-control' value='<?php echo $ubicacion; ?>'>
" . $lista_salas . "
</select>
";
// Obtener lista de pacientes.
$lista_pacientes = '';
$query2 = $mysqlconn->query("SELECT nombre FROM pacientes");
while ($row2 = $query2->fetch_array()) {
$lista_pacientes .= "<option>" . $row2['nombre'] . "</option>";
}
$menu_pacientes = "
<p><label>Paciente</label></p>
<select id='paciente' name='paciente' class='form-control' value='<?php echo $paciente; ?>'>
" . $lista_pacientes . "
</select>
";
if ($_SERVER["REQUEST_METHOD"] == "POST") {
//Ubicación específica
$input_ubicacion = trim($_POST["ubicacion"]);
if (empty($input_ubicacion)) {
$ubicacion_err = "Coloca una ubicación.";
} else {
$ubicacion = $input_ubicacion;
}
//Paciente
$input_paciente = trim($_POST["paciente"]);
if (empty($input_paciente)) {
$paciente_err = "Coloca un paciente.";
} else {
$paciente = $input_paciente;
}
//Tipo de llamado
$input_llamado = trim($_POST["tipo"]);
if (empty($input_llamado)) {
$tipo_err = "Coloque tipo de llamado.";
} else {
$tipo = $input_llamado;
}
if (empty($ubicacion_err) && empty($paciente_err) && empty($tipo_err)) {
$sql = "INSERT INTO llamados (ubicacion, paciente, tipo, fecha_hora) VALUES (?, ?, ?, ?)";
if ($stmt = $mysqlconn->prepare($sql)) {
mysqli_stmt_bind_param($stmt, "ssss", $param_ubicacion, $param_paciente, $param_tipo, $param_hora);
$param_ubicacion = $ubicacion;
$param_paciente = $paciente;
$param_tipo = $tipo;
$param_hora = date("Y-m-d H:i:s");
if (mysqli_stmt_execute($stmt)) {
header("location: /");
exit();
} else {
echo "Error.";
}
}
mysqli_stmt_close($stmt);
}
}
?>
<div class="wrapper">
<div class="container pt-5">
<div class="row">
<div class="col-md-12">
<div class="page-header">
<h2>Realizar llamado</h2>
</div>
<p>Por favor rellene toda la información posible antes de realizar un llamado.</p>
<form action="<?= $_SERVER["PHP_SELF"] ?>" method="post" id="form-llamado">
<!--- Ubicacion --->
<div class="form-group <?php echo (!empty($ubicacion_err)) ? 'has-error' : ''; ?>">
<?php echo $menu_salas; ?>
<span class="help-block"><?php echo $ubicacion_err; ?></span>
</div>
<!--- Paciente --->
<div class="form-group <?php echo (!empty($paciente_err)) ? 'has-error' : ''; ?>">
<?php echo $menu_pacientes; ?>
<span class="help-block"><?php echo $paciente_err; ?></span>
</div>
<!--- Tipo --->
<div class="form-group <?php echo (!empty($tipo_err)) ? 'has-error' : ''; ?>">
<label>Tipo</label>
<br>
<select id="tipo" name="tipo" class="form-control" value="<?php echo $tipo; ?>">
<option value="Emergencia">Emergencia</option>
<option value="Llamado">Llamado</option>
</select>
<span class="help-block"><?php echo $tipo_err; ?></span>
<!--- <input type="text" name="tipo" class="form-control" value="<?php echo $tipo; ?>">
--->
</div>
<input type="submit" class="btn btn-primary" value="Enviar">
<a href="/" class="btn btn-default">Cancelar</a>
</form>
</div>
</div>
</div>
</div>
<?php include_once 'includes/footer.php'; ?><file_sep>/admin/functions/editUser.php
<?php
include_once '../../includes/header.php';
if($isAdmin){
/* Al entrar a eesta página, se envia a la vez el id del usuario a editar */
if(isset($_GET["editID"])) {
$id = $_GET['editID'];
if($id != "") {
$user = $mysqlconn->query("SELECT * FROM usuarios WHERE id = $id");
}
}
if(isset($_POST['username'])){
$username = $_POST['username'];
if($username != "") {
$mysqlconn->query("UPDATE ");
}
}
?>
<div class="container pt-5">
<div class="row">
<div class="col-md-6 mx-auto">
<div class="card">
<div class="card-header">
<p class="h4 m-0">Edite un usuario</p>
</div>
<div class="card-body">
<form action="<?= $_SERVER['PHP_SELF'] ?>" method="post">
<div class="form-group">
<input type="text" name="username" class="form-control" placeholder="<NAME>">
</div>
<button type="submit" class="btn btn-success btn-block">Editar</button>
</form>
</div>
</div>
</div>
</div>
</div>
<?php } else { ?>
<?php }
include_once '../../includes/footer.php';?><file_sep>/includes/session.php
<?php
session_start();
if ($_SESSION['connected'] == true){
} else if (!isset($_SESSION['connected'])) {
$_SESSION['connected'] = false;
}
<file_sep>/logout.php
<?php
require ('includes/configsql.php');
if ($_SESSION['connected'] == false){
header ('location: login.php');
} else if ($_SESSION['connected'] == true) {
$_SESSION['connected'] = false;
header ('location: login.php');
}
?><file_sep>/admin/registrarPaciente.php
<?php include_once '../includes/header.php';
if ($isAdmin) {
/* Comprobamos si el formulario se envió */
if (isset($_POST['nombre']) && isset($_POST['ubic']) && isset($_POST['nomenfermero'])) {
$paciente = $_POST['nombre'];
$ubic = $_POST['ubic'];
$enfer = $_POST['nomenfermero'];
if ($paciente != "" || $ubic != "" || $enfer != "") {
/* Instertamos los datos del nuevo paciente en la DB */
$mysqlconn->query("INSERT INTO pacientes (nombre, enfermero, ubicacion) VALUES ('$paciente', '$enfer', $ubic)") or $_SESSION['errorCreandoUser'] = "Error al intentar guardar en la base de datos";
// if($_SESSION['errorCreandoUser'])
} else {
$_SESSION['errorCreandoUser'] = "Complete los campos";
}
}
$enfermeros = $mysqlconn->query('SELECT `id`, `nombre`, `apellido` FROM `enfermeros`');
$ubicacion = $mysqlconn->query('SELECT `id`, `sala` FROM `salas`');
$pacientes = $mysqlconn->query('SELECT * FROM `pacientes`');
$pacientec = $pacientes->fetch_object();
$idp = $pacientec->id;
$pacpac = $mysqlconn->query("SELECT * FROM `pacientes` WHERE id = $idp");
$pacpac = $pacpac->fetch_object();
$idu = $pacpac->ubicacion;
$ide = $pacpac->enfermero;
$ubicpac = $mysqlconn->query("SELECT * FROM `salas` WHERE id = $idu");
$enfepac = $mysqlconn->query("SELECT * FROM `enfermeros` WHERE id = $ide");
$idub = $ubicpac->fetch_object();
$idef = $enfepac->fetch_object();
?>
<div class="container pt-5">
<div class="row">
<div class="col-md-6 mx-auto">
<div class="card">
<div class="card-header">
<p class="h4 my-1 text-center">Registre un paciente</p>
</div>
<div class="card-body">
<form action="<?= $_SERVER['PHP_SELF'] ?>" method="post">
<div class="form-group">
<input type="text" placeholder="Nombre del paciente" name="nombre" class="form-control">
<div class="input-group">
<div class="input-group-prepend">
<div class="input-group-text">Enfermero</div>
</div>
<select placeholder="Enfermero" name="nomenfermero" class="form-control">
<?php
while ($rowsenf = $enfermeros -> fetch_assoc()){
echo'
<option value="'.$rowsenf['id'].'">'.$rowsenf['apellido'].' '.$rowsenf['nombre'].'</option>
';
}
?>
</select>
</div>
<div class="input-group">
<div class="input-group-prepend">
<div class="input-group-text">Ubicación</div>
</div>
<select placeholder="Ubicacion" name="ubic" class="form-control">
<?php
while ($rowsub = $ubicacion -> fetch_assoc()){
echo'
<option value="'.$rowsub['id'].'">'.$rowsub['sala'].'</option>
';
}
?>
</select>
</div>
</div>
<button type="submit" class="btn btn-success btn-block">Guardar</button>
</form>
</div>
</div> <!-- Cierra div 'card' -->
</div>
<div class="col-md-6">
<table class="table table-striped table-bordered">
<thead>
<tr>
<th colspan="4" class="bg-light">
<p class="h4 my-1 text-center">Lista de usuarios</p>
</th>
</tr>
<tr>
<th>Nombre de usuario</th>
<th>Ubicación</th>
<th>Enfermero</th>
<th>Funciones</th>
</tr>
</thead>
<tbody>
<?php while ($paciente = $pacientes->fetch_object()) { ?>
<tr>
<td><?= $paciente->nombre ?></td>
<td><?= $idub->sala ?></td>
<td><?= $idef->apellido ?> <?= $idef->nombre ?></td>
<td>
<a href="functions/editPaciente.php?editID=<?= $paciente->id ?>" class="btn btn-warning">Editar</a>
<a href="functions/editPaciente.php?editID=<?= $paciente->id ?>&delete=1" class="btn btn-danger">Borrar</a>
</td>
</tr>
<?php } ?>
</tbody>
</table>
</div>
</div>
</div>
<?php } else include_once 'templates/isntAdmin.html';
include_once '../includes/footer.php'; ?><file_sep>/app/routes/index.js
const { Router } = require("express"),
router = Router(),
pool = require("../db");
router.get("/", (req, res) => {
res.render("index");
});
router.get("/login", (req, res) => {
const users = pool.query("SELECT * FROM usuarios");
res.render("login", { users });
});
router.post("/login", (req, res) => {
const { username, password } = req.body;
});
module.exports = router;
<file_sep>/includes/header.php
<?php
include($_SERVER['DOCUMENT_ROOT'].'/includes/configsql.php');
if ($_SESSION['connected'] == false){
if (isset($loginvar)){
if ($loginvar == false){
header ('location: login.php');
}
} else if (!isset($loginvar)) {
header ('location: '.$_SERVER['DOCUMENT_ROOT'].'/login.php');
}
}
/* Se comprueba si el usuario se logeó. Al logearse se crea una variable de sesión llamada 'userIdLogeado',
donde se guarda el 'id' del usuario */
if(isset($_SESSION['userIdLogeado']) || $_SESSION['userIdLogeado'] != '') {
$id = $_SESSION['userIdLogeado'];
if ($id != '') {
/* Consulta a la tabla 'usuarios' */
$user = $mysqlconn->query("SELECT * FROM usuarios WHERE id = $id");
$user = $user->fetch_object();
/* Revisamos si el usuario es administrador, y en la variable $isAdmin que registrado si lo es o no. */
$user->isAdmin ? $isAdmin = true : $isAdmin = false;
} else {
$id = false;
}
} else if (!isset($_SESSION['userIdLogeado'])){
$_SESSION['userIdLogeado'] = '';
}
require $_SERVER['DOCUMENT_ROOT'].'/includes/htmlpurifier/HTMLPurifier.includes.php';
require_once $_SERVER['DOCUMENT_ROOT'].'/includes/htmlpurifier/HTMLPurifier.auto.php';
$configpurifuer = HTMLPurifier_Config::createDefault();
$configpurifuer->set('Core.Encoding', 'ISO-8859-1');
$purifier = new HTMLPurifier($configpurifuer);
?>
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Hospital Blue Code</title>
<link rel="stylesheet" href="<?PHP $_SERVER['DOCUMENT_ROOT'] ?>/css/bootswatch-cosmo.min.css">
<link rel="stylesheet" href="<?PHP $_SERVER['DOCUMENT_ROOT'] ?>/css/style.css">
</head>
<body style="padding-top: 55px;">
<nav class="navbar navbar-expand-md navbar-light bg-light fixed-top">
<a class="navbar-brand" href="/">Blue Code</a>
<button class="navbar-toggler d-lg-none" type="button" data-toggle="collapse" data-target="#collapsibleNavId" aria-controls="collapsibleNavId" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<?php
if ($_SESSION['connected'] == true) {?>
<div class="collapse navbar-collapse" id="collapsibleNavId">
<ul class="navbar-nav mr-auto mt-2 mt-lg-0">
<?php if ($isAdmin == true) { ?>
<li class="nav-item">
<a href="/admin/" class="nav-link">Panel Administrador</a>
</li>
<?php } ?>
<li class="nav-item">
<a href="/usuario/" class="nav-link">Panel Usuario</a>
</li>
<!-- <li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="dropdownId" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Panel Usuario</a>
<div class="dropdown-menu" aria-labelledby="dropdownId">
<a class="nav-link" href="">7u7</a>
<a class="nav-link" href="/usuario">Usuario</a>
</div>
</li> -->
</ul>
<?php } ?>
<!-- <ul class="navbar-nav pull-right">
<li class="nav-item"> -->
<?php
if ($_SESSION["connected"] == true) {?>
<a class="btn btn-outline-dark" href="<?PHP $_SERVER['DOCUMENT_ROOT'] ?>/logout.php">Cerrar sesión</a>
<?php } ?>
<!-- </li>
</ul> -->
</div>
</nav><file_sep>/admin/listUsers.php
<?php
include_once '../includes/header.php';
$users = $mysqlconn->query("SELECT * FROM usuarios");
if ($isAdmin) {
?>
<div class="container pt-5">
<div class="row">
<div class="col-md-6 mx-auto">
<table class="table table-striped table-bordered">
<thead>
<tr>
<th colspan="3" class="text-center h4">Lista de usuarios</th>
</tr>
<tr>
<th>Nombre de usuario</th>
<th>Es admin</th>
<th>Funciones</th>
</tr>
</thead>
<tbody>
<?php while ($user = $users->fetch_object()) { ?>
<tr>
<td><?= $user->usuario ?></td>
<?php if ($user->isAdmin) { ?>
<td>Administrador</td>
<?php } else { ?>
<td>Usuario genérico</td>
<?php } ?>
<td><a href="functions/editUser.php?editID=<?= $user->id ?>" class="btn btn-warning">Editar</a></td>
</tr>
<?php } ?>
</tbody>
</table>
</div>
</div>
</div>
<?php } else include 'templates/isntAdmin.html';
include_once '../includes/footer.php'; ?><file_sep>/app/index.js
const express = require("express"), // Framework para backend para NodeJS
app = express(),
morgan = require("morgan"), // modulo para ver peticiones http
{ join } = require("path"),
SocketIO = require("socket.io");
/* Configuración */
const PORT = 3000;
app.set("views", join(__dirname, "views"));
app.set("view engine", "ejs");
/* Middlewares */
app.use(morgan("dev"));
app.use(express.json());
/* Rutas */
app.use(require(join(__dirname, "routes")));
/* Archivos estáticos */
app.use(express.static(join(__dirname, "public")));
/* Encendemos el servidor */
const server = app.listen(PORT, () => {
console.log("Servidor encendido. Puerto:", PORT);
});
/* SocketIO: libreria que usa websocket.
websockets para comunicacion inmediata de la alerta a todos los usuarios que estén conectados
Crea un canal de comunicacion bidireccional, real-time
*/
const io = SocketIO(server);
io.on("connection", socket => {
console.log("Socket conectado!");
socket.on("alert", data => {
console.log(data.msg);
io.sockets.emit("alert", { msg: data.msg });
let d = { msg: data.msg };
io.sockets.emit("alert", d);
});
});
<file_sep>/enviarAlerta.php
<?php include_once 'includes/header.php'; ?>
<div class="row">
<form>
</form>
</div>
<script>
// if(sessionStorage.getItem(''))
</script>
<?php include_once 'includes/footer.php'; ?><file_sep>/admin/pdf/reporte.php
<?php
include_once 'plantilla.php';
include_once '../../includes/configsql.php';
// include_once 'Conexion.php';
//enfermero
// $query = "SELECT * FROM llamados";
// $query = "SELECT paciente, fecha_hora, fecha_hora_atendido, tipo ,nombre FROM llamados";
$query = "SELECT paciente, fecha_hora, fecha_hora_atendido, tipo ,nombre FROM llamados AS m inner join enfermeros";
$resultado = $mysqlconn->query($query);
$pdf = new PDF();
$pdf->AliasNbPages();
$pdf->AddPage();
$pdf->SetFillColor(232, 232, 232);
$pdf->SetFont('Arial', 'B', 12);
$pdf->Cell(30, 6, 'Paciente', 1, 0, 'C', 1);
$pdf->Cell(40, 6, 'Fecha y hora', 1, 0, 'C', 1);
$pdf->Cell(45, 6, 'Hora de atencion', 1, 0, 'C', 1);
$pdf->Cell(25, 6, 'Tipo', 1, 0, 'C', 1);
$pdf->Cell(50, 6, 'Enfermero encargado', 1, 0, 'C', 1);
$pdf->Ln();
$pdf->SetFont('Arial', '', 10);
while ($row = $resultado->fetch_array()) {
$pdf->Cell(30, 6, utf8_decode($row['paciente']), 1, 0, 'C');
$pdf->Cell(40, 6, utf8_decode($row['fecha_hora']), 1, 0, 'C');
$pdf->Cell(45, 6, utf8_decode($row['fecha_hora_atendido']), 1, 0, 'C');
$pdf->Cell(25, 6, utf8_decode($row['tipo']), 1, 0, 'C');
$pdf->Cell(50, 6, utf8_decode($row['nombre']), 1, 0, 'C');
$pdf->Ln();
}
$pdf->Output();
<file_sep>/admin/registrarEnfermero.php
<?php
include_once '../includes/header.php';
if ($isAdmin) {
?>
<div class="container pt-5">
<div class="row">
<div class="col-md-6 mx-auto">
<div class="card">
<div class="card-header">
<p class="h4 my-1 text-center">Registre un <strong>Enfermero</strong></p>
</div>
</div>
</div>
</div>
</div>
<?php } else include_once 'templates/instAdmin.html';
include_once '../includes/footer.php';
?><file_sep>/admin/listPacientes.php
<?php include_once '../includes/header.php';
if ($isAdmin) {
?>
<div class="container py-5">
<div class="row">
<div class="col-md-8 mx-auto">
<table class="table table-bordered table-striped">
<thead>
<tr>
<th colspan="2" class="h4 my-1 text-center">Lista de <strong>Pacientes</strong></th>
</tr>
<tr>
<th>N°</th>
<th>Nombre</th>
</tr>
</thead>
<tbody>
<?php $pacientes = $mysqlconn->query("SELECT * FROM pacientes");
while ($p = $pacientes->fetch_object()) { ?>
<tr>
<td><?= $p->id ?></td>
<td><?= $p->nombre ?></td>
</tr>
<?php } ?>
</tbody>
</table>
</div>
</div>
</div>
<?php }
include_once '../includes/footer.php'; ?><file_sep>/index.php
<?php
$loginvar = false;
include_once 'includes/header.php';
include $_SERVER['DOCUMENT_ROOT'].'/includes/alarma.php';
?>
<div class="jumbotron">
<h1 class="my-5">¡Bienvenido!</h1>
<?php if ($isAdmin == true) { ?>
<a class="btn btn-info" href="/create.php"><h1>Enviar Alerta</h1></a>
<a class="btn btn-info" href="/llamados.php"><h1>Ver alertas</h1></a>
<?php } ?>
</div>
<script>
//if(sessionStorage.getItem(''))
</script>
<?php include_once 'includes/footer.php'; ?><file_sep>/js/main.js
const ubicacion = document.getElementById("ubicacion");
const paciente = document.getElementById("paciente");
const form = document.getElementById("form-llamado");
const tipo = document.getElementById("tipo");
const socket = io("ws://192.168.1.5:3000");
socket.on("alert", data => {
alert(data.msg);
});
form.addEventListener("submit", e => {
// e.preventDefault(); // Evitamos que el formulario se envíe y resetee la página
let mensaje = `Alerta tipo: ${tipo.value} \n${paciente.value} ubicado en ${ubicacion.value}`;
socket.emit("alert", { msg: mensaje });
});
<file_sep>/login.php
<?php
$loginvar = true;
if (isset($_SESSION['userIdLogeado'])) {
header('location: /');
}
require('includes/header.php');
/* Si el formulario se envió, entonces... */
if (isset($_POST['user']) && isset($_POST['pass'])) {
/* purificamos las entradas */
$_SESSION['user'] = $purifier->purify($_POST['user']);
$_SESSION['pass'] = $purifier->purify($_POST['pass']);
/* Comprobamos los datos de la DB de usuarios */
$query = $mysqlconn->query('SELECT * FROM usuarios WHERE usuario = ("' . $_SESSION['user'] . '") AND password = ("' . $_SESSION['pass'] . '")');
$row = $query->fetch_assoc();
if (!$row) {
$_SESSION['message'] = "No coinciden los datos";
$_SESSION['connected'] = false;
} else {
$_SESSION['connected'] = true;
$_SESSION['userIdLogeado'] = $row['id'];
}
if ($_SESSION['connected'] == true) {
header('location: /');
}
}
?>
<div class="container pt-5">
<div class="row">
<div class="col-md-6 mx-auto">
<?php if (isset($_SESSION['message'])) { ?>
<div class="alert alert-danger alert-dismissible fade show" role="alert">
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
<strong><?= $_SESSION['message'] ?></strong>
</div>
<?php unset($_SESSION['message']);
} ?>
<div class="card">
<div class="card-header">
<p class="h4 my-1 text-center">Login</p>
</div>
<div class="card-body">
<? # $_SERVER['PHP_SELF'] se refiere a la dirección de este archivo
?>
<form method="post" action="<?= $_SERVER['PHP_SELF'] ?>">
<div class="form-group">
<input class="form-control" type="text" name="user" placeholder="<NAME>" required>
</div>
<div class="form-group">
<input class="form-control" type="password" name="pass" placeholder="<PASSWORD>" required>
</div>
<input class="btn btn-primary btn-block" type="submit" value="Enviar">
</form>
</div>
</div> <!-- Termina el 'card' -->
</div>
</div>
</div> <!-- Fin de 'container' -->
<?php include_once 'includes/footer.php'; ?><file_sep>/admin/index.php
<?php include_once $_SERVER['DOCUMENT_ROOT'] . '/includes/header.php';
if($isAdmin){
?>
<div class="container py-5">
<div class="col-md-6 mx-auto">
<div class="card">
<div class="card-header">
<p class="h4 my-1 text-center">Funciones de administrador</p>
</div>
<!-- <div class="card-body"> -->
<div class="list-group">
<a href="usuarios.php" class="list-group-item list-group-item-action"><strong>Usuarios</strong></a>
<a href="zonas.php" class="list-group-item list-group-item-action"><strong>Zonas</strong></a>
<a href="registrarPaciente.php" class="list-group-item list-group-item-action "><strong>Pacientes</strong></a>
<a href="registrarEnfermero.php" class="list-group-item list-group-item-action "><strong>Personal de salud</strong></a>
<a href="/pdf/reporte.php" class="list-group-item list-group-item-action "><strong>Informe de pacientes</strong></a>
<!-- <a href="listUsers.php" class="list-group-item list-group-item-action ">Ver y modificar los <strong>Usuarios</strong></a>
<a href="listPacientes.php" class="list-group-item list-group-item-action ">Ver todos los <strong>Pacientes</strong></a> -->
</div>
<!-- </div> -->
</div> <!-- Cierra div 'card' -->
</div> <!-- Cierra div 'col-md-6' -->
<div class="col-md-9">
</div>
</div>
<?php } else include_once '../includes/templates/isntAdmin.html';
include_once $_SERVER['DOCUMENT_ROOT'] . '/includes/footer.php'; ?><file_sep>/usuario/editar_perfil.php
<?php include_once $_SERVER['DOCUMENT_ROOT'].'/includes/header.php';
include $_SERVER['DOCUMENT_ROOT'].'/includes/alarma.php';
if ($_POST['oldpass'] != ''){
$pass1 = $_POST['oldpass'];
$pass2 = $_POST['newpass1'];
$pass3 = $_POST['newpass2'];
if ($pass2 != $pass3) {
$msg = 'Las nuevas contraseñas no coinciden';
} else {
$query = $mysqlconn->query("SELECT * FROM usuarios WHERE id = $id");
if ($query == false){
die('err');
}
$row = $query->fetch_assoc();
if ($row['password'] != $pass1){
$msg = 'Contraseña incorrecta';
} else {
$query = $mysqlconn->query("UPDATE usuarios SET `password` = <PASSWORD>' WHERE id = $id");
if ($query == false){
$msg = 'La contraseña no se ha podido actualizar';
} else {
$successmsg = 'Contraseña cambiada correctamente.';
}
}
}
}
?>
<?php
$resultados = mysqli_query($mysqlconn, "SELECT * FROM llamados WHERE `atendido` = 0");
if (mysqli_num_rows($resultados) == 0) {
// No hay llamados en el momento.
} else {
echo '
<script> alert("CÓDIGO AZUL\nHay llamados pendientes por responder."); window.location.replace("/llamados.php"); </script>
';
}
?>
<br>
<div class="container">
<div class="row">
<div class="col-md-12">
<?php if (isset($successmsg)) { ?>
<div class="alert alert-info alert-dismissible fade show" role="alert">
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
<strong><?php echo $successmsg; ?></strong>
</div>
<?php } ?>
<?php if (isset($msg)) { ?>
<div class="alert alert-danger alert-dismissible fade show" role="alert">
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
<strong><?php echo $msg; ?></strong>
</div>
<?php } ?>
<div class="card card-header">
<center>Complete el formulario</center>
</div>
<div class="card card-body">
<form action="<?= $_SERVER['PHP_SELF'] ?>" method="post">
<div class="form-group">
<input type="password" name="oldpass" class="form-control" placeholder="Contraseña anterior" required>
</div>
<div class="form-group">
<input type="<PASSWORD>" name="newpass1" class="form-control" placeholder="<PASSWORD>" required>
</div>
<div class="form-group">
<input type="password" name="newpass2" class="form-control" placeholder="Repite Contraseña" required>
</div>
<button type="submit" class="btn btn-success btn-block">Cambiar contraseña</button>
</form>
</div>
</div>
</div>
</div>
<?php include_once $_SERVER['DOCUMENT_ROOT'].'/includes/footer.php'; ?> | 6a5287e2650f3c7b3128c18e2e42fbde7f507b5c | [
"JavaScript",
"SQL",
"PHP"
] | 33 | PHP | AndyOsuna/alerta-codigo-azul | 08c2ba482c9b9b11ff97bb5c5142c16e893eaafb | c4fcbdc21dbb279f33faa27d9b44bf93a62fc09e |
refs/heads/master | <repo_name>moayidali/k-nearest-neighbors<file_sep>/knearestneighbor.py
#!/usr/bin/env python
# coding: utf-8
# In[7]:
get_ipython().system('pip install pgmpy')
# In[17]:
import numpy as np
import pandas as pd
import scipy
import matplotlib.pyplot as plt
from pylab import rcParams
import urllib
import sklearn
from sklearn.neighbors import KNeighborsClassifier
from sklearn import neighbors
from sklearn import preprocessing
from sklearn.model_selection import train_test_split
from sklearn import metrics
# In[19]:
np.set_printoptions(precision=4,suppress=True)
get_ipython().run_line_magic('matplotlib', 'inline')
rcParams['figure.figsize']=7,4
plt.style.use('seaborn-whitegrid')
# In[111]:
address='C:/Users/HELLO/Documents/Electricdata.csv'
data=pd.read_csv(address)
data.columns=['tau1','tau2','tau3','tau4','p1','p2','p3','p4','g1','g2','g3','g4','stabf']
X_prime= data.ix[:,(0,1,2,3,4,5,6,7,8,9,10,11)].values
y = data.ix[:,12].values
# In[115]:
X=preprocessing.scale(X_prime)
print(X.shape)
print(y.shape)
# In[116]:
X_train, X_test, y_train, y_test=train_test_split(X,y, test_size=.30, random_state=123)
# In[137]:
clf = neighbors.KNeighborsClassifier()
clf.fit(X_train, y_train)
print(clf)
# In[138]:
y_expect = y_test
y_pred = clf.predict(X_test)
print(metrics.classification_report(y_expect,y_pred))
# In[ ]:
print("Accuracy:",metrics.accuracy_score(y_expect, y_pred))
<file_sep>/SVM.py
#!/usr/bin/env python
# coding: utf-8
# In[1]:
import numpy as np
import pandas as pd
import scipy
import matplotlib.pyplot as plt
from pylab import rcParams
import urllib
import sklearn
from sklearn.neighbors import KNeighborsClassifier
from sklearn import neighbors
from sklearn import preprocessing
from sklearn.model_selection import train_test_split
from sklearn import metrics
# In[2]:
address='C:/Users/HELLO/Documents/Electricdata.csv'
data=pd.read_csv(address)
# In[3]:
data.head()
# In[4]:
X =data.iloc[:,0:12]
y = data.iloc[:,12]
X_train, X_test, y_train, y_test=train_test_split(X,y, test_size=.30, shuffle=True)
# In[7]:
y_train=[-1 if y==0 else 1 for y in y_train ]
y_test=[-1 if y==0 else 1 for y in y_test ]
# In[8]:
y_train
# In[14]:
from sklearn.preprocessing import StandardScaler
scaler = StandardScaler()
# In[15]:
X_train =scaler.fit_transform(X_train)
X_test = scaler.transform(X_test)
# In[17]:
from sklearn import svm
from sklearn.svm import SVC
svm = SVC(kernel='linear', C=20)
# In[18]:
svm.fit(X_train , y_train)
# In[25]:
y_pred =svm.predict(X_test)
# In[22]:
from sklearn.metrics import accuracy_score, confusion_matrix
# In[26]:
test_score= accuracy_score(y_test,y_pred)
# In[27]:
test_score
# In[28]:
confusion_matrix(y_test, y_pred)
# In[30]:
from collections import Counter
# In[31]:
Counter(y_test)
# In[32]:
y_train_pred=svm.predict(X_train)
# In[33]:
accuracy_score(y_train,y_train_pred)
# In[ ]:
<file_sep>/README.md
k-nearest-neighbors
It consist of k nearest neighbor algorithm, SVM(linear classifier) and naive bayes algorithm on the electric grid dataset.
| 072edf7aeff4b17ae1b56c60aeac352b282daceb | [
"Markdown",
"Python"
] | 3 | Python | moayidali/k-nearest-neighbors | f4e56b44e3fd41eb3a6f36cdcf2b5a726dcfa4d4 | fa8f4115b5767df9b43eaac2a13876f6de87d390 |
refs/heads/master | <repo_name>oliverfoxall/react-video-searcher<file_sep>/src/components/VideoItem.js
import './VideoItem.css';
import React from 'react';
const VideoItem = ({ video, onVideoSelect }) => {
return (
<div onClick={() => onVideoSelect(video)} className='media video-item'>
<figure className='media-left'>
<p className="image is-64x64">
<img src={video.snippet.thumbnails.medium.url} alt="video thumb"/>
</p>
</figure>
<div className="media-content">
<div className="content">
<p>
<strong>
{video.snippet.title}
</strong>
<br/>
{video.snippet.description}
</p>
</div>
</div>
</div>
)
};
export default VideoItem;<file_sep>/src/components/VideoDetail.js
import React from 'react';
const VideoDetail = ({video}) => {
if (!video){
return (
<div></div>
)
}
const videoSrc = `https://www.youtube.com/embed/${video.id.videoId}`;
return (
<div className="content">
<div className="column">
<iframe width="560" height="315" title='video player' src={videoSrc} frameBorder="0"/>
</div>
<div className="column box">
<h4>{video.snippet.title}</h4>
<p>
{video.snippet.description}
</p>
</div>
</div>
)
};
export default VideoDetail; | 67fcbc40b3ffe6021a1cfb9ed526046a39cfad51 | [
"JavaScript"
] | 2 | JavaScript | oliverfoxall/react-video-searcher | c8174563dc33a9e5ff14c698880a311812c04f92 | e1c9396462d88ee53477ee5f057d398ed67cf6fe |
refs/heads/master | <repo_name>adasoluciones/Configuration<file_sep>/Source/Exceptions/AdaFrameworkConfigurationException.cs
using System;
namespace Ada.Framework.Configuration.Exceptions
{
public class AdaFrameworkConfigurationException: Exception
{
public AdaFrameworkConfigurationException() : base() { }
public AdaFrameworkConfigurationException(string mensaje)
: base(mensaje) { }
public AdaFrameworkConfigurationException(string mensaje, Exception innerException)
: base(mensaje, innerException) { }
}
}
<file_sep>/Source/Section/ArchivoConfiguracion.cs
using System.Configuration;
namespace Ada.Framework.Configuration.Section
{
public class ArchivoConfiguracion : ConfigurationElement
{
/// <summary>
/// Obtiene o establece el nombre identificador del archivo. Puede no corresponder al nombre del archivo físico.
/// </summary>
/// <remarks>
/// Registro de versiones:
///
/// 1.0 06/10/2015 <NAME> (Ada Ltda.): versión inicial.
/// </remarks>
[ConfigurationProperty("Name", IsRequired = true, IsKey = true)]
public string Nombre
{
get
{
return this["Name"] as string;
}
set
{
this["Name"] = value;
}
}
/// <summary>
/// Obtiene o establece la ruta del archivo.
/// </summary>
/// <remarks>
/// Registro de versiones:
///
/// 1.0 06/10/2015 <NAME> (Ada Ltda.): versión inicial.
/// </remarks>
[ConfigurationProperty("Path", IsRequired = true)]
public string Ruta
{
get
{
return this["Path"] as string;
}
set
{
this["Path"] = value;
}
}
}
}
<file_sep>/Source/Section/ColeccionPropiedadesConfiguracion.cs
using System.Configuration;
namespace Ada.Framework.Configuration.Section
{
public class ColeccionPropiedadesConfiguracion : ConfigurationElementCollection
{
public ColeccionPropiedadesConfiguracion()
{
AddElementName = "Property";
}
[ConfigurationProperty("Name", IsRequired = true, IsKey = true)]
public string Nombre
{
get
{
return this["Name"] as string;
}
set
{
this["Name"] = value;
}
}
public PropiedadConfiguracion this[int index]
{
get { return (PropiedadConfiguracion)BaseGet(index); }
set
{
if (BaseGet(index) != null)
{
BaseRemoveAt(index);
}
BaseAdd(index, value);
}
}
public void Add(PropiedadConfiguracion propiedadConfiguracion)
{
BaseAdd(propiedadConfiguracion);
}
public void Clear()
{
BaseClear();
}
protected override ConfigurationElement CreateNewElement()
{
return new PropiedadConfiguracion();
}
protected override object GetElementKey(ConfigurationElement propiedadConfiguracion)
{
return ((PropiedadConfiguracion)propiedadConfiguracion).Nombre;
}
public void Remove(PropiedadConfiguracion propiedadConfiguracion)
{
BaseRemove(propiedadConfiguracion.Nombre);
}
public void RemoveAt(int index)
{
BaseRemoveAt(index);
}
public void Remove(string name)
{
BaseRemove(name);
}
}
}
<file_sep>/Source/Section/PropiedadConfiguracion.cs
using System.Configuration;
namespace Ada.Framework.Configuration.Section
{
public class PropiedadConfiguracion : ConfigurationElement
{
/// <summary>
/// Obtiene o establece el nombre identificador del archivo. Puede no corresponder al nombre del archivo físico.
/// </summary>
/// <remarks>
/// Registro de versiones:
///
/// 1.0 06/10/2015 <NAME> (Ada Ltda.): versión inicial.
/// </remarks>
[ConfigurationProperty("Name", IsRequired = true, IsKey = true)]
public string Nombre
{
get
{
return this["Name"] as string;
}
set
{
this["Name"] = value;
}
}
/// <summary>
/// Obtiene o establece la ruta del archivo.
/// </summary>
/// <remarks>
/// Registro de versiones:
///
/// 1.0 06/10/2015 <NAME> (Ada Ltda.): versión inicial.
/// </remarks>
[ConfigurationProperty("Value", IsRequired = true)]
private string _Valor
{
get
{
return this["Value"] as string;
}
set
{
this["Value"] = value;
}
}
public object Valor
{
get
{
return Ada.Framework.Data.Json.JsonConverterFactory.ObtenerJsonConverter().ToObject(_Valor, false);
}
set
{
_Valor = Ada.Framework.Data.Json.JsonConverterFactory.ObtenerJsonConverter().ToJson(value);
}
}
}
}
<file_sep>/Source/Section/FrameworkConfigSection.cs
using System.Configuration;
namespace Ada.Framework.Configuration.Section
{
public class FrameworkConfigSection : ConfigurationSection
{
[ConfigurationProperty("ConfigFiles", IsDefaultCollection = false)]
[ConfigurationCollection(typeof(ColeccionArchivosConfiguracion),
AddItemName = "File",
ClearItemsName = "Clear",
RemoveItemName = "Delete")]
public ColeccionArchivosConfiguracion ConfigFiles
{
get
{
return (ColeccionArchivosConfiguracion)base["ConfigFiles"];
}
}
[ConfigurationProperty("ConfigProperties", IsDefaultCollection = false)]
[ConfigurationCollection(typeof(GrupoPropiedadesConfiguracion),
AddItemName = "PropertiesGroup",
ClearItemsName = "Clear",
RemoveItemName = "Delete")]
public GrupoPropiedadesConfiguracion ConfigProperties
{
get
{
return (GrupoPropiedadesConfiguracion)base["ConfigProperties"];
}
}
}
}
<file_sep>/Source/FrameworkConfigurationManager.cs
using Ada.Framework.Configuration.Exceptions;
using Ada.Framework.Configuration.Section;
using System;
using System.Collections.Generic;
namespace Ada.Framework.Configuration
{
public static class FrameworkConfigurationManager
{
public static IList<PropiedadConfiguracion> ObtenerPropiedades(string grupo)
{
IList<PropiedadConfiguracion> retorno = new List<PropiedadConfiguracion>();
object seccion = System.Configuration.ConfigurationManager.GetSection("FrameworkConfigSection/FrameworkConfig");
FrameworkConfigSection config = seccion as FrameworkConfigSection;
if (config == null)
{
throw new AdaFrameworkConfigurationException("¡No está declarada la sección de configuración en el archivo!");
}
if (!(seccion is FrameworkConfigSection))
{
throw new AdaFrameworkConfigurationException("¡El tipo de la sección FrameworkConfigSection/FrameworkConfig no es Ada.Framework.Config.Section.AdaFrameworkConfigSection!");
}
if (string.IsNullOrEmpty(grupo))
{
throw new AdaFrameworkConfigurationException("¡El grupo no puede ser nulo o vacio!");
}
foreach (ColeccionPropiedadesConfiguracion xGrupo in config.ConfigProperties)
{
if (xGrupo.Nombre.Equals(grupo, StringComparison.InvariantCultureIgnoreCase))
{
foreach (PropiedadConfiguracion propiedad in xGrupo)
{
retorno.Add(propiedad);
}
break;
}
}
return retorno;
}
public static IList<ColeccionPropiedadesConfiguracion> ObtenerGrupos()
{
IList<ColeccionPropiedadesConfiguracion> retorno = new List<ColeccionPropiedadesConfiguracion>();
object seccion = System.Configuration.ConfigurationManager.GetSection("FrameworkConfigSection/FrameworkConfig");
FrameworkConfigSection config = seccion as FrameworkConfigSection;
if (config == null)
{
throw new AdaFrameworkConfigurationException("¡No está declarada la sección de configuración en el archivo!");
}
if (!(seccion is FrameworkConfigSection))
{
throw new AdaFrameworkConfigurationException("¡El tipo de la sección FrameworkConfigSection/FrameworkConfig no es Ada.Framework.Config.Section.AdaFrameworkConfigSection!");
}
foreach (ColeccionPropiedadesConfiguracion grupo in config.ConfigProperties)
{
retorno.Add(grupo);
}
return retorno;
}
public static PropiedadConfiguracion ObtenerPropiedad(string grupo, string nombre)
{
object seccion = System.Configuration.ConfigurationManager.GetSection("FrameworkConfigSection/FrameworkConfig");
FrameworkConfigSection config = seccion as FrameworkConfigSection;
if (config == null)
{
throw new AdaFrameworkConfigurationException("¡No está declarada la sección de configuración en el archivo!");
}
if (!(seccion is FrameworkConfigSection))
{
throw new AdaFrameworkConfigurationException("¡El tipo de la sección FrameworkConfigSection/FrameworkConfig no es Ada.Framework.Config.Section.AdaFrameworkConfigSection!");
}
if (string.IsNullOrEmpty(grupo))
{
throw new AdaFrameworkConfigurationException("¡El grupo no puede ser nulo o vacio!");
}
if (string.IsNullOrEmpty(nombre))
{
throw new AdaFrameworkConfigurationException("¡El nombre de la propiedad no puede ser nulo o vacio!");
}
bool existeGrupo = false;
foreach (ColeccionPropiedadesConfiguracion xGrupo in config.ConfigProperties)
{
if (xGrupo.Nombre.Equals(grupo, StringComparison.InvariantCultureIgnoreCase))
{
existeGrupo = true;
foreach (PropiedadConfiguracion propiedad in xGrupo)
{
if (propiedad.Nombre.Equals(nombre, StringComparison.InvariantCultureIgnoreCase))
{
return propiedad;
}
}
break;
}
}
if (!existeGrupo)
{
throw new AdaFrameworkConfigurationException(string.Format("¡No está declarado el grupo de propiedades {0}!", grupo));
}
else
{
throw new AdaFrameworkConfigurationException(string.Format("¡No está declarado la propiedad {0} del grupo de propiedades {1}!", nombre, grupo));
}
}
public static object ObtenerValorPropiedad(string grupo, string nombre)
{
return ObtenerPropiedad(grupo, nombre).Valor;
}
public static T ObtenerValorPropiedad<T>(string grupo, string nombre)
{
return (T)ObtenerPropiedad(grupo, nombre).Valor;
}
public static ArchivoConfiguracion ObtenerArchivoConfiguracion(string nombre)
{
object seccion = System.Configuration.ConfigurationManager.GetSection("FrameworkConfigSection/FrameworkConfig");
FrameworkConfigSection config = seccion as FrameworkConfigSection;
if (config == null)
{
throw new AdaFrameworkConfigurationException("¡No está declarada la sección de configuración en el archivo!");
}
if (!(seccion is FrameworkConfigSection))
{
throw new AdaFrameworkConfigurationException("¡El tipo de la sección FrameworkConfigSection/FrameworkConfig no es Ada.Framework.Config.Section.AdaFrameworkConfigSection!");
}
if (string.IsNullOrEmpty(nombre))
{
throw new AdaFrameworkConfigurationException("¡El nombre no puede ser nulo o vacio!");
}
foreach (ArchivoConfiguracion archivoConfiguracion in config.ConfigFiles)
{
if (archivoConfiguracion.Nombre.Equals(nombre, StringComparison.InvariantCultureIgnoreCase))
{
return archivoConfiguracion;
}
}
throw new AdaFrameworkConfigurationException(string.Format("¡No está declarado el archivo de configuración {0}!", nombre));
}
public static string ObtenerRutaArchivoConfiguracion(string nombre)
{
return ObtenerArchivoConfiguracion(nombre).Ruta;
}
}
}
<file_sep>/Source/Section/ColeccionArchivosConfiguracion.cs
using System.Configuration;
namespace Ada.Framework.Configuration.Section
{
public class ColeccionArchivosConfiguracion : ConfigurationElementCollection
{
public ArchivoConfiguracion this[int index]
{
get { return (ArchivoConfiguracion)BaseGet(index); }
set
{
if (BaseGet(index) != null)
{
BaseRemoveAt(index);
}
BaseAdd(index, value);
}
}
public void Add(ArchivoConfiguracion archivoConfiguracion)
{
BaseAdd(archivoConfiguracion);
}
public void Clear()
{
BaseClear();
}
protected override ConfigurationElement CreateNewElement()
{
return new ArchivoConfiguracion();
}
protected override object GetElementKey(ConfigurationElement archivoConfiguracion)
{
return ((ArchivoConfiguracion)archivoConfiguracion).Nombre;
}
public void Remove(ArchivoConfiguracion archivoConfiguracion)
{
BaseRemove(archivoConfiguracion.Nombre);
}
public void RemoveAt(int index)
{
BaseRemoveAt(index);
}
public void Remove(string name)
{
BaseRemove(name);
}
}
}
<file_sep>/Source/Section/GrupoPropiedadesConfiguracion.cs
using System.Configuration;
namespace Ada.Framework.Configuration.Section
{
[ConfigurationCollection(typeof(ColeccionPropiedadesConfiguracion),
AddItemName = "Property",
ClearItemsName = "Clear",
RemoveItemName = "Delete")]
public class GrupoPropiedadesConfiguracion : ConfigurationElementCollection
{
public ColeccionPropiedadesConfiguracion this[int index]
{
get { return (ColeccionPropiedadesConfiguracion)BaseGet(index); }
set
{
if (BaseGet(index) != null)
{
BaseRemoveAt(index);
}
BaseAdd(index, value);
}
}
public void Add(ColeccionPropiedadesConfiguracion coleccionPropiedadesConfiguracion)
{
BaseAdd(coleccionPropiedadesConfiguracion);
}
public void Clear()
{
BaseClear();
}
protected override ConfigurationElement CreateNewElement()
{
return new ColeccionPropiedadesConfiguracion();
}
protected override object GetElementKey(ConfigurationElement coleccionPropiedadesConfiguracion)
{
return ((ColeccionPropiedadesConfiguracion)coleccionPropiedadesConfiguracion);
}
public void Remove(ColeccionPropiedadesConfiguracion coleccionPropiedadesConfiguracion)
{
BaseRemove(coleccionPropiedadesConfiguracion);
}
public void RemoveAt(int index)
{
BaseRemoveAt(index);
}
public void Remove(string name)
{
BaseRemove(name);
}
}
}
| 9d2626b913f430b0745774bccfdf324214cf8daa | [
"C#"
] | 8 | C# | adasoluciones/Configuration | 5fe5260a8c8f31c65baf97b7de64c9dfde3da5dc | a5494110646e40accd0b1c45cfad78e036ca336c |
refs/heads/master | <file_sep># pytorch-Hands-on<file_sep>import torch
import torch.nn as nn
import torchvision
import torchvision.transforms as transforms
# Device configuration
device = 'cpu'
# to get the same results every time
torch.manual_seed(123)
# Hyper-parameters
input_size = 784
hidden_size = 500
num_classes = 10
num_epochs = 5
batch_size = 100
learning_rate = 0.001
# downloading MNIST dataset if not downloaded yet
def download_datset():
train_data = torchvision.datasets.MNIST(root='data',
train=True,
transform=transforms.ToTensor(),
download=True)
test_data = torchvision.datasets.MNIST(root='data',
train=False,
transform=transforms.ToTensor())
return train_data, test_data
# Fully connected neural network with one hidden layer
class FNN(nn.Module):
def __init__(self, input_size, hidden_size, num_classes):
super(FNN, self).__init__()
self.h1 = nn.Linear(input_size, hidden_size)
self.relu = nn.ReLU()
self.h2 = nn.Linear(hidden_size, num_classes)
def forward(self, x):
out = self.h1(x)
out = self.relu(out)
out = self.h2(out)
return out
def training(model, train_loader):
# Loss and optimizer
criterion = nn.CrossEntropyLoss()
optimizer = torch.optim.Adam(model.parameters(), lr=learning_rate)
# Train the model
total_step = len(train_loader)
for epoch in range(num_epochs):
for i, (image, label) in enumerate(train_loader):
# Move tensors to the configured device
image = image.reshape(-1, 28 * 28).to(device)
label = label.to(device)
# Forward pass
outputs = model(image)
loss = criterion(outputs, label)
# Backward and optimize
optimizer.zero_grad()
loss.backward()
optimizer.step()
if (i + 1) % 100 == 0:
print('Epoch [{}/{}], Step [{}/{}], Loss: {:.4f}'
.format(epoch + 1, num_epochs, i + 1, total_step, loss.item()))
def testing(model, test_loader):
# Test the model
# In test phase, we don't need to compute gradients (for memory efficiency)
with torch.no_grad():
correct = 0
total = 0
for image, label in test_loader:
image = image.reshape(-1, 28 * 28).to(device)
label = label.to(device)
outputs = model(image)
_, predicted = torch.max(outputs.data, 1)
total += label.size(0)
correct += (predicted == label).sum().item()
print('Accuracy of the network on the 10000 test images: {} %'.format(100 * correct / total))
# Save the model checkpoint
torch.save(model.state_dict(), 'model.ckpt')
if __name__ == '__main__':
train_data, test_data = download_datset()
# Data loader
train_loader = torch.utils.data.DataLoader(dataset=train_data,
batch_size=batch_size,
shuffle=True)
test_loader = torch.utils.data.DataLoader(dataset=test_data,
batch_size=batch_size,
shuffle=False)
model = FNN(input_size, hidden_size, num_classes).to(device)
training(model, train_loader)
testing(model, test_loader)
| c7d68ec2a92e6e62b9f75564bad8b19f5389ad00 | [
"Markdown",
"Python"
] | 2 | Markdown | TapanBhardwaj/pytorch-Hands-on | 63dd2daec9b7c619d095b6837fa83f0841300a96 | a55e1d8791cbd659a0362e7302f7baf82337e942 |
refs/heads/master | <repo_name>abelbrencsan/boiled-page-cookies-script<file_sep>/cookies.js
/**
* Cookies - v1.1.1
* Copyright 2021 <NAME>
* Released under the MIT License
*/
var Cookies = (function(){
'use strict';
/**
* Create a new cookie with given name, value and expiration. (public)
* @param name string
* @param value string
* @param days number
*/
var create = function(name, value, days) {
var expiration = '';
if (days) {
var date = new Date();
date.setDate(date.getDate() + days);
expiration = '; expires=' + date.toUTCString();
}
document.cookie = name + "=" + value + expiration + '; ' + 'sameSite=Lax; Secure';
}
/**
* Read cookie by given name. (public)
* @param name string
*/
var read = function(name) {
var nameEQ = name + '=';
var ca = document.cookie.split(';');
for(var i = 0; i < ca.length; i++) {
var c = ca[i];
while (c.charAt(0) == ' ') {
c = c.substring(1, c.length);
}
if (c.indexOf(nameEQ) == 0) {
return c.substring(nameEQ.length, c.length);
}
}
return null;
}
/**
* Remove cookie by given name. (public)
* @param name string
*/
var remove = function(name) {
create(name, '', -1);
}
return {
create: create,
read: read,
remove: remove,
};
})();
<file_sep>/README.md
# Boiled Page cookies script
Cookies script for Boiled Page frontend framework. It is intended to create, add or remove cookies.
## Install
Place `cookies.js` to `/assets/js` directory and add its path to `scripts` variable in `gulpfile.js` to be combined with other scripts.
## Methods
### Create cookie
`create(name, value, days)` - Create a new cookie with given name, value and expiration.
Parameter | Type | Required | Description
----------|------|----------|------------
`name` | String | Yes | Name of cookie.
`value` | String | Yes | Value of cookie.
`days` | String | Yes | Number of days after cookie expires.
### Read cookie
`read(name)` - Read cookie by given name.
Parameter | Type | Required | Description
----------|------|----------|------------
`name` | String | Yes | Name of cookie.
### Remove cookie
`remove(name)` - Remove cookie by given name.
Parameter | Type | Required | Description
----------|------|----------|------------
`name` | String | Yes | Name of cookie.
| 71e348cc49f8efcbc6f32dbd402967350136d0fd | [
"JavaScript",
"Markdown"
] | 2 | JavaScript | abelbrencsan/boiled-page-cookies-script | 8de208ec6011f2d011164bbe25645081bcf05fb6 | ce7af97b80a7629ee9614c8e862d548c21bdc9bb |
refs/heads/master | <file_sep>-- phpMyAdmin SQL Dump
-- version 4.4.14
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Oct 11, 2015 at 05:06 AM
-- Server version: 5.6.26
-- PHP Version: 5.6.12
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
--
-- Database: `Quiz_Results`
--
-- --------------------------------------------------------
--
-- Table structure for table `Results`
--
CREATE TABLE IF NOT EXISTS `Results` (
`Age` int(150) NOT NULL,
`Color` varchar(20) NOT NULL,
`Animal` varchar(25) NOT NULL,
`Country` varchar(25) NOT NULL,
`season` varchar(10) NOT NULL,
`genre` varchar(15) NOT NULL,
`tv` varchar(25) NOT NULL,
`siblings` int(10) NOT NULL,
`sense` varchar(10) NOT NULL,
`mac_pc` varchar(5) NOT NULL,
`nickname` varchar(50) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `Results`
--
INSERT INTO `Results` (`Age`, `Color`, `Animal`, `Country`, `season`, `genre`, `tv`, `siblings`, `sense`, `mac_pc`, `nickname`) VALUES
(18, 'Green', 'Bunny', 'USA', 'Fall', 'Fantasy', 'Supernatural', 1, 'Smell', 'Mac', 'Critical Caroline'),
(18, 'Green', 'Bunny', 'USA', 'Fall', 'Fantasy', 'Supernatural', 1, 'Smell', 'Mac', '<NAME>'),
(18, 'Pink', 'Hamster', 'Canada', 'Winter', 'Romance', 'Game of Thrones', 1, 'Hearing', 'PC', 'Coordinated Carter'),
(18, 'Pink', 'Hamster', 'Canada', 'Winter', 'Romance', 'Game of Thrones', 1, 'Hearing', 'PC', 'Comfortable Carter'),
(43, 'Magenta', 'Penguin', 'Great Britain ', 'Winter', 'Erotica', 'True Detective', 4, 'Sight', 'Linux', 'Zesty Zoe'),
(18, 'Red', 'Sloth', 'USA', 'Summer', 'Fantasy', 'Suits', 0, 'Smell', 'PC', 'Well-lit Will'),
(18, 'Black', 'Panda', 'USA', 'Summer', 'Coding', 'None', 0, 'Smell', 'Mac', 'Knowledgeable Katie'),
(17, 'wef', 'ewf', 'wegq', 'gtr', 'wegrtewr', 'wererq', 2, 'effrewg', 'gregw', ''),
(17, 'wef', 'ewf', 'wegq', 'gtr', 'wegrtewr', 'wererq', 2, 'effrewg', 'gregw', ''),
(18, 'White', 'Turtle', 'China', 'Autumn', 'Science Fiction', 'House', 2, 'Smell', 'Mac', ''),
(18, 'White', 'Turtle', 'China', 'Autumn', 'Science Fiction', 'House', 2, 'Smell', 'Mac', 'Jubilant Jennifer'),
(18, 'White', 'Turtle', 'China', 'Autumn', 'Science Fiction', 'House', 2, 'Smell', 'Mac', 'Jubilant Jennifer'),
(18, 'White', 'Turtle', 'China', 'Autumn', 'Science Fiction', 'House', 2, 'Smell', 'Mac', 'Judicious Jennifer'),
(18, 'White', 'Turtle', 'China', 'Autumn', 'Science Fiction', 'House', 2, 'Smell', 'Mac', '<NAME>');
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
| 9c2ab23af2ee3482747d64e92b2734168ca051d1 | [
"SQL"
] | 1 | SQL | leegit12/hackday1 | 1de19b161888d8d20301c00eab326d4fac730820 | c5a674f88e0e7693a6a35fb6887b121860dd21c6 |
refs/heads/master | <file_sep>package main
import (
"net/url"
"regexp"
)
func ValidURL(rawurl string) bool {
u, err := url.Parse(rawurl)
if err != nil {
return false
} else if u.Scheme == "http" || u.Scheme == "https" || u.Scheme == "" {
return true
}
return false
}
func RetrieveBaseURL(scheme string, rawurl string) (*url.URL, error) {
u, err := url.Parse(rawurl)
if err != nil {
return nil, err
}
if u.Scheme == "" {
u.Scheme = scheme
}
if u.Host == "" {
u.Host = u.Path
}
u.Path = "/"
return u, nil
}
func ExpandURL(scheme string, host string, rawurl string) (*url.URL, error) {
u, err := url.Parse(rawurl)
if err != nil {
return nil, err
}
if u.Scheme == "" {
u.Scheme = scheme
}
if u.Host == "" {
re := regexp.MustCompile("^.*://")
u.Host = re.ReplaceAllString(host, "")
}
if u.Path == "" {
u.Path = "/"
}
return u, nil
}
<file_sep>package main
import (
"bytes"
"net/url"
"reflect"
"testing"
)
func TestEmptyHistory(t *testing.T) {
h := NewHistory()
if h.Len() != 0 {
t.Errorf("NewHistory().Len() = %v, want %v", h.Len(), 0)
}
}
func getMockBaseURL() *url.URL {
base, _ := RetrieveBaseURL("http", "acme.com")
return base
}
func getMockURLs() []string {
base := getMockBaseURL()
url1, _ := ExpandURL(base.Scheme, base.Host, "about.html")
url2, _ := ExpandURL(base.Scheme, base.Host, "/")
return []string{url1.String(), url2.String()}
}
func getMockResponses() []*Response {
urls := getMockURLs()
reader := bytes.NewReader([]byte{})
responses := []*Response{}
r1 := &Response{Request: &Request{urls[0], 0}}
r1.ParseHTML(reader)
responses = append(responses, r1)
responses = append(responses, r1)
r2 := &Response{Request: &Request{urls[1], 0}}
r2.ParseHTML(reader)
return append(responses, r2)
}
func TestAddUniqueResponses(t *testing.T) {
responses := getMockResponses()
h := NewHistory()
h.Add(responses[0])
h.Add(responses[2])
if h.Len() != 2 {
t.Errorf("Len() = %v, want %v", h.Len(), 2)
}
}
func TestAddDuplicateResponses(t *testing.T) {
responses := getMockResponses()
h := NewHistory()
h.Add(responses[0])
h.Add(responses[1])
h.Add(responses[2])
if h.Len() != 2 {
t.Errorf("Len() = %v, want %v", h.Len(), 2)
}
}
func TestGetResponse(t *testing.T) {
responses := getMockResponses()
h := NewHistory()
h.Add(responses[0])
actual := h.Get(responses[0].Request.Url)
if !reflect.DeepEqual(actual, responses[0]) {
t.Errorf("Get() = %v, want %v", actual, responses[0])
}
}
func TestHasResponse(t *testing.T) {
responses := getMockResponses()
h := NewHistory()
h.Add(responses[0])
actual := h.Has(responses[0].Request.Url)
expected := true
if actual != expected {
t.Errorf("Has() = %v, want %v", actual, expected)
}
}
<file_sep>package main
import (
"errors"
"net/http"
)
func worker(in <-chan *Request) <-chan *Response {
client := &http.Client{}
work := func(req *Request) *Response {
response := &Response{Request: req}
if !ValidURL(req.Url) {
response.Error = errors.New("invalid request URL")
return response
}
r, err := http.NewRequest("GET", req.Url, nil)
if err != nil {
response.Error = err
return response
}
r.Header.Set("User-Agent", "slyther")
resp, err := client.Do(r)
defer resp.Body.Close()
if err != nil {
response.Error = err
return response
}
response.ParseHTML(resp.Body)
return response
}
out := make(chan *Response)
go func() {
for req := range in {
out <- work(req)
}
close(out)
}()
return out
}
<file_sep>package main
import (
"sync"
)
func NewParallelChannel(src chan *Request, workers int, fn func(<-chan *Request) <-chan *Response) <-chan *Response {
// spawn worker goroutines
outputs := make([]<-chan *Response, 0)
for i := 0; i < workers; i++ {
outputs = append(outputs, fn(src))
}
// Source: http://blog.golang.org/pipelines
merge := func(cs ...<-chan *Response) <-chan *Response {
var wg sync.WaitGroup
out := make(chan *Response)
output := func(c <-chan *Response) {
for r := range c {
out <- r
}
wg.Done()
}
wg.Add(len(cs))
for _, c := range cs {
go output(c)
}
go func() {
wg.Wait()
close(out)
}()
return out
}
// join worker goroutines
return merge(outputs...)
}
<file_sep>slyther 
=======
To install:
go install github.com/jbcrail/slyther
To test:
go test github.com/jbcrail/slyther
To run:
slyther [-depth INT] [-format STRING] url
##### TODO
- output as graphviz
- configure timeout
- guess mimetypes by url; switch to get HEAD of URL?
- save local results w/ timestamps to prevent rude crawling
- obey robots.txt; switch to ignore robots.txt
- handle redirects
- record statistics (memory, time, timeouts, etc)
<file_sep>package main
import (
"reflect"
"sort"
"testing"
)
func TestEmptySet(t *testing.T) {
s := NewSet()
if s.Len() != 0 {
t.Errorf("NewSet().Len() = %v, want %v", s.Len(), 0)
}
}
func TestAddUniqueItems(t *testing.T) {
s := NewSet()
s.Add("foo")
s.Add("bar")
s.Add("baz")
if s.Len() != 3 {
t.Errorf("Len() = %v, want %v", s.Len(), 3)
}
}
func TestAddDuplicateItems(t *testing.T) {
s := NewSet()
s.Add("foo")
s.Add("foo")
s.Add("bar")
s.Add("bar")
s.Add("bar")
s.Add("baz")
if s.Len() != 3 {
t.Errorf("Len() = %v, want %v", s.Len(), 3)
}
}
func TestStrings(t *testing.T) {
s := NewSet()
s.Add("foo")
s.Add("bar")
s.Add("baz")
actual := s.Strings()
expected := []string{"foo", "bar", "baz"}
sort.Strings(actual)
sort.Strings(expected)
if !reflect.DeepEqual(actual, expected) {
t.Errorf("Strings() = %v, want %v", actual, expected)
}
}
<file_sep>package main
import (
"io"
"regexp"
"code.google.com/p/go.net/html"
)
type Response struct {
Request *Request
Links []string
Assets []string
Error error `json:"-"`
}
type UrlType int
const (
LinkUrl = 1 + iota
AssetUrl
UnknownUrl
)
func matchUrlTypeAndValue(t html.Token, attribute string, value UrlType) (UrlType, string) {
for _, attr := range t.Attr {
if attr.Key == attribute {
return value, attr.Val
}
}
return UnknownUrl, ""
}
func getUrlTypeAndValue(t html.Token) (UrlType, string) {
switch t.Data {
case "a":
return matchUrlTypeAndValue(t, "href", LinkUrl)
case "img":
return matchUrlTypeAndValue(t, "src", AssetUrl)
case "script":
return matchUrlTypeAndValue(t, "src", AssetUrl)
case "link":
return matchUrlTypeAndValue(t, "href", AssetUrl)
}
return UnknownUrl, ""
}
func (resp *Response) ParseHTML(r io.Reader) {
base, _ := RetrieveBaseURL(defaultScheme, resp.Request.Url)
re := regexp.MustCompile("^" + base.Scheme + "://" + base.Host)
linkSet, assetSet := NewSet(), NewSet()
tokenizer := html.NewTokenizer(r)
for {
tokenType := tokenizer.Next()
if tokenType == html.ErrorToken {
resp.Links = linkSet.Strings()
resp.Assets = assetSet.Strings()
break
}
token := tokenizer.Token()
if tokenType == html.StartTagToken || tokenType == html.SelfClosingTagToken {
t, rawurl := getUrlTypeAndValue(token)
switch t {
case LinkUrl:
if ValidURL(rawurl) {
if url, err := ExpandURL(base.Scheme, base.Host, rawurl); err == nil {
url.Fragment = ""
if re.MatchString(url.String()) {
linkSet.Add(url.String())
}
}
}
case AssetUrl:
if ValidURL(rawurl) {
if url, err := ExpandURL(base.Scheme, base.Host, rawurl); err == nil {
assetSet.Add(url.String())
}
}
}
}
}
}
type ResponseByRequestUrl []*Response
func (r ResponseByRequestUrl) Len() int { return len(r) }
func (r ResponseByRequestUrl) Swap(i, j int) { r[i], r[j] = r[j], r[i] }
func (r ResponseByRequestUrl) Less(i, j int) bool { return r[i].Request.Url < r[j].Request.Url }
<file_sep>package main
import (
"flag"
"fmt"
"io"
"io/ioutil"
"os"
"runtime"
)
const (
defaultDepth = 5
defaultTimeout = 30
defaultSourceCapacity = 1024
defaultOutputFormat = "text"
defaultScheme = "http"
defaultQuietMode = false
)
var (
concurrency = flag.Int("c", runtime.GOMAXPROCS(0), "number of multiple concurrent requests")
depth = flag.Uint("depth", defaultDepth, "maximum crawl depth")
capacity = flag.Uint("capacity", defaultSourceCapacity, "maximum capacity of source channel")
format = flag.String("format", defaultOutputFormat, "output format for sitemap")
quiet = flag.Bool("quiet", defaultQuietMode, "quiet mode (don't show progress or error messages)")
lw io.Writer = os.Stderr // logging writer
hw io.Writer = os.Stdout // history writer
)
func main() {
flag.Usage = func() {
fmt.Fprintf(os.Stderr, "usage: %v [flags] url\n", os.Args[0])
flag.PrintDefaults()
os.Exit(2)
}
flag.Parse()
args := flag.Args()
if len(args) == 0 {
flag.Usage()
}
runtime.GOMAXPROCS(*concurrency)
if *quiet {
lw = ioutil.Discard
}
client := NewClient(args[0])
client.Depth = *depth
client.Capacity = *capacity
client.Do(client.Base.String())
switch *format {
case "html":
client.History.WriteAsHTML(hw)
case "json":
client.History.WriteAsJSON(hw)
default:
client.History.WriteAsText(hw)
}
fmt.Fprintf(lw, "# errors: %v\n", client.Errors)
}
<file_sep>package main
import (
"testing"
)
func TestValidURL(t *testing.T) {
tests := map[string]bool{
"google.com": true,
"http://google.com/": true,
"https://www.google.com/intl/en/about/": true,
"/images/icons/product/chrome-48.png": true,
"mailto:<EMAIL>": false,
"javascript:void()": false,
}
for in, out := range tests {
if x := ValidURL(in); x != out {
t.Errorf("ValidURL(%v) = %v, want %v", in, x, out)
}
}
}
func TestRetrieveBaseURL(t *testing.T) {
scheme := "http"
tests := map[string]string{
"http://github.com": "http://github.com/",
"https://github.com": "https://github.com/",
"https://github.com/": "https://github.com/",
"http://github.com/about": "http://github.com/",
}
for in, out := range tests {
if url, _ := RetrieveBaseURL(scheme, in); url.String() != out {
t.Errorf("RetrieveBaseURL(%v, %v) = %v, want %v", scheme, in, url.String(), out)
}
}
}
func TestExpandURL(t *testing.T) {
base, _ := RetrieveBaseURL("http", "acme.com")
tests := map[string]string{
"http://github.com": "http://github.com/",
"https://github.com": "https://github.com/",
"https://github.com/": "https://github.com/",
"http://test.com/jobs?page=1": "http://test.com/jobs?page=1",
"//github.com/about": "http://github.com/about",
"/about.html": "http://acme.com/about.html",
"about.html": "http://acme.com/about.html",
}
for in, out := range tests {
if url, _ := ExpandURL(base.Scheme, base.Host, in); url.String() != out {
t.Errorf("ExpandURL(%v, %v, %v) = %v, want %v", base.Scheme, base.Host, in, url.String(), out)
}
}
}
<file_sep>package main
type Request struct {
Url string
Depth uint `json:"-"`
}
<file_sep>package main
import (
"encoding/json"
"io"
"sort"
"text/template"
)
type History struct {
responses map[string]*Response
}
func NewHistory() *History {
return &History{responses: map[string]*Response{}}
}
func (h *History) Add(resp *Response) {
h.responses[resp.Request.Url] = resp
}
func (h *History) Set(url string, resp *Response) {
h.responses[url] = resp
}
func (h *History) Get(url string) *Response {
response, _ := h.responses[url]
return response
}
func (h *History) Has(url string) bool {
_, ok := h.responses[url]
return ok
}
func (h *History) Len() int {
return len(h.responses)
}
func (h *History) Keys() []string {
keys := []string{}
for key := range h.responses {
keys = append(keys, key)
}
return keys
}
func (h *History) Values() []*Response {
responses := []*Response{}
for _, response := range h.responses {
responses = append(responses, response)
}
return responses
}
const txtTemplate = `{{range .}}{{.Request.Url}}
{{range .Links}} [link ] {{.}}
{{end}}{{range .Assets}} [asset] {{.}}
{{end}}{{end}}`
func (h *History) WriteAsText(w io.Writer) error {
responses := h.Values()
sort.Sort(ResponseByRequestUrl(responses))
t := template.Must(template.New("template").Parse(txtTemplate))
return t.Execute(w, responses)
}
const htmlTemplate = `<html>
<head><title>Sitemap</title></head>
<body>
<table>
<tr>
<td>Page</td>
<td>Links</td>
<td>Assets</td>
</tr>
{{range .}}<tr>
<td><a href="{{.Request.Url}}">{{.Request.Url}}</a></td>
<td>
{{range .Links}}<a href="{{.}}">{{.}}</a><br/>
{{end}}
</td>
<td>
{{range .Assets}}<a href="{{.}}">{{.}}</a><br/>
{{end}}
</td>
</tr>{{end}}
</table>
</body>
</html>
`
func (h *History) WriteAsHTML(w io.Writer) error {
responses := h.Values()
sort.Sort(ResponseByRequestUrl(responses))
t := template.Must(template.New("template").Parse(htmlTemplate))
return t.Execute(w, responses)
}
func (h *History) WriteAsJSON(w io.Writer) error {
responses := h.Values()
sort.Sort(ResponseByRequestUrl(responses))
b, err := json.Marshal(responses)
if err != nil {
return err
}
w.Write(b)
return nil
}
<file_sep>package main
import (
"fmt"
"net/url"
"runtime"
)
type Client struct {
Base *url.URL
Depth uint
Timeout uint
Capacity uint
History *History
Errors uint
}
func NewClient(base string) *Client {
url, _ := RetrieveBaseURL(defaultScheme, base)
return &Client{
Base: url,
Depth: defaultDepth,
Timeout: defaultTimeout,
Capacity: defaultSourceCapacity,
History: NewHistory(),
Errors: 0,
}
}
func (c *Client) Do(url string) {
pending := 0
src := make(chan *Request, c.Capacity)
sink := NewParallelChannel(src, runtime.GOMAXPROCS(0), worker)
src <- &Request{Url: url, Depth: 1}
pending++
i := 0
animation := "-\\|/"
for response := range sink {
fmt.Fprintf(lw, "\rcrawling %v... %c", url, animation[i%len(animation)])
i++
pending--
if response.Error != nil {
c.Errors++
continue
}
c.History.Set(response.Request.Url, response)
for _, link := range response.Links {
if response.Request.Depth < c.Depth && !c.History.Has(link) {
c.History.Set(link, nil)
src <- &Request{Url: link, Depth: response.Request.Depth + 1}
pending++
}
}
if pending == 0 {
close(src)
}
}
fmt.Fprintf(lw, "\rcrawling %v... finished\n", url)
}
<file_sep>package main
import (
"crypto/sha1"
"fmt"
"io"
)
type Set struct {
store map[string]interface{}
}
func NewSet() *Set {
return &Set{store: map[string]interface{}{}}
}
func (s *Set) Add(object interface{}) bool {
h := sha1.New()
io.WriteString(h, fmt.Sprintf("%v", object))
hash := fmt.Sprintf("% x", h.Sum(nil))
_, ok := s.store[hash]
s.store[hash] = object
return !ok
}
func (s *Set) Len() int {
return len(s.store)
}
func (s *Set) GetAll() []interface{} {
var objects []interface{}
for _, object := range s.store {
objects = append(objects, object)
}
return objects
}
func (s *Set) Strings() []string {
var strings []string
for _, object := range s.store {
strings = append(strings, object.(string))
}
return strings
}
| 1894277719b465b391c667bb2c77590fd8044ac1 | [
"Markdown",
"Go"
] | 13 | Go | jbcrail/slyther | 7318e7ae635630921f1b69a9094c3af185e6bd46 | b031b424393eb8956aa26456a4c15cfeba7a1b3a |
refs/heads/master | <file_sep>#include <bits/stdc++.h>
#include <pthread.h>
#include <queue>
#include <atomic>
#include <unistd.h>
using namespace std;
class semaphore {
private:
atomic<int> cnt;
mutex mut;
public:
semaphore(int init=1){
cnt=init;
}
void V() {
cnt++;
}
void P()
{
while (1) {
while (cnt <= 0);
mut.lock();
if (cnt <= 0) {
mut.unlock();
continue;
}
cnt--;
mut.unlock();
break;
}
}
};
semaphore Active_Barber(0), Waiting(1), ActiveCustomer(0);
int TotalSeats = 10;
void *Barber(void *b) {
while(1) {
ActiveCustomer.P();
Waiting.P();
cout << "Barber cutting hairs. Empty seats: " << TotalSeats << endl;
sleep(1);
TotalSeats += 1;
Active_Barber.V();
Waiting.V();
}
}
void *Customer(void *b) {
while(1) {
Waiting.P();
if (TotalSeats > 0) {
cout << "Customer entered. Empty seats: " << TotalSeats << endl;
TotalSeats--;
ActiveCustomer.V();
Waiting.V();
Active_Barber.P();
}
else {
cout<<"All seats full in Waiting room"<<endl;
Waiting.V();
}
}
}
int main()
{
int Total_seats=10;
pthread_t idx[Total_seats];
pthread_t barber;
for (int i = 0; i < Total_seats; ++i)
{
/* code */
pthread_create(&idx[i], NULL, Customer, NULL);
}
pthread_create(&barber, NULL, Barber, NULL);
for(int i=0; i<Total_seats; i++){
pthread_join(idx[i], NULL);
}
pthread_join(barber, NULL);
}<file_sep>#include <bits/stdc++.h>
#include <pthread.h>
#include <queue>
#include <atomic>
#include <unistd.h>
using namespace std;
class semaphore {
private:
atomic<int> cnt;
mutex mut;
public:
semaphore(int init=1){
cnt=init;
}
void V() {
cnt++;
}
void P()
{
while (1) {
while (cnt <= 0);
mut.lock();
if (cnt <= 0) {
mut.unlock();
continue;
}
cnt--;
mut.unlock();
break;
}
}
};
semaphore Tobacco_and_paper(0);
semaphore Paper_and_match(0);
semaphore Match_and_Tobacco(0);
semaphore smoke(1);
void *agent(void *lul)
{
while (1) {
srand(time(NULL));
smoke.P();
int r = rand() % 3;
switch( r ) {
case 0: Tobacco_and_paper.V();
break;
case 1: Paper_and_match.V();
break;
case 2: Match_and_Tobacco.V();
break;
}
}
}
void *Match(void *x)
{
while(1) {
Tobacco_and_paper.P();
cout << "Person with matches is smoking!" << endl;
sleep(1);
smoke.V();
}
}
void *Tobacco(void *x)
{
while(1) {
Paper_and_match.P();
cout << "Person with tobacco is smoking!" << endl;
sleep(1);
smoke.V();
}
}
void *Paper(void *x)
{
while(1) {
Match_and_Tobacco.P();
cout << "Person with paper is smoking!" << endl;
sleep(1);
smoke.V();
}
}
int main()
{
pthread_t idx[4];
pthread_create(&idx[0], NULL, Match, NULL);
pthread_create(&idx[1], NULL, Tobacco, NULL);
pthread_create(&idx[2], NULL, Paper, NULL);
pthread_create(&idx[3], NULL, agent, NULL);
for (int i = 0; i < 4; ++i)
{
/* code */
pthread_join(idx[i],NULL);
}
}
<file_sep>#include <bits/stdc++.h>
#include <pthread.h>
#include <queue>
#include <atomic>
#include <unistd.h>
using namespace std;
class semaphore {
private:
atomic<int> cnt;
mutex mut;
public:
semaphore(int init){
cnt=init;
}
void V() {
cnt++;
}
void P()
{
while (1) {
while (cnt <= 0);
mut.lock();
if (cnt <= 0) {
mut.unlock();
continue;
}
cnt--;
mut.unlock();
break;
}
}
};
semaphore empt_cnt(10), fill_cnt(0);
mutex M_BUFFER;
queue<int> buffer_queue;
void *produce(void *id)
{
while (1)
{
empt_cnt.P();
M_BUFFER.lock();
srand(time(NULL));
int addData = rand()%100;
cout << "Produced: " << addData << endl;
usleep(300000);
buffer_queue.push(addData);
sleep(1);
M_BUFFER.unlock();
fill_cnt.V();
}
}
void *consume(void *id)
{
while (1)
{
fill_cnt.P();
M_BUFFER.lock();
cout << "Consumed: " << buffer_queue.front() << " Buffer Size: " << buffer_queue.size() << " " << endl;
usleep(200000);
buffer_queue.pop();
sleep(1);
M_BUFFER.unlock();
empt_cnt.V();
}
}
int32_t main()
{
srand(time(NULL));
int producer_cnt=5;
int consumer_cnt=3;
pthread_t producer[producer_cnt];
pthread_t consumer[consumer_cnt];
for (int i = 0; i < producer_cnt; ++i)
{
/* code */
pthread_create(&producer[i], NULL, produce, NULL);
}
for (int i = 0; i < consumer_cnt; ++i)
{
/* code */
pthread_create(&consumer[i], NULL, consume, NULL);
}
pthread_exit(NULL);
}<file_sep>#include <bits/stdc++.h>
#include <pthread.h>
#include <queue>
#include <atomic>
#include <unistd.h>
using namespace std;
class semaphore {
private:
atomic<int> cnt;
mutex mut;
public:
semaphore(int init=1){
cnt=init;
}
void V() {
cnt++;
}
void P()
{
while (1) {
while (cnt <= 0);
mut.lock();
if (cnt <= 0) {
mut.unlock();
continue;
}
cnt--;
mut.unlock();
break;
}
}
};
mutex MUTEX;
semaphore writer_sem(1);
queue<int> buffer_queue;
int ind = 0;
atomic<int> read_count{0};
void *Write(void *B)
{
while (1)
{
writer_sem.P();
int it = ind++;
printf("Buffer write: %d\n", it);
fflush(stdout);
usleep(35000);
buffer_queue.push(it);
sleep(1);
writer_sem.V();
}
}
int ReadBuffer() {
int it = buffer_queue.front();
printf("Buffer read: %d\n",it);
fflush(stdout);
usleep(20000);
buffer_queue.pop();
return it;
}
void *Read(void *B)
{
while (1)
{
MUTEX.lock();
read_count++;
if (read_count == 1){
writer_sem.P();
}
MUTEX.unlock();
ReadBuffer();
sleep(1);
MUTEX.lock();
read_count--;
if (read_count == 0){
writer_sem.V();
}
MUTEX.unlock();
}
}
int32_t main()
{
srand(time(NULL));
pthread_t Reader;
pthread_t Writer;
pthread_create(&Writer, NULL, Write, NULL);
pthread_create(&Reader, NULL, Read, NULL);
pthread_exit(NULL);
}
<file_sep>#include <bits/stdc++.h>
#include <pthread.h>
#include <queue>
#include <atomic>
#include <unistd.h>
using namespace std;
class semaphore {
private:
atomic<int> cnt;
mutex mut;
public:
semaphore(int init=1){
cnt=init;
}
void V() {
cnt++;
}
void P()
{
while (1) {
while (cnt <= 0);
mut.lock();
if (cnt <= 0) {
mut.unlock();
continue;
}
cnt--;
mut.unlock();
break;
}
}
};
vector<semaphore> PHILOSOPHER_DINE(5);
mutex MUTEX;
int LIST[5] = {0, 1, 2, 3, 4};
void* eat(void* num)
{
int* ind = (int *)num;
while (1) {
srand(time(NULL));
MUTEX.lock();
PHILOSOPHER_DINE[*ind].P();
PHILOSOPHER_DINE[(*ind + 1) % 5].P();
MUTEX.unlock();
cout << "Philosopher " << *ind << " eating." << endl ;
sleep(2);
PHILOSOPHER_DINE[*ind].V();
PHILOSOPHER_DINE[(*ind + 1) % 5].V();
usleep((rand() % 100) * 100);
}
}
int main()
{
pthread_t thread_list[3];
for (int i = 1; i < 6; i++) {
pthread_create(&thread_list[i], NULL, eat, &LIST[i]);
}
for (int i = 1; i < 6; i++) {
pthread_join(thread_list[i], NULL);
}
} | 4a34787ca443ab2b87ad987ad862eafd82f0cf79 | [
"C++"
] | 5 | C++ | hritvi/semaphores | 75c47d1388819e28de12c97d0656062c2b0602af | 9e3d65a7285f31ef9c90b211c67de9991d6b87f2 |
refs/heads/master | <file_sep># ec2-run-instance
Example how to run a new instance and get the IP back.
You need to install awscli to use this, Follow this instructions:
http://docs.aws.amazon.com/cli/latest/userguide/installing.html<file_sep>#!/bin/bash
#I think using like this will be more simple than build with others tools.
#It's immportant to understand in this case i'm using a .pem key, this key is the same i have a lot of server running, so i hope you can understand
#i can't share this, so in this servers bellow you can user a password i will be send into your email.
#number of servers to create
num_servers=1 #$3
#size of server you want to create
server_size=t2.nano #$4
#Execute command to create server (this is using a paid account, to full test need to change you configurations)
echo Executing run instance...
aws ec2 run-instances --image-id ami-116d857a --count $num_servers --instance-type $server_size --key-name rds --subnet-id subnet-bb0c61cc > server.cfg
#We need to wait server be running, somethimes is more than 30 seconds, so wait this time is only for safety
echo Sleeping...... We need server initialize...
sleep 60
#This clean the result of file cfg to get only the instace id to get IP, we need to do that because ip can delay a little bit to return
echo Working on result files...
cat server.cfg | awk '/"InstanceId":/ {print $2}' > instanceidfile.cfg
tr -d '",' < instanceidfile.cfg > instanceid.cfg
rm instanceidfile.cfg
#Now we need to consult server and get the IP Address formating to a know format
echo Cleaning ip address from files...
aws ec2 describe-instances --instance-ids "$(< instanceid.cfg)" > serverdata.cfg
cat serverdata.cfg | awk '/"PublicIpAddress":/ {print $2}' > ipfile.cfg
tr -d '",' < ipfile.cfg > ip.cfg
rm serverdata.cfg instanceid.cfg ipfile.cfg
#This is a example if you want to install or send files in the same script to automate packages installs.
#upload the site file to server
#scp app/hello.py admin@"$(< ip.cfg)":.
#update server, install packs and run the webserver.
#ssh admin@"$(< ip.cfg)" << SCRIPT
# sudo apt-get update
# sudo apt-get install python-virtualenv -y
# virtualenv venv
# . venv/bin/activate
# pip install Flask
# export FLASK_APP=hello.py
# flask run --host=0.0.0.0
#SCRIPT | ce128cb96d7b45bec8c6fda3444edc1cf3285df8 | [
"Markdown",
"Shell"
] | 2 | Markdown | leonardomn/ec2-run-instance | 2497d89eaed470f53d3ca160229c4cc1c789af7d | 4dd49e5587178133184c6f8ef0502b490f15643d |
refs/heads/main | <repo_name>vpartimb/Hello-France-D3.js<file_sep>/js/hello-france.js
let dataset = [];
var margin = {top: 20, right: 20, bottom: 60, left: 70},
width = 800 - margin.left - margin.right,
height = 800 - margin.top - margin.bottom;
// Creates SVG element
let svg = d3.select("#map")
.append("svg")
.attr("width", width + margin.left + margin.right)
.attr("height", height + margin.top + margin.bottom)
.append("g")
.attr("transform",
"translate(" + margin.left + "," + margin.top + ")");;
// Loads data
d3.tsv("data/france.tsv")
.row( (d, i) => {
return {
postalCode: +d["Postal Code"],
inseeCode: +d.inseecode,
place: d.place,
longitude: +d.x,
latitude: +d.y,
population: +d.population,
density: +d.density
};
})
.get( (error, rows) => {
console.log("Loaded " + rows.length + " rows");
if (rows.length > 0) {
console.log("First row: ", rows[0]);
console.log("Last row: ", rows[rows.length-1]);
x = d3.scaleLinear()
.domain(d3.extent(rows, (row) => row.longitude))
.range([0, width]);
y = d3.scaleLinear()
.domain(d3.extent(rows, (row) => row.latitude))
.range([height, 0]);
dataset = rows;
draw('default');
}
});
function draw(mapType) {
// Default Map w/o Coloring
if (mapType == 'default') {
svg.selectAll("circle")
.data(dataset)
.enter()
.append("circle")
.attr("r", 1)
.attr("cx", (d) => x(d.longitude))
.attr("cy", (d) => y(d.latitude))
.style("fill", "#d3d3d3")
.on("mouseover", function(d){
d3.select("#postalCode").text(d.postalCode)
d3.select("#place").text(d.place)
d3.select("#population").text(d.population)
d3.select("#density").text(d.density)
d3.select(this)
.attr("r", 5)
.style("stroke", "black")
.style("fill", "lightblue")
.style("opacity", 1)
})
.on("mouseout", function(d){
d3.select(this)
.attr("r", 1)
.style("fill", "#d3d3d3")
.style("stroke", "#d3d3d3")
});
}
// Density Dot Map
if (mapType == 'density') {
var colorScale = d3.scaleSequential()
.domain([0, 300])
.interpolator(d3.interpolateInferno);
svg.selectAll("circle")
.data(dataset)
.enter()
.append("circle")
.attr("r", 1)
.attr("cx", (d) => x(d.longitude))
.attr("cy", (d) => y(d.latitude))
.style("fill", (d) => colorScale(d.density))
.on("mouseover", function(d){
d3.select("#postalCode").text(d.postalCode)
d3.select("#place").text(d.place)
d3.select("#population").text(d.population)
d3.select("#density").text(d.density)
d3.select(this)
.attr("r", 5)
.style("stroke", "black")
.style("fill", "lightblue")
.style("opacity", 1)
})
.on("mouseout", function(d){
d3.select(this)
.attr("r", 1)
.style("fill", (d) => colorScale(d.density))
});
// Legend
const defs = svg.append("defs");
var xScale = d3.scaleLinear()
.domain([0, 300])
.range([0, width / 2]);
const linearGradient = defs.append("linearGradient")
.attr("id", "linear-gradient");
linearGradient.selectAll("stop")
.data(colorScale.ticks().map((t, i, n) => ({ offset: `${100*i/n.length}%`, color: colorScale(t) })))
.enter()
.append("stop")
.attr("offset", d => d.offset)
.attr("stop-color", d => d.color);
var legend = svg.append("g")
.attr("class", "legend-dens")
.attr("transform", "translate(" + (margin.left) + "," + (height - 2*margin.top) + ")")
.selectAll("g")
.data(d3.range(150), function(d) { return d; })
.enter()
.append("g");
legend.append("rect")
.attr('width', width / 2)
.attr('height', 10)
.attr('fill', "url(#linear-gradient)");
legend.append("text")
.attr("x", 0)
.attr("y", 30)
.text("People per square km");
var ticks = [0, 100, 200, 300];
var tickLabels = ['0', '100', '200', '300+'];
legend.append("g")
.call(d3.axisTop(xScale)
.tickValues(ticks)
.tickFormat((d,i) => tickLabels[i])
.ticks(5));
}
// Population Bubble Map inspired by Mike Bostock (https://bost.ocks.org/mike/bubble-map/)
if (mapType == 'population') {
var radius = d3.scaleSqrt()
.domain([0, d3.max(dataset, d => d.population)])
.range([0, 30]);
svg.selectAll("circle")
.data(dataset)
.enter()
.append("circle")
.attr("r", (d) => radius(d.population))
.attr("cx", (d) => x(d.longitude))
.attr("cy", (d) => y(d.latitude))
.attr("class", "bubble")
.on("mouseover", function(d){
d3.select("#postalCode").text(d.postalCode)
d3.select("#place").text(d.place)
d3.select("#population").text(d.population)
d3.select("#density").text(d.density)
d3.select(this)
.style("fill", "#864242")
.style("fill-opacity", 1)
})
.on("mouseout", function(d){
d3.select(this)
.style("stroke", "#0000")
.style("fill", "#d3d3d3")
.style("fill-opacity", .5)
.style("stroke-width", .5)
});
// Legend
var legend = svg.append("g")
.attr("class", "legend-pop")
.attr("transform", "translate(" + (width - margin.left) + "," + (height - margin.top) + ")")
.selectAll("g")
.data([1e6, 2e6, 3e6])
.enter()
.append("g");
legend.append("circle")
.attr("cy", function(d) { return -radius(d); })
.attr("r", radius);
legend.append("text")
.attr("y", function(d) { return -2 * radius(d); })
.attr("dy", "1.3em")
.text(d3.format(".1s"));
}
// X axis
var xAxis = svg.append("g")
.attr("class", "xAxis")
.attr("transform", "translate(0, " + height + ")")
.call(d3.axisBottom(x));
// X axis label:
svg.append("text")
.attr("text-anchor", "end")
.attr("x", width)
.attr("y", height + margin.top + 25)
.attr("class", "text-legend")
.text("Longitude");
// Y axis
var yAxis = svg.append("g")
.attr("class", "yAxis")
.call(d3.axisLeft(y));
// Y axis label:
svg.append("text")
.attr("text-anchor", "end")
.attr("transform", "rotate(-90)")
.attr("y", -margin.left + 15)
.attr("x", -margin.top)
.attr("class", "text-legend")
.text("Latitude");
}
// Redraws the map when buttons are clicked
function redraw(mapType) {
d3.select("#map")
.selectAll("circle")
.remove();
d3.select("g")
.selectAll("*")
.remove();
draw(mapType);
}<file_sep>/README.md
# Hello France!
## Data Visualization Project in D3.js
### Default View

### Density Dot Map

### Population Bubble Map
 | ca90bc43abde2aab01791356ea23e759b77887fd | [
"JavaScript",
"Markdown"
] | 2 | JavaScript | vpartimb/Hello-France-D3.js | 96cd95164df81bc7a665f5d1a5e28eb67cce0b7e | 51fc2cf7fa9632ab893dc7c084dc82070f6d3c6a |
refs/heads/master | <repo_name>jhonnyfc/androidST_examples<file_sep>/03_testListSubActivity/app/src/main/java/com/example/testlistsubactivity/MainListActivity.java
package com.example.testlistsubactivity;
import android.app.Activity;
import android.app.ListActivity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.AdapterView;
import android.widget.ArrayAdapter;
import android.widget.ListView;
import java.util.ArrayList;
import java.util.List;
public class MainListActivity extends ListActivity {
private static final int SHOW_SUBACTIVITY = 1;
private static final int NUMBER_ACTIVITIES = 5;
ListView list;
public List<String> pointList = new ArrayList<>();
ArrayAdapter<String> todoItemsAdapter;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
initializeList(pointList);
list = this.getListView();
todoItemsAdapter = new ArrayAdapter<String>(this, R.layout.row_layout, R.id.listText, pointList);
setListAdapter(todoItemsAdapter);
list.setOnItemClickListener(new AdapterView.OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
String item = (String) list.getItemAtPosition(position);
Bundle bundle = new Bundle();
bundle.putInt("position", position);
bundle.putString("name", item);
Intent intent = new Intent(getApplicationContext(), DisplayActivity.class);
intent.putExtras(bundle);
startActivityForResult(intent, SHOW_SUBACTIVITY);
}
});
}
public void onActivityResult(int requestCode, int resultCode, Intent data) {
if (resultCode == Activity.RESULT_OK) {
Bundle bundle = data.getExtras();
int position = bundle.getInt("position");
String name = bundle.getString("name");
//String item = (String) list.getItemAtPosition(position);
//item = name;
pointList.set(position,name);
todoItemsAdapter.notifyDataSetChanged();
}
}
public void initializeList(List<String> aPointList) {
for(int i=0; i<NUMBER_ACTIVITIES; i++){
aPointList.add(i,"mismo lugar "+i);
}
}
}
<file_sep>/01_testSubActivity/app/src/main/java/com/example/testsubactivity/MainActivity.java
package com.example.testsubactivity;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.TextView;
public class MainActivity extends Activity {
private static final int SHOW_SUBACTIVITY = 1;
String location= "no_name";
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
public void displayMessage(View view) {
Bundle bundle = new Bundle();
bundle.putString("name", location);
Intent intent = new Intent(getApplicationContext(), DisplayActivity.class);
intent.putExtras(bundle);
startActivityForResult(intent, SHOW_SUBACTIVITY);
}
public void onActivityResult(int requestCode, int resultCode, Intent data) {
if (resultCode == Activity.RESULT_OK) {
Bundle bundle = data.getExtras();
String name= bundle.getString("name");
TextView textView =((TextView) findViewById(R.id.textViewDisplay)); //Obtencion de la vista
textView.setTextSize(40);
textView.setText(name);
}
}
}
<file_sep>/README.md
# androidST_examples
| a0aefbe11499935b7955cee27288a2d38c7431ef | [
"Markdown",
"Java"
] | 3 | Java | jhonnyfc/androidST_examples | 7c2bdb3ab1b295111ff7c85a558f7e317405bae0 | f1c7daa0b224276b94baddb611d6420751a629d0 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.